File tree Expand file tree Collapse file tree 4 files changed +9
-8
lines changed
src/main/java/pro/javacard/ant Expand file tree Collapse file tree 4 files changed +9
-8
lines changed Original file line number Diff line number Diff line change 5
5
<parent >
6
6
<groupId >com.github.martinpaljak</groupId >
7
7
<artifactId >ant-javacard-package</artifactId >
8
- <version >25.07.08 -SNAPSHOT</version >
8
+ <version >25.07.10 -SNAPSHOT</version >
9
9
</parent >
10
10
<artifactId >capfile</artifactId >
11
11
<name >JavaCard SDK and CAP file library</name >
12
12
<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>
14
14
</properties >
15
15
<dependencies >
16
16
<dependency >
Original file line number Diff line number Diff line change 5
5
<packaging >pom</packaging >
6
6
<groupId >com.github.martinpaljak</groupId >
7
7
<artifactId >ant-javacard-package</artifactId >
8
- <version >25.07.08 -SNAPSHOT</version >
8
+ <version >25.07.10 -SNAPSHOT</version >
9
9
<description >Easy to use Ant task for building JavaCard applets</description >
10
10
<name >ant-javacard package</name >
11
11
<url >https://github.com/martinpaljak/ant-javacard</url >
14
14
<project .reporting.outputEncoding>UTF-8</project .reporting.outputEncoding>
15
15
<!-- GH Actions fails sometimes on first try -->
16
16
<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>
18
18
</properties >
19
19
<repositories >
20
20
<repository >
55
55
<plugin >
56
56
<groupId >org.apache.maven.plugins</groupId >
57
57
<artifactId >maven-enforcer-plugin</artifactId >
58
- <version >3.5 .0</version >
58
+ <version >3.6 .0</version >
59
59
<executions >
60
60
<execution >
61
61
<id >enforce-maven-version</id >
141
141
<plugin >
142
142
<groupId >com.github.spotbugs</groupId >
143
143
<artifactId >spotbugs-maven-plugin</artifactId >
144
- <version >4.9.3.1 </version >
144
+ <version >4.9.3.2 </version >
145
145
<configuration >
146
146
<excludeFilterFile >spotbugs.xml</excludeFilterFile >
147
147
</configuration >
Original file line number Diff line number Diff line change 6
6
<parent >
7
7
<groupId >com.github.martinpaljak</groupId >
8
8
<artifactId >ant-javacard-package</artifactId >
9
- <version >25.07.08 -SNAPSHOT</version >
9
+ <version >25.07.10 -SNAPSHOT</version >
10
10
</parent >
11
11
<artifactId >ant-javacard</artifactId >
12
12
<description >Easy to use Ant task for building JavaCard applets</description >
Original file line number Diff line number Diff line change @@ -50,7 +50,8 @@ public void execute() {
50
50
Misc .cleanTemp ();
51
51
});
52
52
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 );
54
55
try {
55
56
for (JCCap p : packages ) {
56
57
p .execute ();
You can’t perform that action at this time.
0 commit comments