|
11 | 11 | <packaging>pom</packaging> |
12 | 12 | <name>Extended JaMoPP Parent</name> |
13 | 13 | <description>This package acts as the parent module for all extended JaMoPP modules.</description> |
| 14 | + <url>https://github.com/MDSD-Tools/TheExtendedJavaModelParserAndPrinter</url> |
| 15 | + |
| 16 | + <licenses> |
| 17 | + <license> |
| 18 | + <name>Eclipse Public License - v 1.0</name> |
| 19 | + <url>https://www.eclipse.org/org/documents/epl-v10.html</url> |
| 20 | + </license> |
| 21 | + </licenses> |
| 22 | + |
| 23 | + <developers> |
| 24 | + <developer> |
| 25 | + <name>Martin Armbruster</name> |
| 26 | + <email>martin.armbruster@kit.edu</email> |
| 27 | + <organization>MCSE, KIT</organization> |
| 28 | + <organizationUrl>https://mcse.kastel.kit.edu</organizationUrl> |
| 29 | + </developer> |
| 30 | + </developers> |
| 31 | + |
| 32 | + <scm> |
| 33 | + <connection>scm:git:git://github.com/MDSD-Tools/TheExtendedJavaModelParserAndPrinter.git</connection> |
| 34 | + <developerConnection>scm:git:https://github.com/MDSD-Tools/TheExtendedJavaModelParserAndPrinter.git</developerConnection> |
| 35 | + <url>https://github.com/MDSD-Tools/TheExtendedJavaModelParserAndPrinter/tree/main</url> |
| 36 | + </scm> |
14 | 37 |
|
15 | 38 | <properties> |
16 | 39 | <maven.compiler.source>17</maven.compiler.source> |
|
161 | 184 | </plugin> |
162 | 185 | <plugin> |
163 | 186 | <groupId>org.apache.maven.plugins</groupId> |
164 | | - <artifactId>maven-sources-plugin</artifactId> |
165 | | - <version>3.2.1</version> |
| 187 | + <artifactId>maven-source-plugin</artifactId> |
| 188 | + <version>3.4.0</version> |
166 | 189 | </plugin> |
167 | 190 | <plugin> |
168 | 191 | <groupId>org.apache.maven.plugins</groupId> |
|
199 | 222 | <artifactId>maven-surefire-plugin</artifactId> |
200 | 223 | <version>3.1.0</version> |
201 | 224 | </plugin> |
| 225 | + <plugin> |
| 226 | + <groupId>org.apache.maven.plugins</groupId> |
| 227 | + <artifactId>maven-javadoc-plugin</artifactId> |
| 228 | + <version>3.12.0</version> |
| 229 | + </plugin> |
202 | 230 | </plugins> |
203 | 231 | </pluginManagement> |
| 232 | + <plugins> |
| 233 | + <plugin> |
| 234 | + <groupId>org.apache.maven.plugins</groupId> |
| 235 | + <artifactId>maven-source-plugin</artifactId> |
| 236 | + <executions> |
| 237 | + <execution> |
| 238 | + <goals> |
| 239 | + <goal>jar</goal> |
| 240 | + </goals> |
| 241 | + </execution> |
| 242 | + </executions> |
| 243 | + </plugin> |
| 244 | + </plugins> |
204 | 245 | </build> |
205 | 246 |
|
206 | 247 | <profiles> |
| 248 | + <profile> |
| 249 | + <id>build-deploy</id> |
| 250 | + <build> |
| 251 | + <plugins> |
| 252 | + <plugin> |
| 253 | + <groupId>org.apache.maven.plugins</groupId> |
| 254 | + <artifactId>maven-javadoc-plugin</artifactId> |
| 255 | + <executions> |
| 256 | + <execution> |
| 257 | + <goals> |
| 258 | + <goal>jar</goal> |
| 259 | + </goals> |
| 260 | + </execution> |
| 261 | + </executions> |
| 262 | + <configuration> |
| 263 | + <tags> |
| 264 | + <tag> |
| 265 | + <name>model</name> |
| 266 | + <placement>a</placement> |
| 267 | + <head>Model</head> |
| 268 | + </tag> |
| 269 | + <tag> |
| 270 | + <name>generated</name> |
| 271 | + <placement>a</placement> |
| 272 | + <head>Generated</head> |
| 273 | + </tag> |
| 274 | + <tag> |
| 275 | + <name>ordered</name> |
| 276 | + <placement>a</placement> |
| 277 | + <head>Ordered</head> |
| 278 | + </tag> |
| 279 | + </tags> |
| 280 | + <doclint>all,-missing</doclint> |
| 281 | + </configuration> |
| 282 | + </plugin> |
| 283 | + </plugins> |
| 284 | + </build> |
| 285 | + </profile> |
207 | 286 | <profile> |
208 | 287 | <id>deploy-mvn-central</id> |
209 | | - <distributionManagement> |
210 | | - <snapshotRepository> |
211 | | - <id>ossrh</id> |
212 | | - <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
213 | | - </snapshotRepository> |
214 | | - <repository> |
215 | | - <id>ossrh</id> |
216 | | - <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
217 | | - </repository> |
218 | | - </distributionManagement> |
219 | 288 | <build> |
220 | 289 | <plugins> |
221 | 290 | <plugin> |
222 | 291 | <groupId>org.apache.maven.plugins</groupId> |
223 | 292 | <artifactId>maven-gpg-plugin</artifactId> |
224 | | - <version>1.6</version> |
| 293 | + <version>3.2.7</version> |
225 | 294 | <executions> |
226 | 295 | <execution> |
227 | 296 | <id>sign-artifacts</id> |
|
238 | 307 | </gpgArguments> |
239 | 308 | </configuration> |
240 | 309 | </plugin> |
| 310 | + <plugin> |
| 311 | + <groupId>org.sonatype.central</groupId> |
| 312 | + <artifactId>central-publishing-maven-plugin</artifactId> |
| 313 | + <version>0.9.0</version> |
| 314 | + <extensions>true</extensions> |
| 315 | + <configuration> |
| 316 | + <publishingServerId>central</publishingServerId> |
| 317 | + <autoPublish>true</autoPublish> |
| 318 | + <waitUntil>published</waitUntil> |
| 319 | + </configuration> |
| 320 | + </plugin> |
241 | 321 | </plugins> |
242 | 322 | </build> |
243 | 323 | </profile> |
|
0 commit comments