chat/pom.xml
changeset 13 fd9a16bbfd0e
child 15 91219d000cb8
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/chat/pom.xml	Mon May 06 17:40:19 2013 +0200
     1.3 @@ -0,0 +1,40 @@
     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 +  <parent>
     1.8 +    <artifactId>demo</artifactId>
     1.9 +    <groupId>org.apidesign.html</groupId>
    1.10 +    <version>1.0-SNAPSHOT</version>
    1.11 +  </parent>
    1.12 +  <groupId>org.apidesign.html</groupId>
    1.13 +  <artifactId>chat-demo</artifactId>
    1.14 +  <version>1.0-SNAPSHOT</version>
    1.15 +  <packaging>pom</packaging>
    1.16 +  <name>Chat Server with Jersey and Bck2Brwsr</name>
    1.17 +  <properties>
    1.18 +      <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    1.19 +      <net.java.html.version>0.2</net.java.html.version>
    1.20 +      <bck2brwsr.version>0.7</bck2brwsr.version>
    1.21 +      <bck2brwsr.obfuscationlevel>MINIMAL</bck2brwsr.obfuscationlevel>
    1.22 +  </properties>
    1.23 +  <modules>
    1.24 +    <module>model</module>
    1.25 +    <module>client</module>
    1.26 +    <module>server</module>
    1.27 +  </modules>
    1.28 +  <build>
    1.29 +      <pluginManagement>
    1.30 +          <plugins>
    1.31 +              <plugin>
    1.32 +                  <groupId>org.apache.maven.plugins</groupId>
    1.33 +                  <artifactId>maven-compiler-plugin</artifactId>
    1.34 +                  <version>2.3.2</version>
    1.35 +                  <configuration>
    1.36 +                      <source>1.7</source>
    1.37 +                      <target>1.7</target>
    1.38 +                  </configuration>
    1.39 +              </plugin>
    1.40 +          </plugins>
    1.41 +      </pluginManagement>
    1.42 +  </build>
    1.43 +</project>
    1.44 \ No newline at end of file