|
1 | 1 | <?xml version="1.0" encoding="UTF-8"?> |
2 | 2 | <!-- |
3 | | - Copyright (c) 2017, 2020, Oracle Corporation and/or its affiliates. All rights reserved. |
| 3 | + Copyright (c) 2017, 2021, Oracle and/or its affiliates. |
4 | 4 | Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl. |
5 | 5 | --> |
6 | 6 | <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/xsd/maven-4.0.0.xsd"> |
|
49 | 49 | <sonar.exclusions>.flattened-pom.xml,target/**</sonar.exclusions> |
50 | 50 | <sonar.test.exclusions>src/test/**</sonar.test.exclusions> |
51 | 51 | <unit-test-wlst-dir>${env.WLST_DIR}</unit-test-wlst-dir> |
| 52 | + <skip-system-test-execution>false</skip-system-test-execution> |
52 | 53 | </properties> |
53 | 54 |
|
54 | 55 | <dependencyManagement> |
|
107 | 108 | </archive> |
108 | 109 | </configuration> |
109 | 110 | </plugin> |
| 111 | + <plugin> |
| 112 | + <groupId>org.apache.maven.plugins</groupId> |
| 113 | + <artifactId>maven-release-plugin</artifactId> |
| 114 | + <version>3.0.0-M1</version> |
| 115 | + </plugin> |
110 | 116 | <plugin> |
111 | 117 | <groupId>org.apache.maven.plugins</groupId> |
112 | 118 | <artifactId>maven-surefire-plugin</artifactId> |
|
259 | 265 | <plugin> |
260 | 266 | <groupId>org.apache.maven.plugins</groupId> |
261 | 267 | <artifactId>maven-release-plugin</artifactId> |
262 | | - <version>2.5.3</version> |
263 | 268 | <configuration> |
264 | | - <useReleaseProfile>false</useReleaseProfile> |
265 | | - <tagNameFormat>weblogic-deploy-tooling-@{project.version}</tagNameFormat> |
| 269 | + <tagNameFormat>release-@{project.version}</tagNameFormat> |
| 270 | + <!-- Tell release:perform to stop before trying to push to a remote repository --> |
| 271 | + <goals>install</goals> |
266 | 272 | </configuration> |
267 | 273 | </plugin> |
268 | 274 | </plugins> |
|
290 | 296 | <module>system-test</module> |
291 | 297 | </modules> |
292 | 298 | </profile> |
| 299 | + <profile> |
| 300 | + <id>release</id> |
| 301 | + <properties> |
| 302 | + <skip-system-test-execution>true</skip-system-test-execution> |
| 303 | + </properties> |
| 304 | + <activation> |
| 305 | + <activeByDefault>false</activeByDefault> |
| 306 | + </activation> |
| 307 | + <modules> |
| 308 | + <module>core</module> |
| 309 | + <module>installer</module> |
| 310 | + <module>system-test</module> |
| 311 | + </modules> |
| 312 | + </profile> |
293 | 313 | </profiles> |
294 | 314 | </project> |
0 commit comments