forked from srt/userstatus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
71 lines (71 loc) · 2.67 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
<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>com.reucon</groupId>
<artifactId>reucon-public-parent</artifactId>
<version>5</version>
</parent>
<groupId>com.reucon.openfire.plugins</groupId>
<artifactId>user-status</artifactId>
<packaging>openfire-plugin</packaging>
<version>1.1.0-SNAPSHOT</version>
<name>User Status Plugin</name>
<url>http://maven.reucon.com/projects/public/user-status</url>
<description>Openfire plugin to save the user status to the database.</description>
<organization>
<name>Stefan Reuter</name>
</organization>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<currentVersion>${project.version}</currentVersion>
</properties>
<licenses>
<license>
<name>GNU General Public License, Version 2.0</name>
<url>http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<connection>scm:git:git://github.com/srt/userstatus.git</connection>
<developerConnection>scm:git:git://github.com/srt/userstatus.git</developerConnection>
</scm>
<issueManagement>
<system>JIRA</system>
<url>http://jira.reucon.org/browse/USP</url>
</issueManagement>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
<version>2.3</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.igniterealtime.openfire</groupId>
<artifactId>openfire</artifactId>
<version>3.6.3</version>
<scope>provided</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>com.reucon.maven.plugins</groupId>
<artifactId>maven-openfire-plugin</artifactId>
<extensions>true</extensions>
<configuration>
<jspPackageName>com.reucon.openfire.plugin.userstatus.jsp</jspPackageName>
</configuration>
</plugin>
</plugins>
<finalName>user-status</finalName>
</build>
</project>