chat/client/pom.xml
changeset 13 fd9a16bbfd0e
child 57 9984b9f7d8c6
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/chat/client/pom.xml	Mon May 06 17:40:19 2013 +0200
     1.3 @@ -0,0 +1,121 @@
     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>chat-demo</artifactId>
     1.9 +    <groupId>org.apidesign.html</groupId>
    1.10 +    <version>1.0-SNAPSHOT</version>
    1.11 +  </parent>
    1.12 +
    1.13 +  <groupId>org.apidesign.html.demo</groupId>
    1.14 +  <artifactId>chat-client</artifactId>
    1.15 +  <version>1.0-SNAPSHOT</version>
    1.16 +  <packaging>jar</packaging>
    1.17 +
    1.18 +  <name>Chat Client Bck2Brwsr</name>
    1.19 +
    1.20 +  <repositories>
    1.21 +      <repository>
    1.22 +          <id>java.net</id>
    1.23 +          <name>Java.net</name>
    1.24 +          <url>https://maven.java.net/content/repositories/releases/</url>
    1.25 +          <snapshots>
    1.26 +          </snapshots>
    1.27 +      </repository>
    1.28 +      <repository>
    1.29 +          <id>netbeans</id>
    1.30 +          <name>NetBeans</name>
    1.31 +          <url>http://bits.netbeans.org/maven2/</url>
    1.32 +      </repository>
    1.33 +  </repositories>
    1.34 +  <pluginRepositories>
    1.35 +      <pluginRepository>
    1.36 +          <id>java.net</id>
    1.37 +          <name>Java.net</name>
    1.38 +          <url>https://maven.java.net/content/repositories/releases/</url>
    1.39 +          <snapshots>
    1.40 +          </snapshots>
    1.41 +      </pluginRepository>
    1.42 +  </pluginRepositories>
    1.43 +
    1.44 +  <properties>
    1.45 +    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    1.46 +  </properties>
    1.47 +  <build>
    1.48 +      <plugins>
    1.49 +         <plugin>
    1.50 +             <groupId>org.apache.maven.plugins</groupId>
    1.51 +             <artifactId>maven-jar-plugin</artifactId>
    1.52 +             <version>2.4</version>
    1.53 +             <configuration>
    1.54 +                 <archive>
    1.55 +                     <manifest>
    1.56 +                         <addClasspath>true</addClasspath>
    1.57 +                         <classpathPrefix>lib/</classpathPrefix>
    1.58 +                     </manifest>
    1.59 +                 </archive>
    1.60 +             </configuration>
    1.61 +         </plugin>
    1.62 +         <plugin>
    1.63 +             <artifactId>maven-assembly-plugin</artifactId>
    1.64 +             <version>2.4</version>
    1.65 +             <executions>
    1.66 +                 <execution>
    1.67 +                     <id>distro-assembly</id>
    1.68 +                     <phase>package</phase>
    1.69 +                     <goals>
    1.70 +                         <goal>single</goal>
    1.71 +                     </goals>
    1.72 +                     <configuration>
    1.73 +                         <descriptors>
    1.74 +                             <descriptor>bck2brwsr-assembly.xml</descriptor>
    1.75 +                         </descriptors>
    1.76 +                     </configuration>
    1.77 +                 </execution>
    1.78 +             </executions>                
    1.79 +         </plugin>      
    1.80 +      </plugins>
    1.81 +  </build>
    1.82 +
    1.83 +  <dependencies>
    1.84 +    <dependency>
    1.85 +      <groupId>org.apidesign.html</groupId>
    1.86 +      <artifactId>net.java.html.json</artifactId>
    1.87 +      <version>${net.java.html.version}</version>
    1.88 +      <type>jar</type>
    1.89 +    </dependency>
    1.90 +    <dependency>
    1.91 +      <groupId>${project.groupId}</groupId>
    1.92 +      <artifactId>chat-model</artifactId>
    1.93 +      <version>${project.version}</version>
    1.94 +    </dependency>
    1.95 +    <dependency>
    1.96 +      <groupId>org.testng</groupId>
    1.97 +      <artifactId>testng</artifactId>
    1.98 +      <version>6.8</version>
    1.99 +      <scope>test</scope>
   1.100 +      <type>jar</type>
   1.101 +    </dependency>
   1.102 +    <dependency>
   1.103 +        <groupId>org.apidesign.bck2brwsr</groupId>
   1.104 +        <artifactId>emul</artifactId>
   1.105 +        <version>${bck2brwsr.version}</version>
   1.106 +        <classifier>rt</classifier>
   1.107 +        <scope>runtime</scope>
   1.108 +    </dependency>
   1.109 +    <dependency>
   1.110 +        <groupId>org.apidesign.bck2brwsr</groupId>
   1.111 +        <artifactId>vm4brwsr</artifactId>
   1.112 +        <version>${bck2brwsr.version}</version>
   1.113 +        <type>zip</type>
   1.114 +        <classifier>js</classifier>
   1.115 +        <scope>provided</scope>
   1.116 +    </dependency>
   1.117 +    <dependency>
   1.118 +        <groupId>org.apidesign.html</groupId>
   1.119 +        <artifactId>ko-bck2brwsr</artifactId>
   1.120 +        <version>${net.java.html.version}</version>
   1.121 +        <scope>runtime</scope>
   1.122 +    </dependency>
   1.123 +  </dependencies>
   1.124 +</project>