Skip to content

Commit

Permalink
Improved build configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
vruusmann committed Jul 16, 2024
1 parent a219696 commit a974991
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 15 deletions.
8 changes: 2 additions & 6 deletions pmml-statsmodels-example/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,6 @@
</license>
</licenses>

<properties>
<project.build.outputTimestamp>2024-04-08T04:17:59Z</project.build.outputTimestamp>
</properties>

<dependencies>
<dependency>
<groupId>org.jpmml</groupId>
Expand All @@ -44,15 +40,15 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>3.1.1</version>
<version>3.1.2</version>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.5.2</version>
<version>3.6.0</version>
<executions>
<execution>
<phase>package</phase>
Expand Down
6 changes: 1 addition & 5 deletions pmml-statsmodels/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,6 @@
</license>
</licenses>

<properties>
<project.build.outputTimestamp>2024-04-08T04:17:59Z</project.build.outputTimestamp>
</properties>

<dependencies>
<dependency>
<groupId>org.jpmml</groupId>
Expand Down Expand Up @@ -54,7 +50,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.3.0</version>
<version>3.4.2</version>
<configuration>
<archive>
<manifestEntries>
Expand Down
28 changes: 24 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -110,18 +110,38 @@
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<version>3.5.0</version>
<executions>
<execution>
<id>enforce-maven</id>
<goals>
<goal>enforce</goal>
</goals>
<configuration>
<rules>
<requireMavenVersion>
<version>3.6.3</version>
</requireMavenVersion>
</rules>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.6.3</version>
<version>3.7.0</version>
<configuration>
<javadocVersion>1.8</javadocVersion>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>3.0.1</version>
<version>3.1.1</version>
<configuration>
<autoVersionSubmodules>true</autoVersionSubmodules>
<localCheckout>true</localCheckout>
Expand All @@ -131,7 +151,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.2.5</version>
<version>3.3.1</version>
<configuration>
<argLine>${jacoco.agent}</argLine>
<systemProperties>
Expand All @@ -146,7 +166,7 @@
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.8.10</version>
<version>0.8.12</version>
<executions>
<execution>
<id>pre-unit-test</id>
Expand Down

0 comments on commit a974991

Please sign in to comment.