-
Notifications
You must be signed in to change notification settings - Fork 10
/
pom.xml
141 lines (133 loc) · 4.73 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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
<?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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>7</version>
</parent>
<groupId>org.resthub</groupId>
<artifactId>resthub-archetypes</artifactId>
<version>2.2.1-SNAPSHOT</version>
<name>RESThub Archetypes</name>
<packaging>pom</packaging>
<description>Archetypes provided to allow quick bootstraping for your RESThub based projects</description>
<modules>
<module>resthub-jpa-backbonejs-archetype</module>
<module>resthub-jpa-backbonejs-multi-archetype</module>
<module>resthub-mongodb-backbonejs-archetype</module>
<module>resthub-mongodb-backbonejs-multi-archetype</module>
</modules>
<issueManagement>
<system>RESThub issue tracker</system>
<url>https://github.com/resthub/resthub-archetypes/issues</url>
</issueManagement>
<licenses>
<license>
<name>Apache 2</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.html</url>
</license>
</licenses>
<inceptionYear>2009</inceptionYear>
<mailingLists>
<mailingList>
<name>Resthub developer group</name>
<subscribe>[email protected]</subscribe>
<unsubscribe>[email protected]</unsubscribe>
<post>[email protected]</post>
<archive>http://groups.google.com/group/resthub-dev</archive>
</mailingList>
</mailingLists>
<developers>
<developer>
<id>sdeleuze</id>
<name>Sebastien Deleuze</name>
<timezone>+1</timezone>
</developer>
<developer>
<id>pouic</id>
<name>Nicolas Carlier</name>
<timezone>+1</timezone>
</developer>
<developer>
<id>bmeurant</id>
<name>Baptiste Meurant</name>
<timezone>+1</timezone>
</developer>
<developer>
<id>feugy</id>
<name>Damien Feugas</name>
<timezone>+1</timezone>
</developer>
<developer>
<id>loicfrering</id>
<name>Loic Frering</name>
<timezone>+1</timezone>
</developer>
<developer>
<id>dst17</id>
<name>Johan Poirier</name>
<timezone>+1</timezone>
</developer>
<developer>
<id>vanackej</id>
<name>Johann Vanackere</name>
<timezone>+1</timezone>
</developer>
<developer>
<id>jvillanti</id>
<name>Julien Villanti</name>
<timezone>+1</timezone>
</developer>
<developer>
<id>bclozel</id>
<name>Brian Clozel</name>
<timezone>+1</timezone>
</developer>
</developers>
<scm>
<connection>scm:git:[email protected]:resthub/resthub-archetypes.git</connection>
<developerConnection>scm:git:[email protected]:resthub/resthub-archetypes.git</developerConnection>
<url>scm:git:[email protected]:resthub/resthub-archetypes.git</url>
<tag>HEAD</tag>
</scm>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>2.6</version>
<configuration>
<encoding>UTF-8</encoding>
<escapeString>£</escapeString>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.5</version>
</plugin>
</plugins>
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
</resource>
</resources>
<extensions>
<extension>
<groupId>org.apache.maven.archetype</groupId>
<artifactId>archetype-packaging</artifactId>
</extension>
</extensions>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-archetype-plugin</artifactId>
<extensions>true</extensions>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>