|
17 | 17 |
|
18 | 18 | <groupId>de.funfried.netbeans.plugins</groupId> |
19 | 19 | <artifactId>externalcodeformatter</artifactId> |
20 | | - <version>1.15.6</version> |
| 20 | + <version>1.15.7-SNAPSHOT</version> |
21 | 21 | <packaging>nbm</packaging> |
22 | 22 |
|
23 | 23 | <developers> |
|
118 | 118 | <project.build.resourceEncoding>UTF-8</project.build.resourceEncoding> |
119 | 119 | <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
120 | 120 | <keystore.file>${project.build.directory}/keystore</keystore.file> |
121 | | - <google-java-format.version>1.30.0</google-java-format.version> |
| 121 | + <google-java-format.version>1.31.0</google-java-format.version> |
122 | 122 | <palantir-java-format.version>2.81.0</palantir-java-format.version> |
123 | 123 | <xml-formatter.version>0.4.0</xml-formatter.version> |
124 | 124 | <commons-lang.version>3.19.0</commons-lang.version> |
|
168 | 168 | <dependency> |
169 | 169 | <groupId>de.funfried.libraries</groupId> |
170 | 170 | <artifactId>jsdt-core</artifactId> |
171 | | - <version>1.0.11</version> |
| 171 | + <version>1.0.12</version> |
172 | 172 | <exclusions> |
173 | 173 | <exclusion> |
174 | 174 | <groupId>com.google.guava</groupId> |
|
607 | 607 | <version>3.1.0</version> |
608 | 608 | </plugin> |
609 | 609 | <plugin> |
610 | | - <groupId>org.sonatype.plugins</groupId> |
611 | | - <artifactId>nexus-staging-maven-plugin</artifactId> |
612 | | - <version>1.7.0</version> |
| 610 | + <groupId>org.codehaus.mojo</groupId> |
| 611 | + <artifactId>build-helper-maven-plugin</artifactId> |
| 612 | + <version>3.6.1</version> |
| 613 | + </plugin> |
| 614 | + <plugin> |
| 615 | + <groupId>org.sonatype.central</groupId> |
| 616 | + <artifactId>central-publishing-maven-plugin</artifactId> |
| 617 | + <extensions>true</extensions> |
| 618 | + <version>0.9.0</version> |
613 | 619 | <configuration> |
614 | | - <serverId>sonatype-nexus-staging</serverId> |
615 | | - <nexusUrl>https://oss.sonatype.org/</nexusUrl> |
616 | | - <autoReleaseAfterClose>true</autoReleaseAfterClose> |
| 620 | + <publishingServerId>central</publishingServerId> |
| 621 | + <waitUntil>published</waitUntil> |
| 622 | + <autoPublish>true</autoPublish> |
| 623 | + <tokenAuth>true</tokenAuth> |
617 | 624 | </configuration> |
618 | 625 | </plugin> |
619 | 626 | <plugin> |
|
1170 | 1177 | <build> |
1171 | 1178 | <plugins> |
1172 | 1179 | <plugin> |
1173 | | - <groupId>org.sonatype.plugins</groupId> |
1174 | | - <artifactId>nexus-staging-maven-plugin</artifactId> |
1175 | | - <extensions>true</extensions> |
| 1180 | + <groupId>org.codehaus.mojo</groupId> |
| 1181 | + <artifactId>build-helper-maven-plugin</artifactId> |
| 1182 | + <executions> |
| 1183 | + <execution> |
| 1184 | + <id>regex-snapshot-property</id> |
| 1185 | + <phase>validate</phase> |
| 1186 | + <goals> |
| 1187 | + <goal>regex-property</goal> |
| 1188 | + </goals> |
| 1189 | + <configuration> |
| 1190 | + <name>project.version.isSnapshot</name> |
| 1191 | + <value>${project.version}</value> |
| 1192 | + <regex>.*(-SNAPSHOT)$</regex> |
| 1193 | + <replacement>true</replacement> |
| 1194 | + <failIfNoMatch>false</failIfNoMatch> |
| 1195 | + </configuration> |
| 1196 | + </execution> |
| 1197 | + </executions> |
| 1198 | + </plugin> |
| 1199 | + <plugin> |
| 1200 | + <groupId>org.sonatype.central</groupId> |
| 1201 | + <artifactId>central-publishing-maven-plugin</artifactId> |
| 1202 | + <configuration> |
| 1203 | + <skipPublishing>${project.version.isSnapshot}</skipPublishing> |
| 1204 | + </configuration> |
1176 | 1205 | </plugin> |
1177 | 1206 | <plugin> |
1178 | 1207 | <groupId>org.apache.maven.plugins</groupId> |
|
0 commit comments