Skip to content

Commit 3889311

Browse files
committed
Update deps and version printing
1 parent 14f3255 commit 3889311

File tree

4 files changed

+9
-8
lines changed

4 files changed

+9
-8
lines changed

capfile/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@
55
<parent>
66
<groupId>com.github.martinpaljak</groupId>
77
<artifactId>ant-javacard-package</artifactId>
8-
<version>25.07.08-SNAPSHOT</version>
8+
<version>25.07.10-SNAPSHOT</version>
99
</parent>
1010
<artifactId>capfile</artifactId>
1111
<name>JavaCard SDK and CAP file library</name>
1212
<properties>
13-
<project.build.outputTimestamp>2025-07-08T05:25:02Z</project.build.outputTimestamp>
13+
<project.build.outputTimestamp>2025-07-10T06:35:56Z</project.build.outputTimestamp>
1414
</properties>
1515
<dependencies>
1616
<dependency>

pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<packaging>pom</packaging>
66
<groupId>com.github.martinpaljak</groupId>
77
<artifactId>ant-javacard-package</artifactId>
8-
<version>25.07.08-SNAPSHOT</version>
8+
<version>25.07.10-SNAPSHOT</version>
99
<description>Easy to use Ant task for building JavaCard applets</description>
1010
<name>ant-javacard package</name>
1111
<url>https://github.com/martinpaljak/ant-javacard</url>
@@ -14,7 +14,7 @@
1414
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
1515
<!-- GH Actions fails sometimes on first try -->
1616
<maven.wagon.http.retryHandler.count>2</maven.wagon.http.retryHandler.count>
17-
<project.build.outputTimestamp>2025-07-08T05:25:02Z</project.build.outputTimestamp>
17+
<project.build.outputTimestamp>2025-07-10T06:35:56Z</project.build.outputTimestamp>
1818
</properties>
1919
<repositories>
2020
<repository>
@@ -55,7 +55,7 @@
5555
<plugin>
5656
<groupId>org.apache.maven.plugins</groupId>
5757
<artifactId>maven-enforcer-plugin</artifactId>
58-
<version>3.5.0</version>
58+
<version>3.6.0</version>
5959
<executions>
6060
<execution>
6161
<id>enforce-maven-version</id>
@@ -141,7 +141,7 @@
141141
<plugin>
142142
<groupId>com.github.spotbugs</groupId>
143143
<artifactId>spotbugs-maven-plugin</artifactId>
144-
<version>4.9.3.1</version>
144+
<version>4.9.3.2</version>
145145
<configuration>
146146
<excludeFilterFile>spotbugs.xml</excludeFilterFile>
147147
</configuration>

task/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>com.github.martinpaljak</groupId>
88
<artifactId>ant-javacard-package</artifactId>
9-
<version>25.07.08-SNAPSHOT</version>
9+
<version>25.07.10-SNAPSHOT</version>
1010
</parent>
1111
<artifactId>ant-javacard</artifactId>
1212
<description>Easy to use Ant task for building JavaCard applets</description>

task/src/main/java/pro/javacard/ant/JavaCard.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,8 @@ public void execute() {
5050
Misc.cleanTemp();
5151
});
5252
Runtime.getRuntime().addShutdownHook(cleanup);
53-
log("ant-javacard " + JavaCard.class.getPackage().getImplementationVersion(), Project.MSG_INFO);
53+
String ver = JavaCard.class.getPackage().getImplementationVersion();
54+
log("ant-javacard " + (ver == null ? "development" : ver), Project.MSG_INFO);
5455
try {
5556
for (JCCap p : packages) {
5657
p.execute();

0 commit comments

Comments
 (0)