chat/pom.xml
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Fri, 22 Apr 2016 05:56:47 +0200
branchNewChat
changeset 238 a0f15cb8c730
parent 60 f0ab62f65322
permissions -rw-r--r--
Switching to newer version of the libraries
     1 <?xml version="1.0"?>
     2 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
     3   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
     4     <modelVersion>4.0.0</modelVersion>
     5 
     6   <groupId>org.apidesign.demo</groupId>
     7   <artifactId>chat-pom</artifactId>
     8   <version>1.0-SNAPSHOT</version>
     9   <parent>
    10       <artifactId>demo</artifactId>
    11       <groupId>org.apidesign.html</groupId>
    12       <version>1.0-SNAPSHOT</version>
    13   </parent>
    14   <packaging>pom</packaging>
    15 
    16   <name>chat</name>
    17 
    18     <modules>
    19         <module>shared</module>
    20         <module>client</module>
    21         <module>client-web</module>
    22         <module>client-android</module>
    23         <module>client-ios</module>
    24         <module>server</module>
    25         <module>js</module>
    26     </modules>
    27     <properties>
    28         <net.java.html.version>1.3</net.java.html.version>
    29         <bck2brwsr.version>0.16</bck2brwsr.version>
    30         <bck2brwsr.obfuscationlevel>FULL</bck2brwsr.obfuscationlevel>
    31         <jersey.version>2.13</jersey.version>
    32         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    33     </properties>
    34     <dependencyManagement>
    35         <dependencies>
    36             <dependency>
    37                 <groupId>org.testng</groupId>
    38                 <artifactId>testng</artifactId>
    39                 <scope>test</scope>
    40                 <version>6.8.8</version>
    41             </dependency>
    42         </dependencies>
    43     </dependencyManagement>
    44     <build>
    45         <plugins>
    46             <!--
    47             <plugin>
    48                 <groupId>org.apache.maven.plugins</groupId>
    49                 <artifactId>maven-enforcer-plugin</artifactId>
    50                 <version>1.3.1</version>
    51                 <executions>
    52                     <execution>
    53                         <id>enforce-versions</id>
    54                         <goals>
    55                             <goal>enforce</goal>
    56                         </goals>
    57                         <configuration>
    58                             <rules>
    59                                 <DependencyConvergence/>
    60                             </rules>
    61                         </configuration>
    62                     </execution>
    63                 </executions>              
    64             </plugin>
    65             -->
    66         </plugins>
    67     </build>
    68 </project>