|
5 | 5 | <groupId>org.extism.sdk</groupId> |
6 | 6 | <artifactId>extism</artifactId> |
7 | 7 | <packaging>jar</packaging> |
8 | | - <version>1.1.0</version> |
| 8 | + <version>999-SNAPSHOT</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> |
|
43 | 43 |
|
44 | 44 | <issueManagement> |
45 | 45 | <system>Github</system> |
46 | | - <url>https://github.com/extism/extism/issues</url> |
| 46 | + <url>https://github.com/extism/java-sdk/issues</url> |
47 | 47 | </issueManagement> |
48 | 48 |
|
| 49 | + <distributionManagement> |
| 50 | + <repository> |
| 51 | + <id>ossrh</id> |
| 52 | + <name>Central Repository OSSRH</name> |
| 53 | + <url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
| 54 | + </repository> |
| 55 | + </distributionManagement> |
| 56 | + |
49 | 57 | <properties> |
50 | 58 | <java.version>11</java.version> |
51 | 59 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
|
62 | 70 | <maven-compiler-plugin.version>3.10.1</maven-compiler-plugin.version> |
63 | 71 | <maven-surefire-plugin.version>2.22.2</maven-surefire-plugin.version> |
64 | 72 |
|
65 | | - <!-- jreleaser --> |
66 | | - <jreleaser.git.root.search>true</jreleaser.git.root.search> |
67 | 73 | </properties> |
68 | 74 |
|
69 | 75 | <profiles> |
70 | 76 | <profile> |
71 | 77 | <id>release</id> |
| 78 | + <distributionManagement> |
| 79 | + <snapshotRepository> |
| 80 | + <id>ossrh</id> |
| 81 | + <url>https://s01.oss.sonatype.org/content/repositories/snapshots</url> |
| 82 | + </snapshotRepository> |
| 83 | + </distributionManagement> |
| 84 | + |
72 | 85 | <build> |
73 | 86 | <plugins> |
74 | 87 | <plugin> |
|
115 | 128 | </executions> |
116 | 129 | </plugin> |
117 | 130 | <plugin> |
118 | | - <groupId>org.jreleaser</groupId> |
119 | | - <artifactId>jreleaser-maven-plugin</artifactId> |
120 | | - <version>1.3.1</version> |
| 131 | + <groupId>org.sonatype.plugins</groupId> |
| 132 | + <artifactId>nexus-staging-maven-plugin</artifactId> |
| 133 | + <extensions>true</extensions> |
121 | 134 | <configuration> |
122 | | - <jreleaser> |
123 | | - <release> |
124 | | - <github> |
125 | | - <skipRelease>true</skipRelease> |
126 | | - </github> |
127 | | - </release> |
128 | | - <signing> |
129 | | - <active>ALWAYS</active> |
130 | | - <armored>true</armored> |
131 | | - </signing> |
132 | | - <deploy> |
133 | | - <maven> |
134 | | - <nexus2> |
135 | | - <maven-central> |
136 | | - <active>ALWAYS</active> |
137 | | - <url>https://s01.oss.sonatype.org/service/local</url> |
138 | | - <!-- |
139 | | - <closeRepository>false</closeRepository> |
140 | | - <releaseRepository>false</releaseRepository> |
141 | | - --> |
142 | | - <stagingRepositories>target/staging-deploy</stagingRepositories> |
143 | | - </maven-central> |
144 | | - </nexus2> |
145 | | - </maven> |
146 | | - </deploy> |
147 | | - </jreleaser> |
| 135 | + <serverId>ossrh</serverId> |
| 136 | + <nexusUrl>https://s01.oss.sonatype.org/</nexusUrl> |
| 137 | + <autoReleaseAfterClose>true</autoReleaseAfterClose> |
148 | 138 | </configuration> |
149 | 139 | </plugin> |
150 | 140 | </plugins> |
151 | 141 | </build> |
152 | 142 | </profile> |
153 | 143 | </profiles> |
154 | 144 |
|
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 | | - |
166 | 145 | <build> |
167 | 146 | <plugins> |
168 | 147 | <plugin> |
|
0 commit comments