-
Notifications
You must be signed in to change notification settings - Fork 1
/
pom.xml
40 lines (36 loc) · 1.33 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
<?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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>io.analytica</groupId>
<artifactId>analytica-server-reactor</artifactId>
<version>1.4.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>analytica-server-reactor</name>
<description>Analytica-Server manage to receive,store,analyse and publish Business Application's measures </description>
<url>http://vertigo.io</url>
<licenses>
<license>
<name>GNU General Public License (GPL)</name>
<url>http://www.gnu.org/licenses/gpl.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<modules>
<module>analytica-server-aggregator-api</module>
<module>analytica-server-aggregator-influxDB-impl</module>
<module>analytica-server-core</module>
<module>analytica-server-ui</module>
<module>analytica-server-ui-swing</module>
</modules>
<build>
<plugins>
<plugin>
<artifactId>maven-deploy-plugin</artifactId>
<version>2.8.1</version>
<configuration>
<skip>true</skip> <!-- No need to deploy the reactor -->
</configuration>
</plugin>
</plugins>
</build>
</project>