-
Notifications
You must be signed in to change notification settings - Fork 9
/
pom.xml
109 lines (109 loc) · 3.76 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
<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>net.eliosoft</groupId>
<artifactId>artnet4j</artifactId>
<name>ArtNet4j</name>
<version>0001</version>
<description>Java implementation of the Art-Net protocol</description>
<packaging>jar</packaging>
<inceptionYear>2009</inceptionYear>
<licenses>
<license>
<name>GNU GENERAL PUBLIC LICENSE Version 3</name>
<url>https://www.gnu.org/licenses/gpl.txt</url>
</license>
</licenses>
<organization>
<name>Eliosoft</name>
<url>http://www.eliosoft.net/</url>
</organization>
<scm>
<connection>scm:git:https://github.com/Eliosoft/artnet4j-elios.git</connection>
<url>https://github.com/Eliosoft/artnet4j-elios</url>
</scm>
<issueManagement>
<url>https://github.com/Eliosoft/artnet4j-elios/issues</url>
</issueManagement>
<ciManagement>
<url>http://integration.eliosoft.net/</url>
</ciManagement>
<url>https://github.com/Eliosoft/artnet4j-elios</url>
<developers>
<developer>
<name>Alexandre COLLIGNON</name>
<email>alexandre@collign.net</email>
</developer>
<developer>
<name>Jérémie GASTON-RAOUL</name>
<email>jeremie.gastonraoul@free.fr</email>
</developer>
</developers>
<contributors>
<contributor>
<name>Karsten Schmidt</name>
<url>https://code.google.com/u/toxmeister/</url>
<roles>
<role>Project leader of the initial project</role>
</roles>
</contributor>
</contributors>
<distributionManagement>
<downloadUrl>https://github.com/Eliosoft/artnet4j-elios</downloadUrl>
</distributionManagement>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.0</version>
<configuration>
<source>1.5</source>
<target>1.5</target>
</configuration>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>distribution</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<version>3.1</version>
<dependencies>
<dependency>
<groupId>org.apache.maven.doxia</groupId>
<artifactId>doxia-module-markdown</artifactId>
<version>1.3</version>
</dependency>
</dependencies>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9</version>
<reportSets>
<reportSet>
<id>default</id>
<reports>
<report>javadoc</report>
</reports>
</reportSet>
</reportSets>
</plugin>
</plugins>
</reporting>
</project>