File tree Expand file tree Collapse file tree 2 files changed +38
-3
lines changed Expand file tree Collapse file tree 2 files changed +38
-3
lines changed Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ To use the Extism java-sdk with maven you need to add the following dependency t
3030<dependency >
3131 <groupId >org.extism.sdk</groupId >
3232 <artifactId >extism</artifactId >
33- <version >1.0.1 </version >
33+ <version >1.1.0 </version >
3434</dependency >
3535```
3636
@@ -39,7 +39,7 @@ To use the Extism java-sdk with maven you need to add the following dependency t
3939To use the Extism java-sdk with maven you need to add the following dependency to your ` build.gradle ` file:
4040
4141```
42- implementation 'org.extism.sdk:extism:1.0.1 '
42+ implementation 'org.extism.sdk:extism:1.1.0 '
4343```
4444
4545## Getting Started
Original file line number Diff line number Diff line change 55 <groupId >org.extism.sdk</groupId >
66 <artifactId >extism</artifactId >
77 <packaging >jar</packaging >
8- <version >1.0.1 </version >
8+ <version >1.1.0 </version >
99 <name >extism</name >
1010 <url >https://github.com/extism/extism</url >
1111 <description >Java-SDK for Extism to use webassembly from Java</description >
100100 </execution >
101101 </executions >
102102 </plugin >
103+ <plugin >
104+ <groupId >org.apache.maven.plugins</groupId >
105+ <artifactId >maven-gpg-plugin</artifactId >
106+ <version >3.2.7</version >
107+ <executions >
108+ <execution >
109+ <id >sign-artifacts</id >
110+ <phase >verify</phase >
111+ <goals >
112+ <goal >sign</goal >
113+ </goals >
114+ </execution >
115+ </executions >
116+ </plugin >
103117 <plugin >
104118 <groupId >org.jreleaser</groupId >
105119 <artifactId >jreleaser-maven-plugin</artifactId >
138152 </profile >
139153 </profiles >
140154
155+ <distributionManagement >
156+ <snapshotRepository >
157+ <id >ossrh</id >
158+ <url >https://s01.oss.sonatype.org/content/repositories/snapshots</url >
159+ </snapshotRepository >
160+ <repository >
161+ <id >ossrh</id >
162+ <url >https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url >
163+ </repository >
164+ </distributionManagement >
165+
141166 <build >
142167 <plugins >
168+ <plugin >
169+ <groupId >org.sonatype.plugins</groupId >
170+ <artifactId >nexus-staging-maven-plugin</artifactId >
171+ <version >1.7.0</version >
172+ <extensions >true</extensions >
173+ <configuration >
174+ <serverId >ossrh</serverId >
175+ <nexusUrl >https://s01.oss.sonatype.org/</nexusUrl >
176+ </configuration >
177+ </plugin >
143178 <plugin >
144179 <groupId >org.apache.maven.plugins</groupId >
145180 <artifactId >maven-compiler-plugin</artifactId >
You can’t perform that action at this time.
0 commit comments