-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
220 lines (198 loc) · 6.25 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
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
<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</groupId>
<artifactId>scribble</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Scribble</name>
<url>http://www.scribble.org</url>
<description>
Scribble
</description>
<scm>
<connection>scm:svn:https://</connection>
</scm>
<developers>
<developer>
<name>Gary Brown</name>
<id>objectiser</id>
<email>[email protected]</email>
<organization>Scribble.org</organization>
<roles>
<role>Developer</role>
</roles>
<timezone>+0</timezone>
</developer>
</developers>
<properties>
<scribble.version>1.0-SNAPSHOT</scribble.version>
<felix.version>2.0.1</felix.version>
<osgi.version>1.4.0</osgi.version>
<antlr.version>3.2</antlr.version>
<log4j.version>1.2.14</log4j.version>
<junit.version>4.7</junit.version>
</properties>
<modules>
<module>modules</module>
<module>integration</module>
<module>qa</module>
<module>docs</module>
<module>distribution</module>
</modules>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.apache.felix</groupId>
<artifactId>org.apache.felix.framework</artifactId>
<version>${felix.version}</version>
</dependency>
<dependency>
<groupId>org.apache.felix</groupId>
<artifactId>org.apache.felix.main</artifactId>
<version>${felix.version}</version>
</dependency>
<dependency>
<groupId>org.apache.felix</groupId>
<artifactId>org.osgi.core</artifactId>
<version>${osgi.version}</version>
</dependency>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>${log4j.version}</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
<distributionManagement>
<repository>
<id>jboss</id>
<name>JBoss Maven Repository</name>
<url>file://${jboss.maven.repository}</url>
</repository>
<snapshotRepository>
<id>jboss-snapshots</id>
<name>JBoss Snapshot Repository</name>
<url>dav:https://snapshots.jboss.org/maven2</url>
</snapshotRepository>
</distributionManagement>
<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.5</source>
<target>1.5</target>
<showDeprecation>false</showDeprecation>
<showWarnings>false</showWarnings>
<optimize>true</optimize>
<compilerArgument>-verbose</compilerArgument>
</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</id>
<url>http://repository.jboss.com/maven2/</url>
</repository>
<!--
<repository>
<id>jboss-snapshot</id>
<url>http://snapshots.jboss.org/maven2</url>
</repository>
-->
<repository>
<id>maven.repo</id>
<name>maven repository</name>
<url>http://repo1.maven.org/maven2</url>
</repository>
<repository>
<id>ibiblio</id>
<name>ibiblio repository</name>
<url>http://mirrors.ibiblio.org/pub/mirrors/maven2</url>
</repository>
<repository>
<id>codehaus</id>
<name>codehaus repository</name>
<url>http://repo1.maven.org/maven2</url>
</repository>
<repository>
<id>apache-nexus</id>
<name>apache nexus</name>
<url>https://repository.apache.org/content/groups/public/</url>
</repository>
<repository>
<id>intalio</id>
<name>intalio</name>
<url>http://www.intalio.org/public/maven2</url>
</repository>
<!-- Not all dependencies are resolved when using this repository.
Complains about not finding appropriate version of
org.eclipse.equinox.app plugin. -->
<!-- repository>
<id>eclipse</id>
<name>eclipse repository</name>
<url>http://repo1.maven.org/eclipse</url>
</repository-->
</repositories>
</project>