This repository has been archived by the owner on Apr 3, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpom.xml
118 lines (109 loc) · 3.36 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
<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.ardulink</groupId>
<artifactId>parent</artifactId>
<version>0.6.2-SNAPSHOT</version>
<packaging>pom</packaging>
<url>http://www.ardulink.org</url>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<name>Luciano Zu</name>
<email>[email protected]</email>
<organization>Ardulink</organization>
<organizationUrl>http://www.ardulink.org</organizationUrl>
</developer>
<developer>
<name>Peter Fichtner</name>
<organization>Ardulink</organization>
<organizationUrl>http://www.ardulink.org</organizationUrl>
</developer>
</developers>
<scm>
<connection>scm:git:[email protected]:Ardulink/Ardulink.git</connection>
<developerConnection>scm:git:[email protected]:Ardulink/Ardulink.git</developerConnection>
<url>https://github.com/Ardulink/Ardulink</url>
</scm>
<repositories>
<repository>
<id>local-repo</id>
<url>file://${project.basedir}/../local-repo</url>
</repository>
<repository>
<snapshots>
<enabled>false</enabled>
</snapshots>
<id>central</id>
<name>Central Repository</name>
<url>http://repo.maven.apache.org/maven2</url>
</repository>
</repositories>
<properties>
<project.build.sourceEncoding>CP1252</project.build.sourceEncoding>
<compilerVersion>1.6</compilerVersion>
<maven.compiler.source>1.6</maven.compiler.source>
<maven.compiler.target>1.6</maven.compiler.target>
<args4j.version>2.32</args4j.version>
<slf4j.version>1.7.12</slf4j.version>
<junit.version>4.12</junit.version>
</properties>
<modules>
<module>ArdulinkCore</module>
<module>ArdulinkPI</module>
<module>ArdulinkSwing</module>
<module>ArdulinkConsole</module>
<module>ArdulinkMail</module>
<module>ArdulinkNetworkProxyServer</module>
<module>Mqtt</module>
<module>DataReceiver</module>
<module>JoystickSmartCarDriver</module>
<module>SimpleSmartCarDriver</module>
<module>Deploy</module>
</modules>
<build>
<pluginManagement>
<plugins>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.5.3</version>
<configuration>
<descriptors>
<descriptor>assembly.xml</descriptor>
</descriptors>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>args4j</groupId>
<artifactId>args4j</artifactId>
<version>${args4j.version}</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>${slf4j.version}</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-jdk14</artifactId>
<version>${slf4j.version}</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
</project>