Skip to content

Commit ace6174

Browse files
Merge pull request #2 from JeremyMcCormick/feature/issue-959/implement-github-actions
Correct maven-release-plugin version and additional cleanup
2 parents 53be78b + 8936b5f commit ace6174

File tree

1 file changed

+10
-35
lines changed

1 file changed

+10
-35
lines changed

pom.xml

Lines changed: 10 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -12,27 +12,25 @@
1212
<url>http://www.lcsim.org/sites/hps/</url>
1313

1414
<properties>
15+
<javaVersion>1.8</javaVersion>
16+
<skipSite>false</skipSite>
17+
<skipPlugin>true</skipPlugin>
18+
<skipCheckstyle>true</skipCheckstyle>
19+
<lcsimVersion>4.4.0</lcsimVersion>
20+
<etVersion>14.1</etVersion>
21+
<evioVersion>4.4.6</evioVersion>
22+
<junitVersion>4.13.1</junitVersion>
1523
<project.scm.id>github</project.scm.id>
1624
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1725
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
1826
<dependency.locations.enabled>false</dependency.locations.enabled>
19-
<lcsimVersion>4.4.0</lcsimVersion>
20-
<skipSite>false</skipSite>
21-
<skipPlugin>false</skipPlugin>
22-
<additionalparam>-Xdoclint:none</additionalparam>
2327
<maven.javadoc.failOnError>false</maven.javadoc.failOnError>
24-
<junitVersion>4.13.1</junitVersion>
25-
<etVersion>14.1</etVersion>
26-
<maven-release-plugin.version>2.5.3</maven-release-plugin.version>
27-
<javaVersion>1.8</javaVersion>
28-
<skipCheckstyle>true</skipCheckstyle>
2928
</properties>
3029

3130
<scm>
3231
<url>git@github.com:JeremyMcCormick/hps-java.git</url>
3332
<connection>scm:git:${project.scm.url}</connection>
3433
<developerConnection>scm:git:${project.scm.url}</developerConnection>
35-
<!-- <url>https://github.com/jeffersonlab/hps-java</url> -->
3634
<tag>HEAD</tag>
3735
</scm>
3836

@@ -254,7 +252,7 @@
254252
<dependency>
255253
<groupId>org.jlab.coda</groupId>
256254
<artifactId>jevio</artifactId>
257-
<version>4.4.6</version>
255+
<version>${evioVersion}</version>
258256
</dependency>
259257
<dependency>
260258
<groupId>org.jlab.coda</groupId>
@@ -405,7 +403,7 @@
405403
</plugin>
406404
<plugin>
407405
<artifactId>maven-release-plugin</artifactId>
408-
<version>3.11.0</version>
406+
<version>3.0.0</version>
409407
</plugin>
410408
<plugin>
411409
<artifactId>maven-surefire-plugin</artifactId>
@@ -451,7 +449,6 @@
451449
<version>3.4.2</version>
452450
</plugin>
453451
<plugin>
454-
<groupId>org.apache.maven.plugins</groupId>
455452
<artifactId>maven-jxr-plugin</artifactId>
456453
<version>3.3.0</version>
457454
</plugin>
@@ -792,26 +789,4 @@
792789
<url>http://srs.slac.stanford.edu/hudson/view/HPS/</url>
793790
</ciManagement>
794791

795-
<profiles>
796-
<profile>
797-
<id>default-cache-dir</id>
798-
<activation>
799-
<property>
800-
<name>!org.lcsim.cacheDir</name>
801-
</property>
802-
</activation>
803-
<properties>
804-
<org.lcsim.cacheDir>${user.home}</org.lcsim.cacheDir>
805-
</properties>
806-
</profile>
807-
<profile>
808-
<id>no-plugin</id>
809-
<activation>
810-
<activeByDefault>false</activeByDefault>
811-
</activation>
812-
<properties>
813-
<skipPlugin>true</skipPlugin>
814-
</properties>
815-
</profile>
816-
</profiles>
817792
</project>

0 commit comments

Comments
 (0)