This repository has been archived by the owner on Apr 20, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
/
pom.xml
212 lines (197 loc) · 6.4 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
<?xml version="1.0" encoding="UTF-8"?>
<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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>cz.cuni.mff.xrg.odcs</groupId>
<artifactId>odcs</artifactId>
<version>1.0.0</version>
<packaging>pom</packaging>
<name>ODCleanStore</name>
<description/>
<properties>
<!-- specify java build version for commons?, backend and frontend -->
<project.java.version>1.7</project.java.version>
<!-- define used vaadin version
!!! do not forget to update the version for OSGI's package export
-->
<vaadin.version>7.1.8</vaadin.version>
<!-- the minimal required vaadin version
The lowest Vaadin version accepted by DPUs.
-->
<vaadin.version.min>7.1.8</vaadin.version.min>
<!-- max vaadin version accepted be DPUs
The highest Vaadin version accepted by DPUs.
-->
<vaadin.version.max>8.0.0</vaadin.version.max>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<!-- define output dirs -->
<project.output.lib>target/lib/</project.output.lib>
<project.output.lib.backend>target/lib/backend/</project.output.lib.backend>
<project.output.dpu>target/dpu/</project.output.dpu>
<!-- odcs version, used to create OSGI import/export package list used
to enable custom user versions of DPUs by using <version> for this reason
<version> can't be used to specify OSGI packages -->
<odcs.version>1.0.0</odcs.version>
<skipTests>false</skipTests>
<!-- spring version -->
<org.springframework.version>3.1.2.RELEASE</org.springframework.version>
<org.springframework.security.version>3.1.4.RELEASE</org.springframework.security.version>
<!-- other third party libraries versions -->
<logback.version>1.0.13</logback.version>
</properties>
<modules>
<!-- commons -->
<module>commons</module>
<!-- dataunits -->
<module>dataunit</module>
<module>dataunit-file</module>
<module>dataunit-file-impl</module>
<module>dataunit-rdf</module>
<module>dataunit-rdf-impl</module>
<!-- odcs libraries -->
<module>commons-app</module>
<module>commons-module</module>
<module>commons-web</module>
<!-- application -->
<module>frontend</module>
<module>backend</module>
<!-- application additional libraries -->
<module>lib</module>
<!-- test environment for modules -->
<module>module-test</module>
<!-- build modules-->
<module>module-base</module>
<module>module</module>
<module>ontology</module>
</modules>
<scm>
<url/>
<connection/>
<developerConnection/>
</scm>
<developers>
<!-- <developer> <id></id> <name></name> <email></email> <roles> <role>developer</role>
</roles> </developer> -->
</developers>
<contributors>
<contributor>
<name>Tomas Knap</name>
<email>[email protected]</email>
<roles>
<role>project supervisor</role>
</roles>
<url>http://www.ksi.mff.cuni.cz/~knap</url>
<organization>Faculty of Mathematics and Physics, Charles University in Prague</organization>
</contributor>
</contributors>
<repositories>
<repository>
<id>cz.cuni.mff.ms.xrg.odcl</id>
<url>http://gd.projekty.ms.mff.cuni.cz:9123/nexus/content/groups/public/</url>
</repository>
<repository>
<id>cz.cuni.mff.ms.xrg.odcl.thirdparty</id>
<url>http://gd.projekty.ms.mff.cuni.cz:9123/nexus/content/repositories/thirdparty/</url>
</repository>
<repository> <!-- spring repositories -->
<id>com.springsource.repository.bundles.release</id>
<name>SpringSource Enterprise Bundle Repository - SpringSource Bundle Releases</name>
<url>http://repository.springsource.com/maven/bundles/release</url>
</repository>
<repository>
<id>com.springsource.repository.bundles.external</id>
<name>SpringSource Enterprise Bundle Repository - External Bundle Releases</name>
<url>http://repository.springsource.com/maven/bundles/external</url>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>cz.cuni.mff.ms.xrg.odcl</id>
<url>http://gd.projekty.ms.mff.cuni.cz:9123/nexus/content/groups/public/</url>
</pluginRepository>
</pluginRepositories>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>${project.java.version}</source>
<target>${project.java.version}</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.14.1</version>
<dependencies>
<dependency>
<groupId>org.apache.maven.surefire</groupId>
<artifactId>surefire-junit47</artifactId>
<version>2.14.1</version>
</dependency>
</dependencies>
<configuration>
<includes>
<include>**/*.java</include>
</includes>
<excludedGroups>cz.cuni.mff.xrg.odcs.commons.IntegrationTest</excludedGroups>
</configuration>
</plugin>
<plugin>
<artifactId>maven-failsafe-plugin</artifactId>
<version>2.14.1</version>
<dependencies>
<dependency>
<groupId>org.apache.maven.surefire</groupId>
<artifactId>surefire-junit47</artifactId>
<version>2.14.1</version>
</dependency>
</dependencies>
<configuration>
<groups>cz.cuni.mff.xrg.odcs.commons.IntegrationTest</groups>
</configuration>
<executions>
<execution>
<goals>
<goal>integration-test</goal>
<goal>verify</goal>
</goals>
<configuration>
<includes>
<include>**/*.java</include>
</includes>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<!-- JRebel plugin for instant redeploy -->
<plugin>
<groupId>org.zeroturnaround</groupId>
<artifactId>jrebel-maven-plugin</artifactId>
<version>1.1.5</version>
<executions>
<execution>
<id>generate-rebel-xml</id>
<phase>process-resources</phase>
<goals>
<goal>generate</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>skipTests</id>
<properties>
<skipTests>true</skipTests>
</properties>
</profile>
</profiles>
</project>