|
1 | 1 | <?xml version="1.0" encoding="UTF-8"?> |
2 | 2 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
3 | 3 |
|
4 | | - <!-- Parent --> |
5 | | - <parent> |
6 | | - <groupId>net.wasdev.maven.parent</groupId> |
7 | | - <artifactId>parent</artifactId> |
8 | | - <version>1.4</version> |
9 | | - <relativePath /> |
10 | | - </parent> |
11 | | - |
12 | 4 | <!-- Model Version --> |
13 | 5 | <modelVersion>4.0.0</modelVersion> |
14 | 6 |
|
|
19 | 11 | <packaging>pom</packaging> |
20 | 12 | <name>Arquillian Container Liberty Jakarta Parent</name> |
21 | 13 | <description>Jakarta Liberty Container integrations for the Arquillian Project</description> |
| 14 | + <url>https://github.com/OpenLiberty/liberty-arquillian</url> |
22 | 15 |
|
23 | 16 | <licenses> |
24 | 17 | <license> |
|
28 | 21 | </license> |
29 | 22 | </licenses> |
30 | 23 |
|
| 24 | + <developers> |
| 25 | + <developer> |
| 26 | + <name>Cheryl King</name> |
| 27 | + <id>developers</id> |
| 28 | + |
| 29 | + <organization>Open Liberty</organization> |
| 30 | + <url>https://github.com/OpenLiberty</url> |
| 31 | + </developer> |
| 32 | + </developers> |
| 33 | + |
31 | 34 | <scm> |
32 | 35 | < connection>scm:git: [email protected]:OpenLiberty/liberty-arquillian.git</ connection> |
33 | 36 | < developerConnection>scm:git: [email protected]:OpenLiberty/liberty-arquillian.git</ developerConnection> |
34 | 37 | < url> [email protected]:OpenLiberty/liberty-arquillian.git</ url> |
35 | 38 | <tag>HEAD</tag> |
36 | 39 | </scm> |
37 | 40 |
|
| 41 | + <distributionManagement> |
| 42 | + <snapshotRepository> |
| 43 | + <id>maven-central-snapshots</id> |
| 44 | + <name>Maven Central Snapshot Repository</name> |
| 45 | + <url>https://central.sonatype.com/repository/maven-snapshots/</url> |
| 46 | + </snapshotRepository> |
| 47 | + <repository> |
| 48 | + <id>maven-central-releases</id> |
| 49 | + <name>Maven Central Release Repository</name> |
| 50 | + <url>https://central.sonatype.com/api/v1/publisher</url> |
| 51 | + </repository> |
| 52 | + </distributionManagement> |
| 53 | + |
38 | 54 | <!-- Properties --> |
39 | 55 | <properties> |
40 | 56 | <!-- Versioning --> |
41 | 57 | <version.arquillian_core>1.9.1.Final</version.arquillian_core> |
42 | 58 | <version.arquillian_jakarta>10.0.0.Final</version.arquillian_jakarta> |
43 | | - <version.surefire.plugin>3.2.5</version.surefire.plugin> |
| 59 | + <version.surefire.plugin>3.5.4</version.surefire.plugin> |
44 | 60 |
|
45 | 61 | <!-- override from parent --> |
46 | 62 | <maven.compiler.release>11</maven.compiler.release> |
47 | 63 | <maven.compiler.target>11</maven.compiler.target> |
48 | 64 | <maven.compiler.source>11</maven.compiler.source> |
| 65 | + <maven.javadoc.failOnError>false</maven.javadoc.failOnError> |
49 | 66 |
|
50 | 67 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
51 | 68 | <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
|
83 | 100 | <module>liberty-support-feature</module> |
84 | 101 | </modules> |
85 | 102 |
|
| 103 | + <build> |
| 104 | + <plugins> |
| 105 | + <plugin> |
| 106 | + <groupId>org.apache.maven.plugins</groupId> |
| 107 | + <artifactId>maven-release-plugin</artifactId> |
| 108 | + <version>3.1.1</version> |
| 109 | + <configuration> |
| 110 | + <autoVersionSubmodules>true</autoVersionSubmodules> |
| 111 | + <useReleaseProfile>false</useReleaseProfile> |
| 112 | + <releaseProfiles>sonatype-oss-release</releaseProfiles> |
| 113 | + <goals>deploy</goals> |
| 114 | + </configuration> |
| 115 | + </plugin> |
| 116 | + </plugins> |
| 117 | + </build> |
| 118 | + |
86 | 119 | <!-- Profiles for WLP vs OL --> |
87 | 120 | <profiles> |
88 | 121 | <profile> |
|
160 | 193 | <runtime>ol</runtime> |
161 | 194 | <runtimeGroupId>io.openliberty</runtimeGroupId> |
162 | 195 | <runtimeArtifactId>openliberty-runtime</runtimeArtifactId> |
163 | | - <libertyVersion>23.0.0.3</libertyVersion> |
| 196 | + <libertyVersion>25.0.0.9</libertyVersion> |
164 | 197 | </properties> |
165 | 198 | </profile> |
| 199 | + <profile> |
| 200 | + <id>sonatype-oss-release</id> |
| 201 | + <build> |
| 202 | + <plugins> |
| 203 | + <plugin> |
| 204 | + <groupId>org.sonatype.central</groupId> |
| 205 | + <artifactId>central-publishing-maven-plugin</artifactId> |
| 206 | + <version>0.8.0</version> |
| 207 | + <extensions>true</extensions> |
| 208 | + <configuration> |
| 209 | + <publishingServerId>maven-central-releases</publishingServerId> |
| 210 | + <deploymentName>${project.artifactId}</deploymentName> |
| 211 | + </configuration> |
| 212 | + </plugin> |
| 213 | + <plugin> |
| 214 | + <groupId>org.apache.maven.plugins</groupId> |
| 215 | + <artifactId>maven-source-plugin</artifactId> |
| 216 | + <version>3.3.1</version> |
| 217 | + <executions> |
| 218 | + <execution> |
| 219 | + <id>attach-sources</id> |
| 220 | + <goals> |
| 221 | + <goal>jar-no-fork</goal> |
| 222 | + </goals> |
| 223 | + </execution> |
| 224 | + </executions> |
| 225 | + </plugin> |
| 226 | + <plugin> |
| 227 | + <groupId>org.apache.maven.plugins</groupId> |
| 228 | + <artifactId>maven-javadoc-plugin</artifactId> |
| 229 | + <version>3.11.2</version> |
| 230 | + <configuration> |
| 231 | + <bottom><![CDATA[Copyright © {currentYear} the original author or authors.]]></bottom> |
| 232 | + <failOnError>false</failOnError> |
| 233 | + </configuration> |
| 234 | + <executions> |
| 235 | + <execution> |
| 236 | + <id>attach-javadocs</id> |
| 237 | + <goals> |
| 238 | + <goal>jar</goal> |
| 239 | + </goals> |
| 240 | + </execution> |
| 241 | + </executions> |
| 242 | + </plugin> |
| 243 | + <plugin> |
| 244 | + <groupId>org.apache.maven.plugins</groupId> |
| 245 | + <artifactId>maven-gpg-plugin</artifactId> |
| 246 | + <version>3.2.8</version> |
| 247 | + <executions> |
| 248 | + <execution> |
| 249 | + <id>sign-artifacts</id> |
| 250 | + <phase>verify</phase> |
| 251 | + <goals> |
| 252 | + <goal>sign</goal> |
| 253 | + </goals> |
| 254 | + </execution> |
| 255 | + </executions> |
| 256 | + </plugin> |
| 257 | + </plugins> |
| 258 | + </build> |
| 259 | + </profile> |
166 | 260 | </profiles> |
167 | 261 |
|
168 | 262 | </project> |
0 commit comments