OW2 Consortium elastic-grid

Rev

Rev 511 | Blame | Compare with Previous | Last modification | View Log | RSS feed

<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">
    <parent>
        <groupId>com.elasticgrid</groupId>
        <artifactId>elastic-grid-modules</artifactId>
        <version>0.9.3</version>
    </parent>
    <modelVersion>4.0.0</modelVersion>
    <artifactId>jabber-cli</artifactId>
    <packaging>classdepandjar</packaging>
    <name>Modules :: Jabber CLI</name>

    <dependencies>

        <dependency>
            <groupId>com.elasticgrid</groupId>
            <artifactId>elastic-grid-core</artifactId>
            <version>${pom.version}</version>
        </dependency>

        <dependency>
            <groupId>com.elasticgrid</groupId>
            <artifactId>elastic-grid-cli</artifactId>
            <version>${pom.version}</version>
        </dependency>

        <dependency>
            <groupId>jivesoftware</groupId>
            <artifactId>smack</artifactId>
            <version>3.0.4</version>
        </dependency>

        <dependency>
            <groupId>jivesoftware</groupId>
            <artifactId>smackx</artifactId>
            <version>3.0.4</version>
        </dependency>

        <dependency>
            <groupId>org.rioproject</groupId>
            <artifactId>rio-cli</artifactId>
        </dependency>

        <dependency>
            <groupId>org.rioproject</groupId>
            <artifactId>rio</artifactId>
        </dependency>
        
    </dependencies>

    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-surefire-plugin</artifactId>
                <version>2.4.1</version>
                <configuration>
                    <forkMode>never</forkMode>
                    <excludedGroups>qa</excludedGroups>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-rio-plugin</artifactId>
                <version>4.0-M3</version>
                <extensions>true</extensions>
                <configuration>
                    <createJars>
                        <createJar>
                            <ins>
                                <in>com.elasticgrid.tools.cli.jabber</in>
                            </ins>
                            <topclasses>
                                <topclass>com.elasticgrid.tools.cli.jabber.JabberCLIJSB</topclass>
                            </topclasses>
                        </createJar>
                        <createJar>
                            <classifier>dl</classifier>
                            <ins>
                                <in>com.elasticgrid.tools.cli.jabber</in>
                            </ins>
                            <topclasses>
                                <topclass>com.elasticgrid.tools.cli.jabber.JabberCLI</topclass>
                            </topclasses>
                        </createJar>
                    </createJars>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <configuration>
                    <source>1.5</source>
                    <target>1.5</target>
                    <optimize>true</optimize>
                    <encoding>UTF-8</encoding>
                </configuration>
            </plugin>
        </plugins>
    </build>

</project>