File tree 2 files changed +38
-3
lines changed
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
30
30
<dependency >
31
31
<groupId >org.extism.sdk</groupId >
32
32
<artifactId >extism</artifactId >
33
- <version >1.0.1 </version >
33
+ <version >1.1.0 </version >
34
34
</dependency >
35
35
```
36
36
@@ -39,7 +39,7 @@ To use the Extism java-sdk with maven you need to add the following dependency t
39
39
To use the Extism java-sdk with maven you need to add the following dependency to your ` build.gradle ` file:
40
40
41
41
```
42
- implementation 'org.extism.sdk:extism:1.0.1 '
42
+ implementation 'org.extism.sdk:extism:1.1.0 '
43
43
```
44
44
45
45
## Getting Started
Original file line number Diff line number Diff line change 5
5
<groupId >org.extism.sdk</groupId >
6
6
<artifactId >extism</artifactId >
7
7
<packaging >jar</packaging >
8
- <version >1.0.1 </version >
8
+ <version >1.1.0 </version >
9
9
<name >extism</name >
10
10
<url >https://github.com/extism/extism</url >
11
11
<description >Java-SDK for Extism to use webassembly from Java</description >
100
100
</execution >
101
101
</executions >
102
102
</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 >
103
117
<plugin >
104
118
<groupId >org.jreleaser</groupId >
105
119
<artifactId >jreleaser-maven-plugin</artifactId >
138
152
</profile >
139
153
</profiles >
140
154
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
+
141
166
<build >
142
167
<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 >
143
178
<plugin >
144
179
<groupId >org.apache.maven.plugins</groupId >
145
180
<artifactId >maven-compiler-plugin</artifactId >
You can’t perform that action at this time.
0 commit comments