forked from CalculatorApps/WebApp
-
Notifications
You must be signed in to change notification settings - Fork 2
/
pom.xml
131 lines (125 loc) · 4.33 KB
/
pom.xml
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
<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">
<modelVersion>4.0.0</modelVersion>
<groupId>com.devops.webapp</groupId>
<artifactId>WebApp</artifactId>
<packaging>war</packaging>
<version>1.0.0-SNAPSHOT</version>
<!--<version>${BUILD_NUMBER}</version> -->
<name>${project.artifactId}-${project.version}</name>
<properties>
<project.scm.id>github</project.scm.id>
<github.global.server>github</github.global.server>
</properties>
<scm>
<url>https://github.com/DIGITALAPPLICATION/WebApp.git</url>
<connection>scm:git:https://github.com/DIGITALAPPLICATION/WebApp.git</connection>
<developerConnection>scm:git:https://github.com/DIGITALAPPLICATION/WebApp.git</developerConnection>
<tag>HEAD</tag>
</scm>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<finalName>${project.artifactId}-${project.version}</finalName>
<!--<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.5.3</version>
<configuration>
<arguments>-DskipTests</arguments>
</configuration>
<dependencies>
<dependency>
<groupId>org.apache.maven.shared</groupId>
<artifactId>maven-invoker</artifactId>
<version>2.2</version>
</dependency>
<dependency>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-scm-plugin</artifactId>
<version>1.8.1</version>
</dependency>
</dependencies>
</plugin>
<plugin>
Add/update this in tomcat-home/conf/tomcat-users.xml file
<role rolename="manager-gui"/>
<user username="tomcat" password="s3cret" roles="admin,tomcat,manager-gui,manager-script"/>
Run the maven goal tomcat7:deploy to deploy your war package to tomcat server.
<groupId>org.apache.tomcat.maven</groupId>
<artifactId>tomcat7-maven-plugin</artifactId>
<version>2.2</version>
<configuration>
<url>http://localhost:8888/manager/text</url>
<update>true</update>
<path>/${project.artifactId}-${project.version}</path>
<username>tomcat</username>
<password>s3cret</password>
</configuration>
</plugin>
<plugin>
1. Add/update this in tomcat-home/conf/tomcat-users.xml file
<role rolename="manager-gui"/>
<user username="tomcat" password="s3cret" roles="admin,tomcat,manager-gui,manager-script"/>
Run the maven goal tomcat7:deploy to deploy your war package to tomcat server.
2. Add the server details in settings.xml file
<server>
<id>TomcatServer</id>
<username>tomcat</username>
<password>s3cret</password>
</server>
<groupId>org.apache.tomcat.maven</groupId>
<artifactId>tomcat7-maven-plugin</artifactId>
<version>2.2</version>
<configuration>
<url>http://localhost:8888/manager/text</url>
<update>true</update>
<path>/${project.artifactId}-${project.version}</path>
<server>TomcatServer</server>
</configuration>
</plugin>
</plugins>
-->
</build>
<repositories>
<repository>
<id>nexus</id>
<name>libs-release</name>
<url>http://18.218.88.137:8081/nexus/content/artifactory/libs-release</url>
</repository>
</repositories>
<distributionManagement>
<repository>
<id>deployment</id>
<name>Nexus Release Repository</name>
<url>http://${nexusServer}:8081/nexus/content/repositories/releases/</url>
</repository>
<snapshotRepository>
<id>deployment</id>
<name>Nexus Snapshots Repository</name>
<url>http://${nexusServer}:8081/nexus/content/repositories/snapshots/</url>
</snapshotRepository>
</distributionManagement>
<profiles>
<profile>
<id>sonar</id>
<activation>
<activeByDefault>false</activeByDefault>
</activation>
<properties>
<sonar.jdbc.url>jdbc:postgresql://54.234.236.123/sonar</sonar.jdbc.url>
<sonar.jdbc.driver>org.postgresql.Driver</sonar.jdbc.driver>
<sonar.jdbc.username>sonar</sonar.jdbc.username>
<sonar.jdbc.password>sonar</sonar.jdbc.password>
<!-- SERVER ON A REMOTE HOST -->
<sonar.host.url>http://54.234.236.123:9000</sonar.host.url>
</properties>
</profile>
</profiles>
</project>