-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpom.xml
192 lines (181 loc) · 5.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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
<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.savara</groupId>
<artifactId>parent</artifactId>
<version>2.3.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Savara</name>
<url>http://www.savara.org</url>
<description>
The SAVARA project
</description>
<scm>
<connection>https://github.com/savara</connection>
<url>https://github.com/savara</url>
</scm>
<licenses>
<license>
<name>GNU Lesser General Public License</name>
<url>http://www.gnu.org/licenses/lgpl.html</url>
<distribution>repo</distribution>
<comments>GNU Lesser General Public License</comments>
</license>
</licenses>
<developers>
<developer>
<name>Jeff Yu</name>
<id>jeff.yuchang</id>
<email>[email protected]</email>
<organization>Red Hat</organization>
<roles>
<role>Developer</role>
</roles>
<timezone>+8</timezone>
</developer>
<developer>
<name>Gary Brown</name>
<id>objectiser</id>
<email>[email protected]</email>
<organization>Red Hat</organization>
<roles>
<role>Developer</role>
</roles>
<timezone>+1</timezone>
</developer>
</developers>
<properties>
<savara.core.version>2.3.0-SNAPSHOT</savara.core.version>
<scribble.version>2.1.0.20121108-M3</scribble.version>
<pi4soa.version>3.1.1-SNAPSHOT</pi4soa.version> <!-- Actually taken from
Tycho built update site, not Nexus, so
snapshot is irrelevant. -->
<junit.version>4.4</junit.version>
<rosetta.version>4.7</rosetta.version>
<log4j.version>1.2.14</log4j.version>
<mvel.version>1.3.4-java1.5</mvel.version>
<jaxbri.version>2.2.4-1</jaxbri.version>
<jboss.version>5.1.0.GA</jboss.version>
<jbossws.version>3.2.2.GA</jbossws.version>
<jackson.version>2.0.2</jackson.version>
<emfcommon.version>2.3.0</emfcommon.version>
<emfecore.version>2.3.1</emfecore.version>
<xalan.version>2.7.1</xalan.version>
<tuscany.version>2.0-Beta2</tuscany.version>
<cxf.version>2.7.0</cxf.version>
<switchyard.version>1.1.0.Final</switchyard.version>
</properties>
<modules>
<module>bundles</module>
<module>qa</module>
</modules>
<build>
<!-- This section defines the default plugin settings inherited by child projects. -->
<pluginManagement>
<plugins>
<!-- Fixes how test resources of a project can be used in projects dependent on it -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.2</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.2</version>
<configuration>
<aggregate>true</aggregate>
</configuration>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<!-- Specify the compiler options and settings -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.0.2</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
<showDeprecation>false</showDeprecation>
<showWarnings>false</showWarnings>
</configuration>
</plugin>
<!-- Produce source jars during the 'verify' phase -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<id>attach-sources</id>
<phase>verify</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<includes>
<include>**/*TestCase.java</include>
<include>**/*Test.java</include>
</includes>
</configuration>
</plugin>
</plugins>
</build>
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-report-plugin</artifactId>
</plugin>
</plugins>
</reporting>
<repositories>
<repository>
<id>jboss-developer-repository-group</id>
<name>JBoss Developer Maven Repository Group</name>
<url>https://repository.jboss.org/nexus/content/groups/developer/</url>
<releases>
<enabled>true</enabled>
<updatePolicy>never</updatePolicy>
</releases>
<snapshots>
<enabled>true</enabled>
<updatePolicy>never</updatePolicy>
</snapshots>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>jboss-public-repository-group</id>
<name>JBoss Public Maven Repository Group</name>
<url>https://repository.jboss.org/nexus/content/groups/public/</url>
<layout>default</layout>
<releases>
<updatePolicy>never</updatePolicy>
</releases>
<snapshots>
<updatePolicy>never</updatePolicy>
</snapshots>
</pluginRepository>
</pluginRepositories>
<distributionManagement>
<repository>
<id>jboss-releases-repository</id>
<name>JBoss Releases Repository</name>
<url>https://repository.jboss.org/nexus/service/local/staging/deploy/maven2/</url>
</repository>
<snapshotRepository>
<id>jboss-snapshots-repository</id>
<name>JBoss Snapshots Repository</name>
<url>https://repository.jboss.org/nexus/content/repositories/snapshots/</url>
<uniqueVersion>false</uniqueVersion>
</snapshotRepository>
</distributionManagement>
</project>