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 21, 2024
1 parent 8732270 commit c56e1ec
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 5 deletions.
Binary file modified inst/java/guava-33.2.1-jre-minified.jar
Binary file not shown.
Binary file modified inst/java/r2pmml-1.0-SNAPSHOT.jar
Binary file not shown.
32 changes: 27 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@

<properties>
<jpmml-r.version>1.5.6</jpmml-r.version>
<project.build.outputTimestamp>2024-07-21T10:40:00Z</project.build.outputTimestamp>
</properties>

<dependencies>
Expand Down Expand Up @@ -85,6 +86,26 @@

<build>
<plugins>
<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-antrun-plugin</artifactId>
Expand All @@ -104,6 +125,7 @@
/>
<jar
destfile="${project.basedir}/inst/java/guava-${guava.version}-minified.jar"
modificationtime="2024-01-02T00:00:00Z"
>
<zipfileset
src="${project.basedir}/inst/java/guava-${guava.version}.jar"
Expand All @@ -129,7 +151,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-clean-plugin</artifactId>
<version>3.2.0</version>
<version>3.4.0</version>
<configuration>
<filesets>
<fileset>
Expand All @@ -150,7 +172,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.11.0</version>
<version>3.13.0</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
Expand All @@ -159,7 +181,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>3.5.0</version>
<version>3.7.1</version>
<executions>
<execution>
<id>copy-library-sources</id>
Expand Down Expand Up @@ -187,7 +209,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 Expand Up @@ -225,7 +247,7 @@
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>properties-maven-plugin</artifactId>
<version>1.1.0</version>
<version>1.2.1</version>
<executions>
<execution>
<phase>initialize</phase>
Expand Down

0 comments on commit c56e1ec

Please sign in to comment.