Skip to content

Commit

Permalink
Update version, dependencies and changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
martinpaljak committed May 6, 2019
1 parent 263de70 commit 526a0ab
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 8 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,8 @@
## 2019-05-06 Martin Paljak <martin@martinpaljak.net>

- resolve all paths from project basedir so that ant -f would work as
expected

## 2019-03-04 Martin Paljak <martin@martinpaljak.net>

- add %g (GlobalPlatform version) to name template
Expand Down
37 changes: 29 additions & 8 deletions pom.xml
Expand Up @@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.github.martinpaljak</groupId>
<artifactId>ant-javacard</artifactId>
<version>19.03.04</version>
<version>19.05.06</version>
<packaging>jar</packaging>
<description>Easy to use Ant task for building JavaCard applets</description>
<name>ant-javacard</name>
Expand Down Expand Up @@ -68,7 +68,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.4</version>
<version>3.0.1</version>
<executions>
<execution>
<id>attach-sources</id>
Expand All @@ -81,7 +81,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.10.4</version>
<version>3.1.0</version>
<executions>
<execution>
<id>attach-javadocs</id>
Expand All @@ -97,11 +97,32 @@
</profiles>
<build>
<plugins>
<!-- Minimum Maven version -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<version>3.0.0-M2</version>
<executions>
<execution>
<id>enforce-maven</id>
<goals>
<goal>enforce</goal>
</goals>
<configuration>
<rules>
<requireMavenVersion>
<version>3.5</version>
</requireMavenVersion>
</rules>
</configuration>
</execution>
</executions>
</plugin>
<!-- Compile -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.7.0</version>
<version>3.8.0</version>
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
Expand All @@ -111,7 +132,7 @@
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>findbugs-maven-plugin</artifactId>
<version>3.0.1</version>
<version>3.0.5</version>
<executions>
<execution>
<phase>verify</phase>
Expand All @@ -125,7 +146,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.0.0</version>
<version>3.2.1</version>
<executions>
<execution>
<phase>package</phase>
Expand Down Expand Up @@ -156,7 +177,7 @@
<plugin>
<groupId>pl.project13.maven</groupId>
<artifactId>git-commit-id-plugin</artifactId>
<version>2.2.5</version>
<version>3.0.0</version>
<executions>
<execution>
<id>retrieve-git-info</id>
Expand Down Expand Up @@ -191,7 +212,7 @@
<plugin>
<groupId>io.github.zlika</groupId>
<artifactId>reproducible-build-maven-plugin</artifactId>
<version>0.7</version>
<version>0.9</version>
<executions>
<execution>
<id>strip-jar</id>
Expand Down

0 comments on commit 526a0ab

Please sign in to comment.