chat/pom.xml
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Mon, 23 Feb 2015 10:34:39 +0100
branchteavm
changeset 233 908708015f61
parent 57 9984b9f7d8c6
child 238 a0f15cb8c730
permissions -rw-r--r--
Simplifying execution of TeaVM version. Use: mvn -Pteabrwsr clean package bck2brwsr:brwsr
     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       <bck2brwsr.obfuscationlevel>MINIMAL</bck2brwsr.obfuscationlevel>
    17   </properties>
    18   <modules>
    19     <module>model</module>
    20     <module>client</module>
    21     <module>server</module>
    22   </modules>
    23   <build>
    24       <pluginManagement>
    25           <plugins>
    26               <plugin>
    27                   <groupId>org.apache.maven.plugins</groupId>
    28                   <artifactId>maven-compiler-plugin</artifactId>
    29                   <version>2.3.2</version>
    30                   <configuration>
    31                       <source>1.7</source>
    32                       <target>1.7</target>
    33                   </configuration>
    34               </plugin>
    35           </plugins>
    36       </pluginManagement>
    37   </build>
    38 </project>