-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpom.xml
205 lines (197 loc) · 6.52 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
<?xml version="1.0" encoding="UTF-8"?>
<project
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<name>Amanzi Wireless Explorer</name>
<organization>
<name>AmanziTel</name>
<url>www.amanzitel.com</url>
</organization>
<scm>
<url>https://github.com/AmanziTel/awe-core.git</url>
</scm>
<issueManagement>
<url>http://redmine.amanzitel.com</url>
<system>Redmine</system>
</issueManagement>
<properties>
<tycho-version>0.15.0</tycho-version>
<awe-core-version>0.15</awe-core-version>
<awe-scripting-version>1.0.0.qualifier</awe-scripting-version>
</properties>
<groupId>org.amanzi</groupId>
<artifactId>awe-core</artifactId>
<version>${awe-core-version}</version>
<packaging>pom</packaging>
<repositories>
<repository>
<id>indigo</id>
<layout>p2</layout>
<url>http://download.eclipse.org/releases/indigo</url>
</repository>
<repository>
<id>radrails</id>
<layout>p2</layout>
<url>http://download.aptana.com/studio3/plugin/install</url>
</repository>
</repositories>
<profiles>
<profile>
<id>test</id>
<activation>
<activeByDefault>false</activeByDefault>
</activation>
<modules>
<module>org.amanzi.awe.filters</module>
<module>org.amanzi.awe.libs</module>
<module>org.amanzi.awe.scripting.testing</module>
<module>org.amanzi.awe.ui.testing</module>
<module>org.amanzi.neo.db.testing</module>
<module>org.amanzi.neo.core.testing</module>
<module>org.amanzi.neo.loader.core.testing</module>
<module>org.amanzi.neo.loader.ui.testing</module>
<module>org.amanzi.neo.models.impl.testing</module>
<module>org.amanzi.neo.providers.testing</module>
<module>org.amanzi.neo.services.testing</module>
<module>org.amanzi.testing</module>
<module>org.amanzi.testing.libs</module>
</modules>
<build>
<plugins>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.5.3.201107060350</version>
<executions>
<execution>
<id>jacoco-initialize</id>
<phase>initialize</phase>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
<execution>
<id>jacoco-site</id>
<phase>site</phase>
<goals>
<goal>report</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>release</id>
<activation>
<activeByDefault>false</activeByDefault>
</activation>
<modules>
<module>org.amanzi.awe</module>
<module>org.amanzi.awe.analyzis.ui</module>
<module>org.amanzi.awe.catalog.neo</module>
<module>org.amanzi.awe.charts.builder</module>
<module>org.amanzi.awe.charts.feature</module>
<module>org.amanzi.awe.charts.impl</module>
<module>org.amanzi.awe.charts.ui</module>
<module>org.amanzi.awe.console</module>
<module>org.amanzi.awe.distribution.coloring</module>
<module>org.amanzi.awe.distribution.engine</module>
<module>org.amanzi.awe.distribution.feature</module>
<module>org.amanzi.awe.distribution.impl</module>
<module>org.amanzi.awe.distribution.ui</module>
<module>org.amanzi.awe.drive.ui</module>
<module>org.amanzi.awe.explorer.ui</module>
<module>org.amanzi.awe.nem</module>
<module>org.amanzi.awe.nem.feature</module>
<module>org.amanzi.awe.nem.ui</module>
<module>org.amanzi.awe.correlation</module>
<module>org.amanzi.awe.correlation.feature</module>
<module>org.amanzi.awe.correlation.ui</module>
<module>org.amanzi.awe.neostyle</module>
<module>org.amanzi.neo.geoptima.feature</module>
<module>org.amanzi.neo.geoptima.core.ui</module>
<module>org.amanzi.neo.geoptima.loader.core</module>
<module>org.amanzi.neo.geoptima.loader.ui</module>
<module>org.amanzi.awe.network.ui</module>
<module>org.amanzi.awe.feature</module>
<module>org.amanzi.awe.project</module>
<module>org.amanzi.awe.properties.ui</module>
<module>org.amanzi.awe.render.core</module>
<module>org.amanzi.awe.render.drive</module>
<module>org.amanzi.awe.render.network</module>
<module>org.amanzi.awe.scripting.feature</module>
<module>org.amanzi.awe.startup.splash</module>
<module>org.amanzi.awe.statistics.engine</module>
<module>org.amanzi.awe.statistics.feature</module>
<module>org.amanzi.awe.statistics.impl</module>
<module>org.amanzi.awe.statistics.ui</module>
<module>org.amanzi.awe.ui.db</module>
<module>org.amanzi.awe.ui.tree</module>
<module>org.amanzi.awe.ui.udig</module>
</modules>
</profile>
</profiles>
<modules>
<module>org.amanzi.awe.filters</module>
<module>org.amanzi.awe.libs</module>
<module>org.amanzi.awe.scripting</module>
<module>org.amanzi.awe.startup.splash</module>
<module>org.amanzi.awe.ui</module>
<module>org.amanzi.log4j</module>
<module>org.amanzi.neo.db</module>
<module>org.amanzi.neo.core</module>
<module>org.amanzi.neo.loader.core</module>
<module>org.amanzi.neo.loader.ui</module>
<module>org.amanzi.neo.models</module>
<module>org.amanzi.neo.models.impl</module>
<module>org.amanzi.neo.providers</module>
<module>org.amanzi.neo.services</module>
<module>org.neo4j</module>
</modules>
<build>
<plugins>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-maven-plugin</artifactId>
<version>${tycho-version}</version>
<extensions>true</extensions>
</plugin>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>target-platform-configuration</artifactId>
<version>${tycho-version}</version>
<configuration>
<environments>
<environment>
<os>linux</os>
<ws>gtk</ws>
<arch>x86_64</arch>
</environment>
<environment>
<os>linux</os>
<ws>gtk</ws>
<arch>x86</arch>
</environment>
<!-- <environment> <os>macosx</os> <ws>carbon</ws> <arch>x86</arch>
</environment> <environment> <os>macosx</os> <ws>cocoa</ws> <arch>x86</arch>
</environment> <environment> <os>macosx</os> <ws>cocoa</ws> <arch>x86_64</arch>
</environment> -->
<environment>
<os>win32</os>
<ws>win32</ws>
<arch>x86</arch>
</environment>
<environment>
<os>win32</os>
<ws>win32</ws>
<arch>x86_64</arch>
</environment>
</environments>
</configuration>
</plugin>
</plugins>
</build>
</project>