-
Notifications
You must be signed in to change notification settings - Fork 26
/
pom.xml
126 lines (121 loc) · 4.72 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
<?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/maven-v4_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-backbone-stack</artifactId>
<packaging>war</packaging>
<version>2.1.3-SNAPSHOT</version>
<name>RESThub Backbone.js stack</name>
<description>RESThub Backbone.js stack is designed to allow you to build web applications following KISS (Keep It Simple, Stupid), DRY (Don't Repeat Yourself) and REST principles.</description>
<issueManagement>
<system>RESThub issue tracker</system>
<url>https://github.com/resthub/resthub-backbone-stack/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>
<developer>
<id>jripault</id>
<name>Julien Ripault</name>
<timezone>+1</timezone>
</developer>
</developers>
<scm>
<connection>scm:git:[email protected]:resthub/resthub-backbone-stack.git</connection>
<developerConnection>scm:git:[email protected]:resthub/resthub-backbone-stack.git</developerConnection>
<url>scm:git:[email protected]:resthub/resthub-backbone-stack.git</url>
</scm>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>2.3</version>
<configuration>
<failOnMissingWebXml>false</failOnMissingWebXml>
<warSourceDirectory>${basedir}</warSourceDirectory>
<packagingExcludes>pom.xml,LICENSE.txt,.gitignore,tests/**,WEB-INF/**,META-INF/**,target/**,.travis.yml,CHANGELOG.rst,README.rst</packagingExcludes>
</configuration>
</plugin>
<plugin>
<groupId>org.mortbay.jetty</groupId>
<artifactId>jetty-maven-plugin</artifactId>
<version>8.1.10.v20130312</version>
<configuration>
<!-- We use non NIO connector in order to avoid read only static files under windows -->
<connectors>
<connector implementation="org.eclipse.jetty.server.bio.SocketConnector">
<port>8080</port>
<maxIdleTime>60000</maxIdleTime>
</connector>
</connectors>
<webAppSourceDirectory>${basedir}</webAppSourceDirectory>
</configuration>
</plugin>
</plugins>
</build>
</project>