-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpom.xml
110 lines (99 loc) · 3.14 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>es.ctic.parrot</groupId>
<artifactId>parrot</artifactId>
<packaging>pom</packaging>
<version>1.0-SNAPSHOT</version>
<name>Parrot</name>
<description>Parrot Project</description>
<url>https://github.com/dayures/parrot</url>
<issueManagement>
<system>Tracker</system>
<url>https://github.com/dayures/parrot/issues</url>
</issueManagement>
<licenses>
<license>
<name>Eclipse Public License</name>
<url>http://www.eclipse.org/legal/epl-v10.html</url>
<distribution>repo</distribution>
<comments>A business-friendly OSS license</comments>
</license>
</licenses>
<organization>
<name>Fundación CTIC</name>
<url>http://www.fundacionctic.org/</url>
</organization>
<scm>
<connection>scm:git:https://github.com/dayures/parrot</connection>
<developerConnection>scm:git:https://github.com/dayures/parrot</developerConnection>
<url>https://github.com/dayures/parrot</url>
</scm>
<developers>
<developer>
<id>tejo</id>
<name>Carlos Tejo Alonso</name>
<email>[email protected]</email>
<url>http://dayures.net</url>
</developer>
<developer>
<id>berrueta</id>
<name>Diego Berrueta Muñoz</name>
<email>[email protected]</email>
<url>http://www.berrueta.net</url>
</developer>
<developer>
<id>sergio</id>
<name>Sergio Fernández</name>
<email>[email protected]</email>
<url>http://www.wikier.org/</url>
</developer>
<developer>
<id>minguez</id>
<name>Iván Mínguez</name>
<email>[email protected]</email>
<url>http://iminguez.com/</url>
</developer>
</developers>
<profiles>
<profile>
<id>release</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<modules>
<module>parrot-core</module>
<module>parrot-cli</module>
<!--<module>parrot-eclipse</module>-->
<module>parrot-web</module>
</modules>
</profile>
</profiles>
<build>
<extensions>
<extension>
<groupId>org.apache.maven.wagon</groupId>
<artifactId>wagon-webdav-jackrabbit</artifactId>
<version>1.0</version>
</extension>
</extensions>
</build>
<distributionManagement>
<repository>
<id>ctic-nexus</id>
<name>CTIC nexus</name>
<url>dav:http://devit.fundacionctic.org:8081/nexus/content/repositories/releases</url>
</repository>
<snapshotRepository>
<id>ctic-nexus</id>
<name>CTIC nexus</name>
<url>dav:http://devit.fundacionctic.org:8081/nexus/content/repositories/snapshots</url>
</snapshotRepository>
</distributionManagement>
<repositories>
<repository>
<id>repositorio-ctic</id>
<name>CTIC public</name>
<url>http://repository.fundacionctic.org/content/groups/public/</url>
</repository>
</repositories>
</project>