-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpom.xml
179 lines (173 loc) · 6.39 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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
<?xml version="1.0"?>
<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>com.soashable.lib</groupId>
<artifactId>xmpp4js</artifactId>
<packaging>javascript</packaging>
<version>0.2.1-SNAPSHOT</version>
<name>xmpp4js</name>
<description>
xmpp4js is an xmpp connection library for Javascript. It is written with a heavy emphasis
on resuability and extensibility, and is naturally heavilly tested.
</description>
<url>http://xmpp4js.sourceforge.net</url>
<dependencies>
<dependency>
<groupId>uk.org.pajhome</groupId>
<artifactId>crypto</artifactId>
<type>javascript</type>
<version>1.0</version>
</dependency>
<dependency>
<groupId>net.sf.xml4script</groupId>
<artifactId>xml4script</artifactId>
<type>javascript</type>
<version>3.1</version>
</dependency>
<dependency>
<groupId>de.berlios.log4js</groupId>
<artifactId>log4js</artifactId>
<type>javascript</type>
<version>1.0-RC1</version>
</dependency>
</dependencies>
<build>
<extensions>
<extension>
<groupId>org.codehaus.mojo.javascript</groupId>
<artifactId>javascript-maven-extensions</artifactId>
<version>1.0-alpha-1-SNAPSHOT</version>
</extension>
</extensions>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<dependencies>
<dependency>
<groupId>org.apache.maven.scm</groupId>
<artifactId>maven-scm-provider-gitexe</artifactId>
<version>1.1-SNAPSHOT</version>
</dependency>
</dependencies>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-scm-plugin</artifactId>
<dependencies>
<dependency>
<groupId>org.apache.maven.scm</groupId>
<artifactId>maven-scm-provider-gitexe</artifactId>
<version>1.1-SNAPSHOT</version>
</dependency>
</dependencies>
</plugin>
<plugin>
<groupId>org.codehaus.mojo.javascript</groupId>
<artifactId>javascript-maven-plugin</artifactId>
<version>1.0-alpha-1-SNAPSHOT</version>
<extensions>true</extensions>
<configuration>
<descriptor>${basedir}/src/assembler/xmpp4js.xml</descriptor>
<includes>
<include>*Test.html</include>
</includes>
<excludes>
<!-- hasn't been ported to new connection stuff yet -->
<exclude>MUC_JoinTest.html</exclude>
</excludes>
<browsers>
<browser>firefox</browser>
</browsers>
</configuration>
<executions>
</executions>
</plugin>
</plugins>
</build>
<reporting>
<plugins>
<plugin>
<groupId>org.codehaus.mojo.javascript</groupId>
<artifactId>javascript-report-maven-plugin</artifactId>
<configuration>
<reports>
<report>jsdoc</report>
</reports>
</configuration>
</plugin>
<!--
There is a bug in js plugin that prevents site from building if this
is enabled and tests fail.
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-report-plugin</artifactId>
</plugin>
-->
</plugins>
</reporting>
<distributionManagement>
<repository>
<id>mvn.soashable.com</id>
<url>
http://mvn.soashable.com:8180/artifactory/libs-snapshots
</url>
</repository>
<snapshotRepository>
<id>mvn.soashable.com</id>
<url>
http://mvn.soashable.com:8180/artifactory/libs-snapshots
</url>
</snapshotRepository>
<site>
<id>sourceforge.net-site</id>
<url>scp://shell.sourceforge.net/home/groups/x/xm/xmpp4js/htdocs</url>
</site>
</distributionManagement>
<scm>
<connection>scm:git:git://github.com/harlanji/xmpp4js.git</connection>
<developerConnection>scm:git:ssh://[email protected]/harlanji/xmpp4js.git</developerConnection>
<url>http://github.com/harlanji/xmpp4js</url>
</scm>
<licenses>
<license>
<name>GNU Lesser Public License (LGPL)</name>
<url>http://www.gnu.org/licenses/lgpl-3.0.txt</url>
</license>
</licenses>
<issueManagement>
<system>Google Code Issues</system>
<url>http://code.google.com/p/soashable/issues/list</url>
</issueManagement>
<developers>
<developer>
<id>h.iverson</id>
<name>Harlan Iverson</name>
<email>h.iverson at gmail dot com</email>
<url>http://blog.devspan.com</url>
</developer>
</developers>
<contributors>
<contributor>
<name>Matthew Purland</name>
<email>m.purland at gmail dot com</email>
</contributor>
</contributors>
<repositories>
<repository>
<id>soashable-libs-snapshots</id>
<url>http://mvn.soashable.com/artifactory/libs-snapshots</url>
<releases>
<enabled>false</enabled>
<updatePolicy>never</updatePolicy>
<checksumPolicy>fail</checksumPolicy>
</releases>
<snapshots>
<checksumPolicy>warn</checksumPolicy>
</snapshots>
</repository>
</repositories>
</project>