Skip to content

Commit

Permalink
Improved build configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
vruusmann committed Jun 30, 2024
1 parent ef67d3d commit d80114c
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 2 deletions.
Binary file modified jpmml_evaluator/resources/jpmml-evaluator-python-1.3-SNAPSHOT.jar
Binary file not shown.
30 changes: 28 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,10 @@
<url>https://github.com/jpmml/jpmml-evaluator-python/issues</url>
</issueManagement>

<properties>
<project.build.outputTimestamp>2024-06-30T16:15:00Z</project.build.outputTimestamp>
</properties>

<dependencies>
<dependency>
<groupId>org.jpmml</groupId>
Expand Down Expand Up @@ -117,7 +121,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-clean-plugin</artifactId>
<version>3.3.1</version>
<version>3.4.0</version>
<configuration>
<filesets>
<fileset>
Expand All @@ -138,7 +142,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>3.6.0</version>
<version>3.7.1</version>
<executions>
<execution>
<goals>
Expand All @@ -153,10 +157,31 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>3.1.2</version>
<configuration>
<skip>true</skip>
</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-resources-plugin</artifactId>
Expand Down Expand Up @@ -185,6 +210,7 @@
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>animal-sniffer-maven-plugin</artifactId>
<version>1.23</version>
<configuration>
<skip>true</skip>
</configuration>
Expand Down

0 comments on commit d80114c

Please sign in to comment.