-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpom.xml
More file actions
71 lines (65 loc) · 2.64 KB
/
pom.xml
File metadata and controls
71 lines (65 loc) · 2.64 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<?xml version="1.0" encoding="UTF-8"?>
<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">
<modelVersion>4.0.0</modelVersion>
<packaging>pom</packaging>
<modules>
<module>ws-wls-webapp</module>
<module>ws-wls-ear</module>
<module>ws-wls-ear-second</module>
</modules>
<groupId>ru.pa.ws</groupId>
<artifactId>ws-wls-dev</artifactId>
<version>1.0-SNAPSHOT</version>
<properties>
<java.version>11</java.version>
<maven.compiler.source>${java.version}</maven.compiler.source>
<maven.compiler.target>${java.version}</maven.compiler.target>
<app-name>ws-wls</app-name>
<app-group>ru.pa.ws</app-group>
<oracleServerUrl>t3://vmwlsadm-dev:7001</oracleServerUrl>
<webapp-contextRoot>/services/</webapp-contextRoot>
<sonar.projectName>WS-WLS-DEV</sonar.projectName>
</properties>
<distributionManagement>
<repository>
<id>gitea</id>
<url>https://gitea.prs.hms.com.ru/api/packages/Java/maven</url>
</repository>
<snapshotRepository>
<id>gitea</id>
<url>https://gitea.prs.hms.com.ru/api/packages/Java/maven</url>
</snapshotRepository>
</distributionManagement>
<build>
<plugins>
<plugin>
<groupId>com.github.danielflower.mavenplugins</groupId>
<artifactId>multi-module-maven-release-plugin</artifactId>
<version>3.6.1</version>
<configuration>
<skipTests>true</skipTests>
<noChangesAction>ReleaseNone</noChangesAction>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.5.3</version>
<configuration>
<tagNameFormat>v@{project.version}</tagNameFormat>
<autoVersionSubmodules>true</autoVersionSubmodules>
<releaseProfiles>releases,weblogic</releaseProfiles>
<preparationGoals>clean jxr:jxr install</preparationGoals>
<goals>deploy</goals>
</configuration>
<dependencies>
<dependency>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-scm-plugin</artifactId>
<version>1.8.1</version>
</dependency>
</dependencies>
</plugin>
</plugins>
</build>
</project>