|
46 | 46 | <snakeyaml.version>2.0</snakeyaml.version>
|
47 | 47 | <testcontainers.version>1.20.0</testcontainers.version>
|
48 | 48 | <springboot.version>3.4.3</springboot.version>
|
| 49 | + <nexus-staging-maven-plugin.version>1.7.0</nexus-staging-maven-plugin.version> |
49 | 50 | </properties>
|
50 | 51 |
|
51 | 52 | <distributionManagement>
|
|
162 | 163 | <artifactId>maven-resources-plugin</artifactId>
|
163 | 164 | <version>${maven-resources-plugin.version}</version>
|
164 | 165 | </plugin>
|
| 166 | + <plugin> |
| 167 | + <groupId>org.sonatype.plugins</groupId> |
| 168 | + <artifactId>nexus-staging-maven-plugin</artifactId> |
| 169 | + <version>${nexus-staging-maven-plugin.version}</version> |
| 170 | + <extensions>true</extensions> |
| 171 | + <configuration> |
| 172 | + <serverId>ossrh</serverId> |
| 173 | + <nexusUrl>https://oss.sonatype.org/</nexusUrl> |
| 174 | + <autoReleaseAfterClose>true</autoReleaseAfterClose> |
| 175 | + </configuration> |
| 176 | + </plugin> |
165 | 177 | </plugins>
|
166 | 178 | </pluginManagement>
|
167 |
| - |
168 | 179 | <plugins>
|
| 180 | + <plugin> |
| 181 | + <groupId>org.sonatype.plugins</groupId> |
| 182 | + <artifactId>nexus-staging-maven-plugin</artifactId> |
| 183 | + <inherited>false</inherited> |
| 184 | + </plugin> |
169 | 185 | <plugin>
|
170 | 186 | <groupId>org.jacoco</groupId>
|
171 | 187 | <artifactId>jacoco-maven-plugin</artifactId>
|
|
199 | 215 | </execution>
|
200 | 216 | </executions>
|
201 | 217 | </plugin>
|
202 |
| - <plugin> |
203 |
| - <groupId>org.sonatype.plugins</groupId> |
204 |
| - <artifactId>nexus-staging-maven-plugin</artifactId> |
205 |
| - <version>1.6.13</version> |
206 |
| - <extensions>true</extensions> |
207 |
| - <configuration> |
208 |
| - <serverId>ossrh</serverId> |
209 |
| - <nexusUrl>https://oss.sonatype.org/</nexusUrl> |
210 |
| - <autoReleaseAfterClose>true</autoReleaseAfterClose> |
211 |
| - </configuration> |
212 |
| - </plugin> |
213 | 218 | <plugin>
|
214 | 219 | <groupId>org.apache.maven.plugins</groupId>
|
215 | 220 | <artifactId>maven-checkstyle-plugin</artifactId>
|
|
344 | 349 | </modules>
|
345 | 350 |
|
346 | 351 | <profiles>
|
347 |
| - <profile> |
348 |
| - <id>deploy-profile</id> |
349 |
| - <modules> |
350 |
| - <!-- Include only the modules to be deployed --> |
351 |
| - <module>sdk-autogen</module> |
352 |
| - <module>sdk</module> |
353 |
| - <module>sdk-actors</module> |
354 |
| - <module>sdk-springboot</module> |
355 |
| - <module>sdk-workflows</module> |
356 |
| - <module>testcontainers-dapr</module> |
357 |
| - <module>dapr-spring</module> |
358 |
| - </modules> |
359 |
| - </profile> |
360 | 352 | <profile>
|
361 | 353 | <id>integration-tests</id>
|
362 | 354 | <modules>
|
|
0 commit comments