Skip to content

Commit a6fac08

Browse files
committed
Release 1.0.6
1 parent b55a221 commit a6fac08

4 files changed

Lines changed: 15 additions & 5 deletions

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -125,3 +125,4 @@
125125

126126
**/*.log
127127
**/java-gen
128+
**/.java-version

commons-core/pom.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.atlanmod.commons</groupId>
77
<artifactId>commons</artifactId>
8-
<version>1.0.6-SNAPSHOT</version>
8+
<version>1.0.6</version>
99
</parent>
1010

1111
<artifactId>commons-core</artifactId>
@@ -19,6 +19,7 @@
1919
<caffeine.version>2.8.5</caffeine.version>
2020
<zah.version>0.12</zah.version>
2121
<fst.version>2.57</fst.version>
22+
<!-- WARNING: Fst versions > 3.0.0 are compiled with jdk 14 -->
2223
<slf4j.version>1.7.30</slf4j.version>
2324
</properties>
2425

commons-testing/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.atlanmod.commons</groupId>
77
<artifactId>commons</artifactId>
8-
<version>1.0.6-SNAPSHOT</version>
8+
<version>1.0.6</version>
99
</parent>
1010

1111
<artifactId>commons-testing</artifactId>

pom.xml

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<groupId>org.atlanmod.commons</groupId>
66
<artifactId>commons</artifactId>
7-
<version>1.0.6-SNAPSHOT</version>
7+
<version>1.0.6</version>
88

99
<packaging>pom</packaging>
1010

@@ -224,8 +224,11 @@
224224
<configuration>
225225
<exportScr>true</exportScr>
226226
<instructions>
227+
<!--Bundle-Version>
228+
1.0.6.${maven.build.timestamp}
229+
</Bundle-Version-->
227230
<Bundle-Version>
228-
1.0.4.${maven.build.timestamp}
231+
1.0.6
229232
</Bundle-Version>
230233
<Bundle-ClassPath>.,{maven-dependencies}</Bundle-ClassPath>
231234
<Import-Package />
@@ -421,7 +424,6 @@
421424
</execution>
422425
</executions>
423426
</plugin>
424-
425427
<plugin>
426428
<groupId>org.apache.maven.plugins</groupId>
427429
<artifactId>maven-gpg-plugin</artifactId>
@@ -433,6 +435,12 @@
433435
<goals>
434436
<goal>sign</goal>
435437
</goals>
438+
<configuration>
439+
<gpgArguments>
440+
<arg>--pinentry-mode</arg>
441+
<arg>loopback</arg>
442+
</gpgArguments>
443+
</configuration>
436444
</execution>
437445
</executions>
438446
</plugin>

0 commit comments

Comments
 (0)