| 2 |
jeje |
1 |
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
|
|
2 |
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
3 |
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
|
|
|
4 |
<parent>
|
|
|
5 |
<groupId>com.elasticgrid</groupId>
|
|
|
6 |
<artifactId>elastic-grid-modules</artifactId>
|
| 505 |
jeje |
7 |
<version>0.9.2</version>
|
| 2 |
jeje |
8 |
</parent>
|
|
|
9 |
<modelVersion>4.0.0</modelVersion>
|
|
|
10 |
<artifactId>jabber-cli</artifactId>
|
|
|
11 |
<packaging>jsb</packaging>
|
| 172 |
jeje |
12 |
<name>Modules :: Jabber CLI</name>
|
| 2 |
jeje |
13 |
|
|
|
14 |
<dependencies>
|
|
|
15 |
|
|
|
16 |
<dependency>
|
| 172 |
jeje |
17 |
<groupId>com.elasticgrid</groupId>
|
|
|
18 |
<artifactId>elastic-grid-core</artifactId>
|
|
|
19 |
<version>${pom.version}</version>
|
|
|
20 |
</dependency>
|
|
|
21 |
|
|
|
22 |
<dependency>
|
|
|
23 |
<groupId>com.elasticgrid</groupId>
|
|
|
24 |
<artifactId>elastic-grid-cli</artifactId>
|
|
|
25 |
<version>${pom.version}</version>
|
|
|
26 |
</dependency>
|
|
|
27 |
|
|
|
28 |
<dependency>
|
|
|
29 |
<groupId>jivesoftware</groupId>
|
| 2 |
jeje |
30 |
<artifactId>smack</artifactId>
|
|
|
31 |
<version>3.0.4</version>
|
|
|
32 |
</dependency>
|
|
|
33 |
|
|
|
34 |
<dependency>
|
| 172 |
jeje |
35 |
<groupId>jivesoftware</groupId>
|
| 2 |
jeje |
36 |
<artifactId>smackx</artifactId>
|
|
|
37 |
<version>3.0.4</version>
|
|
|
38 |
</dependency>
|
|
|
39 |
|
|
|
40 |
<dependency>
|
|
|
41 |
<groupId>org.rioproject.tools</groupId>
|
|
|
42 |
<artifactId>cli</artifactId>
|
|
|
43 |
</dependency>
|
| 229 |
jeje |
44 |
|
|
|
45 |
<dependency>
|
|
|
46 |
<groupId>org.rioproject</groupId>
|
|
|
47 |
<artifactId>rio</artifactId>
|
|
|
48 |
</dependency>
|
| 2 |
jeje |
49 |
|
|
|
50 |
</dependencies>
|
|
|
51 |
|
|
|
52 |
<build>
|
|
|
53 |
<plugins>
|
|
|
54 |
<plugin>
|
|
|
55 |
<groupId>org.apache.maven.plugins</groupId>
|
|
|
56 |
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
57 |
<version>2.4.1</version>
|
|
|
58 |
<configuration>
|
|
|
59 |
<forkMode>never</forkMode>
|
|
|
60 |
<excludedGroups>qa</excludedGroups>
|
|
|
61 |
</configuration>
|
|
|
62 |
</plugin>
|
|
|
63 |
<plugin>
|
|
|
64 |
<groupId>org.apache.maven.plugins</groupId>
|
|
|
65 |
<artifactId>maven-rio-plugin</artifactId>
|
| 206 |
jeje |
66 |
<version>4.0-M3-SNAPSHOT</version>
|
| 2 |
jeje |
67 |
<extensions>true</extensions>
|
|
|
68 |
<configuration>
|
|
|
69 |
<environment>
|
|
|
70 |
<rio.home>${env.RIO_HOME}</rio.home>
|
|
|
71 |
<jini.home>${env.JINI_HOME}</jini.home>
|
|
|
72 |
</environment>
|
|
|
73 |
|
|
|
74 |
<implementationIns>
|
|
|
75 |
<implementationIn>com.elasticgrid.tools.cli.jabber</implementationIn>
|
|
|
76 |
</implementationIns>
|
|
|
77 |
<implementationTopclasses>
|
|
|
78 |
<implementationTopclass>com.elasticgrid.tools.cli.jabber.JabberCLIJSB</implementationTopclass>
|
|
|
79 |
</implementationTopclasses>
|
|
|
80 |
|
|
|
81 |
<clientIns>
|
|
|
82 |
<clientIn>com.elasticgrid.tools.cli.jabber</clientIn>
|
|
|
83 |
</clientIns>
|
|
|
84 |
<clientTopclasses>
|
|
|
85 |
<clientTopclass>com.elasticgrid.tools.cli.jabber.JabberCLI</clientTopclass>
|
|
|
86 |
</clientTopclasses>
|
|
|
87 |
|
|
|
88 |
<downloadableIns>
|
|
|
89 |
<downloadableIn>com.elasticgrid.tools.cli.jabber</downloadableIn>
|
|
|
90 |
</downloadableIns>
|
|
|
91 |
<downloadableTopclasses>
|
|
|
92 |
<downloadableTopclass>com.elasticgrid.tools.cli.jabber.JabberCLI</downloadableTopclass>
|
|
|
93 |
</downloadableTopclasses>
|
|
|
94 |
</configuration>
|
|
|
95 |
</plugin>
|
|
|
96 |
<plugin>
|
|
|
97 |
<groupId>org.apache.maven.plugins</groupId>
|
|
|
98 |
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
99 |
<configuration>
|
|
|
100 |
<source>1.5</source>
|
|
|
101 |
<target>1.5</target>
|
|
|
102 |
<optimize>true</optimize>
|
|
|
103 |
<encoding>UTF-8</encoding>
|
|
|
104 |
</configuration>
|
|
|
105 |
</plugin>
|
|
|
106 |
</plugins>
|
|
|
107 |
</build>
|
|
|
108 |
|
|
|
109 |
</project>
|