Skip to content

Commit

Permalink
Use a version number with a regular pattern.
Browse files Browse the repository at this point in the history
  • Loading branch information
wrandelshofer committed Oct 25, 2024
1 parent 562639f commit ec1a73c
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions deployment/deployment.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,17 +15,17 @@ can upload to the nexus repository manager.

```shell
cp ../fastdoubleparser/target/*.jar .
cp ../fastdoubleparser-java23/target/*javadoc.jar fastdoubleparser-2024-10-20_114324cc-javadoc.jar
cp ../fastdoubleparser-java23/target/*javadoc.jar fastdoubleparser-3.0-javadoc.jar
rm -rf META-INF
mkdir META-INF
cp ../LICENSE META-INF
cp ../fastdoubleparser-dev/src/main/resources/ch.randelshofer.fastdoubleparser/META-INF/thirdparty-LICENSE META-INF
cp ../NOTICE META-INF
jar -uf fastdoubleparser-2024-10-20_114324cc-javadoc.jar META-INF/*
jar -uf fastdoubleparser-2024-10-20_114324cc-sources.jar META-INF/*
jar -uf fastdoubleparser-3.0-javadoc.jar META-INF/*
jar -uf fastdoubleparser-3.0-sources.jar META-INF/*
rm *.asc
for f in *.jar; do gpg -ab "$f"; done
for f in *.xml; do gpg -ab "$f"; done
rm *bundle.jar
jar -cf fastdoubleparser-2024-10-20_114324cc-bundle.jar $(ls -1 pom*|xargs) $(ls -1 fastdoubleparser*|xargs)
jar -cf fastdoubleparser-3.0-bundle.jar $(ls -1 pom*|xargs) $(ls -1 fastdoubleparser*|xargs)
```
2 changes: 1 addition & 1 deletion deployment/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>ch.randelshofer</groupId>
<artifactId>fastdoubleparser</artifactId>
<version>2024-10-20_114324cc</version>
<version>3.0</version>
<packaging>jar</packaging>

<name>ch.randelshofer:fastdoubleparser</name>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@
<maven.compiler.target>${javaVersion}</maven.compiler.target>
<!-- FIXME output timestamp does not work with Java 23, because maven-compiler-plugin 3.13.0 tries to disassemble to module-info -->
<!-- project.build.outputTimestamp>${git.commit.time}</project.build.outputTimestamp -->
<revision>2024-10-20_114324cc</revision>
<revision>3.0</revision>
<license.url>
https://github.com/wrandelshofer/FastDoubleParser/blob/9a3ccae38254c9bf84b5e6a218a47675bf80ed9f/LICENSE
</license.url>
Expand Down

0 comments on commit ec1a73c

Please sign in to comment.