Skip to content

Commit

Permalink
Restore the 999-SNAPSHOT version
Browse files Browse the repository at this point in the history
  • Loading branch information
andreaTP committed Jan 19, 2024
1 parent 4a84015 commit a9b4fe7
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
- name: Release to Maven Central
run: |
export GPG_TTY=$(tty)
mvn --batch-mode -Prelease deploy
mvn clean install source:jar javadoc:jar deploy --batch-mode -Prelease -DskipTests -X
env:
MAVEN_USERNAME: ${{ secrets.SONATYPE_USERNAME }}
MAVEN_CENTRAL_TOKEN: ${{ secrets.SONATYPE_PASSWORD }}
Expand Down
8 changes: 7 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<groupId>com.dylibso.chicory</groupId>
<artifactId>chicory</artifactId>
<version>0.0.3</version>
<version>999-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Chicory</name>
<description>Native JVM WebAssembly runtime</description>
Expand Down Expand Up @@ -97,6 +97,11 @@
<artifactId>runtime</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.dylibso.chicory</groupId>
<artifactId>wasi</artifactId>
<version>${project.version}</version>
</dependency>

<dependency>
<groupId>org.junit.jupiter</groupId>
Expand Down Expand Up @@ -319,6 +324,7 @@
<failOnError>false</failOnError>
<failOnWarnings>false</failOnWarnings>
<source>${maven.compiler.source}</source>
<additionalOptions>-Xdoclint:none</additionalOptions>
</configuration>
<executions>
<execution>
Expand Down
2 changes: 1 addition & 1 deletion runtime/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.dylibso.chicory</groupId>
<artifactId>chicory</artifactId>
<version>0.0.3</version>
<version>999-SNAPSHOT</version>
</parent>
<artifactId>runtime</artifactId>
<packaging>jar</packaging>
Expand Down
2 changes: 1 addition & 1 deletion test-gen-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.dylibso.chicory</groupId>
<artifactId>chicory</artifactId>
<version>0.0.3</version>
<version>999-SNAPSHOT</version>
</parent>
<artifactId>test-gen-plugin</artifactId>
<packaging>maven-plugin</packaging>
Expand Down
2 changes: 1 addition & 1 deletion wasi/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.dylibso.chicory</groupId>
<artifactId>chicory</artifactId>
<version>0.0.3</version>
<version>999-SNAPSHOT</version>
</parent>
<artifactId>wasi</artifactId>
<packaging>jar</packaging>
Expand Down
2 changes: 1 addition & 1 deletion wasm-support-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.dylibso.chicory</groupId>
<artifactId>chicory</artifactId>
<version>0.0.3</version>
<version>999-SNAPSHOT</version>
</parent>
<artifactId>wasm-support-plugin</artifactId>
<packaging>maven-plugin</packaging>
Expand Down
2 changes: 1 addition & 1 deletion wasm/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.dylibso.chicory</groupId>
<artifactId>chicory</artifactId>
<version>0.0.3</version>
<version>999-SNAPSHOT</version>
</parent>
<artifactId>wasm</artifactId>
<packaging>jar</packaging>
Expand Down

0 comments on commit a9b4fe7

Please sign in to comment.