chat/pom.xml
author Jaroslav Tulach <jtulach@netbeans.org>
Thu, 09 May 2013 22:41:43 +0200
changeset 15 91219d000cb8
parent 13 fd9a16bbfd0e
child 18 c0d05ac90baa
permissions -rw-r--r--
Uses POST method to send new messages to the server
     1 <?xml version="1.0" encoding="UTF-8"?>
     2 <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">
     3   <modelVersion>4.0.0</modelVersion>
     4   <parent>
     5     <artifactId>demo</artifactId>
     6     <groupId>org.apidesign.html</groupId>
     7     <version>1.0-SNAPSHOT</version>
     8   </parent>
     9   <groupId>org.apidesign.html</groupId>
    10   <artifactId>chat-demo</artifactId>
    11   <version>1.0-SNAPSHOT</version>
    12   <packaging>pom</packaging>
    13   <name>Chat Server with Jersey and Bck2Brwsr</name>
    14   <properties>
    15       <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    16       <net.java.html.version>0.3-SNAPSHOT</net.java.html.version>
    17       <bck2brwsr.version>0.7</bck2brwsr.version>
    18       <bck2brwsr.obfuscationlevel>MINIMAL</bck2brwsr.obfuscationlevel>
    19   </properties>
    20   <modules>
    21     <module>model</module>
    22     <module>client</module>
    23     <module>server</module>
    24   </modules>
    25   <build>
    26       <pluginManagement>
    27           <plugins>
    28               <plugin>
    29                   <groupId>org.apache.maven.plugins</groupId>
    30                   <artifactId>maven-compiler-plugin</artifactId>
    31                   <version>2.3.2</version>
    32                   <configuration>
    33                       <source>1.7</source>
    34                       <target>1.7</target>
    35                   </configuration>
    36               </plugin>
    37           </plugins>
    38       </pluginManagement>
    39   </build>
    40 </project>