chat/pom.xml
branchNewChat
changeset 238 a0f15cb8c730
parent 60 f0ab62f65322
     1.1 --- a/chat/pom.xml	Mon Jan 13 10:28:37 2014 +0100
     1.2 +++ b/chat/pom.xml	Fri Apr 22 05:56:47 2016 +0200
     1.3 @@ -1,38 +1,68 @@
     1.4 -<?xml version="1.0" encoding="UTF-8"?>
     1.5 -<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/xsd/maven-4.0.0.xsd">
     1.6 -  <modelVersion>4.0.0</modelVersion>
     1.7 +<?xml version="1.0"?>
     1.8 +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
     1.9 +  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    1.10 +    <modelVersion>4.0.0</modelVersion>
    1.11 +
    1.12 +  <groupId>org.apidesign.demo</groupId>
    1.13 +  <artifactId>chat-pom</artifactId>
    1.14 +  <version>1.0-SNAPSHOT</version>
    1.15    <parent>
    1.16 -    <artifactId>demo</artifactId>
    1.17 -    <groupId>org.apidesign.html</groupId>
    1.18 -    <version>1.0-SNAPSHOT</version>
    1.19 +      <artifactId>demo</artifactId>
    1.20 +      <groupId>org.apidesign.html</groupId>
    1.21 +      <version>1.0-SNAPSHOT</version>
    1.22    </parent>
    1.23 -  <groupId>org.apidesign.html</groupId>
    1.24 -  <artifactId>chat-demo</artifactId>
    1.25 -  <version>1.0-SNAPSHOT</version>
    1.26    <packaging>pom</packaging>
    1.27 -  <name>Chat Server with Jersey and Bck2Brwsr</name>
    1.28 -  <properties>
    1.29 -      <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    1.30 -      <bck2brwsr.obfuscationlevel>MINIMAL</bck2brwsr.obfuscationlevel>
    1.31 -  </properties>
    1.32 -  <modules>
    1.33 -    <module>model</module>
    1.34 -    <module>client</module>
    1.35 -    <module>server</module>
    1.36 -  </modules>
    1.37 -  <build>
    1.38 -      <pluginManagement>
    1.39 -          <plugins>
    1.40 -              <plugin>
    1.41 -                  <groupId>org.apache.maven.plugins</groupId>
    1.42 -                  <artifactId>maven-compiler-plugin</artifactId>
    1.43 -                  <version>2.3.2</version>
    1.44 -                  <configuration>
    1.45 -                      <source>1.7</source>
    1.46 -                      <target>1.7</target>
    1.47 -                  </configuration>
    1.48 -              </plugin>
    1.49 -          </plugins>
    1.50 -      </pluginManagement>
    1.51 -  </build>
    1.52 -</project>
    1.53 \ No newline at end of file
    1.54 +
    1.55 +  <name>chat</name>
    1.56 +
    1.57 +    <modules>
    1.58 +        <module>shared</module>
    1.59 +        <module>client</module>
    1.60 +        <module>client-web</module>
    1.61 +        <module>client-android</module>
    1.62 +        <module>client-ios</module>
    1.63 +        <module>server</module>
    1.64 +        <module>js</module>
    1.65 +    </modules>
    1.66 +    <properties>
    1.67 +        <net.java.html.version>1.3</net.java.html.version>
    1.68 +        <bck2brwsr.version>0.16</bck2brwsr.version>
    1.69 +        <bck2brwsr.obfuscationlevel>FULL</bck2brwsr.obfuscationlevel>
    1.70 +        <jersey.version>2.13</jersey.version>
    1.71 +        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    1.72 +    </properties>
    1.73 +    <dependencyManagement>
    1.74 +        <dependencies>
    1.75 +            <dependency>
    1.76 +                <groupId>org.testng</groupId>
    1.77 +                <artifactId>testng</artifactId>
    1.78 +                <scope>test</scope>
    1.79 +                <version>6.8.8</version>
    1.80 +            </dependency>
    1.81 +        </dependencies>
    1.82 +    </dependencyManagement>
    1.83 +    <build>
    1.84 +        <plugins>
    1.85 +            <!--
    1.86 +            <plugin>
    1.87 +                <groupId>org.apache.maven.plugins</groupId>
    1.88 +                <artifactId>maven-enforcer-plugin</artifactId>
    1.89 +                <version>1.3.1</version>
    1.90 +                <executions>
    1.91 +                    <execution>
    1.92 +                        <id>enforce-versions</id>
    1.93 +                        <goals>
    1.94 +                            <goal>enforce</goal>
    1.95 +                        </goals>
    1.96 +                        <configuration>
    1.97 +                            <rules>
    1.98 +                                <DependencyConvergence/>
    1.99 +                            </rules>
   1.100 +                        </configuration>
   1.101 +                    </execution>
   1.102 +                </executions>              
   1.103 +            </plugin>
   1.104 +            -->
   1.105 +        </plugins>
   1.106 +    </build>
   1.107 +</project>