-
Notifications
You must be signed in to change notification settings - Fork 5
/
pom.xml
132 lines (115 loc) · 3.63 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
<?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>org.arrowhead.wp5</groupId>
<artifactId>vmeroot</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>ARROWHEAD::WP5::VME Root Project</name>
<description>The root of the ARROWHEAD WP5 VME project</description>
<organization>
<name>The ARROWHEAD Consortium</name>
<url>http://www.arrowhead.eu/</url>
</organization>
<url>http://www.arrowhead.eu/</url>
<inceptionYear>2016</inceptionYear>
<mailingLists>
<mailingList>
<post>[email protected]</post>
</mailingList>
</mailingLists>
<licenses>
<license>
<name>MIT License</name>
<url>http://www.opensource.org/licenses/mit-license.php</url>
<distribution>repo</distribution>
</license>
<!--
<license>
<name>ARROWHEAD Consortium Agreement</name>
</license> -->
</licenses>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.7</maven.compiler.source>
<maven.compiler.target>1.7</maven.compiler.target>
<slf4j.version>1.7.12</slf4j.version>
</properties>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>license-maven-plugin</artifactId>
<version>1.9</version>
<configuration>
<verbose>false</verbose>
<addSvnKeyWords>false</addSvnKeyWords>
<licenseName>mit</licenseName>
<roots>
<root>src/main/java</root>
<root>src/main/resources</root>
<root>src/test</root>
</roots>
<excludes>
<exclude>*.json</exclude>
<exclude>*.properties</exclude>
</excludes>
</configuration>
<executions>
<execution>
<id>first</id>
<goals>
<goal>update-file-header</goal>
</goals>
<phase>process-sources</phase>
</execution>
</executions>
</plugin>
</plugins>
</pluginManagement>
</build>
<modules>
<!-- ARROWHEAD WP5 core specification -->
<module>core-api</module>
<!-- Demonstrator1 managers -->
<module>aggregator-manager</module>
<module>flexoffer-manager</module>
<!-- Implementations of communication functionality -->
<module>communication-common</module>
<module>communication-xmpp</module>
<module>application-common</module>
<module>aggregator-core</module>
<!-- Aggregator Test Tool -->
<module>aggregator-testtool</module>
<!--
<module>DemoEndToEndTest</module>
<module>arrowhead-subsystem</module>
<module>arrowhead-flexoffer-manager</module>
<module>arrowhead-aggregator-manager</module>
<module>DemoFOAapp</module> -->
<module>flexoffer-tutorial</module>
<module>market-core</module>
<module>market-manager</module>
<module>arrowhead-common</module>
</modules>
<dependencies>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>${slf4j.version}</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.8.2</version>
<scope>test</scope>
</dependency>
<!-- https://mvnrepository.com/artifact/com.sun.jersey/jersey-client -->
<dependency>
<groupId>com.sun.jersey</groupId>
<artifactId>jersey-client</artifactId>
<version>1.19</version>
</dependency>
</dependencies>
</project>