-
Notifications
You must be signed in to change notification settings - Fork 15
/
pom.xml
129 lines (123 loc) · 4.46 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
<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>org.genemania</groupId>
<artifactId>parent</artifactId>
<packaging>pom</packaging>
<version>3.6.0</version>
<name>GeneMANIA Parent</name>
<modules>
<module>common</module>
<module>engine</module>
<module>website</module>
<!-- disabled b/c it can be built separately (and outside of jenkins) <module>plugin</module> -->
<!-- same <module>adminweb</module> -->
</modules>
<repositories>
<repository>
<id>genemania_maven_repo</id>
<name>GeneMANIA Maven Project Repository</name>
<url>http://genemania.org/mvn/</url>
</repository>
<repository>
<id>maven2-repository.dev.java.net</id>
<name>Java.net Repository for Maven</name>
<url>http://download.java.net/maven/2/</url>
<layout>default</layout>
</repository>
</repositories>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>11</source>
<target>11</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.4.2</version>
<configuration>
<argLine>-Xmx128m -Djava.awt.headless=true</argLine>
<additionalClasspathElements>
<additionalClasspathElement>src/test/java</additionalClasspathElement>
</additionalClasspathElements>
<skip>true</skip>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>properties-maven-plugin</artifactId>
<version>1.0-alpha-2</version>
<executions>
<execution>
<id>read-external-properties</id>
<phase>initialize</phase>
<goals>
<goal>read-project-properties</goal>
</goals>
<configuration>
<files>
<file>${env.PRIVATE_REPO}/website/${profile}.properties</file>
</files>
<quiet>true</quiet>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<reporting>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
<configuration>
<formats>
<format>html</format>
</formats>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-report-plugin</artifactId>
<version>2.4.2</version>
</plugin>
</plugins>
</reporting>
<profiles>
<profile>
<id>dev</id>
<properties><profile>dev</profile></properties>
</profile>
<profile>
<id>dev-debug</id>
<properties><profile>dev-debug</profile></properties>
</profile>
<profile>
<id>prod</id>
<properties><profile>prod</profile></properties>
</profile>
<profile>
<id>qa1</id>
<properties><profile>qa1</profile></properties>
</profile>
<profile>
<id>qa2</id>
<properties><profile>qa2</profile></properties>
</profile>
<profile>
<id>stage</id>
<properties><profile>stage</profile></properties>
</profile>
<profile>
<id>vm</id>
<properties><profile>vm</profile></properties>
</profile>
</profiles>
</project>