forked from SINTEF-9012/JArduino
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
69 lines (55 loc) · 2.21 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
<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>org.sintef.jarduino</groupId>
<artifactId>org.sintef.jarduino</artifactId>
<packaging>pom</packaging>
<version>0.1.7-SNAPSHOT</version>
<name>org.sintef.jarduino</name>
<distributionManagement>
<repository>
<id>thingml-release</id>
<name>thingml-release</name>
<url>http://maven.thingml.org/archiva/repository/thingml-release/</url>
</repository>
<snapshotRepository>
<id>thingml-snapshot</id>
<name>thingml-snapshot</name>
<url>http://maven.thingml.org/archiva/repository/thingml-snapshot/</url>
</snapshotRepository>
</distributionManagement>
<modules>
<!--<module>aFileDialog</module>-->
<module>jarduino.core</module>
<module>jarduino.gui</module>
<module>jarduino.serial</module>
<module>jarduino.bluetooth</module>
<!--<module>jarduino.samples</module>
<module>jarduino.samples.android</module>
<module>jarduino.samples.android.gui</module>-->
</modules>
<properties>
<jarduino.version>${project.version}</jarduino.version>
</properties>
<repositories>
<repository>
<id>thingml-snapshot</id>
<name>thingml-snapshot</name>
<url>http://maven.thingml.org/thingml-snapshot/</url>
</repository>
<repository>
<id>thingml-release</id>
<name>thingml-release</name>
<url>http://maven.thingml.org/thingml-release/</url>
</repository>
<repository>
<id>thirdparty</id>
<name>thingml-snapshot</name>
<url>http://maven.thingml.org/thirdparty/</url>
</repository>
<repository>
<id>kevoree-libs-release-local</id>
<url>http://maven.kevoree.org/release</url>
</repository>
</repositories>
</project>