chat/server/pom.xml
changeset 13 fd9a16bbfd0e
parent 7 bf3a8e6dd84a
child 19 3b444d059b6e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/chat/server/pom.xml	Mon May 06 17:40:19 2013 +0200
     1.3 @@ -0,0 +1,105 @@
     1.4 +<?xml version="1.0"?>
     1.5 +<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
     1.6 +    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
     1.7 +  <modelVersion>4.0.0</modelVersion>
     1.8 +  <parent>
     1.9 +    <groupId>org.apidesign.html</groupId>
    1.10 +    <artifactId>chat-demo</artifactId>
    1.11 +    <version>1.0-SNAPSHOT</version>
    1.12 +  </parent>
    1.13 +  <groupId>org.apidesign.html.demo</groupId>
    1.14 +  <artifactId>chat-server</artifactId>
    1.15 +  <version>1.0-SNAPSHOT</version>
    1.16 +  <name>Chat Server Using @Model</name>
    1.17 +  <url>http://maven.apache.org</url>
    1.18 +  <build>
    1.19 +      <plugins>
    1.20 +          <plugin>
    1.21 +              <groupId>org.codehaus.mojo</groupId>
    1.22 +              <artifactId>exec-maven-plugin</artifactId>
    1.23 +              <version>1.2.1</version>
    1.24 +              <configuration>
    1.25 +                  <mainClass>org.apidesign.bck2brwsr.demo.chatserver.impl.Main</mainClass>
    1.26 +              </configuration>
    1.27 +          </plugin>
    1.28 +         <plugin>
    1.29 +            <groupId>org.apache.maven.plugins</groupId>
    1.30 +            <artifactId>maven-compiler-plugin</artifactId>
    1.31 +            <version>2.3.2</version>
    1.32 +            <configuration>
    1.33 +               <source>1.7</source>
    1.34 +               <target>1.7</target>
    1.35 +            </configuration>
    1.36 +         </plugin>
    1.37 +         <plugin>
    1.38 +             <groupId>org.apache.maven.plugins</groupId>
    1.39 +             <artifactId>maven-dependency-plugin</artifactId>
    1.40 +             <version>2.7</version>
    1.41 +             <executions>
    1.42 +                 <execution>
    1.43 +                    <phase>process-resources</phase>
    1.44 +                    <id>unpack-client-code</id>
    1.45 +                    <goals>
    1.46 +                        <goal>unpack</goal>
    1.47 +                    </goals>
    1.48 +                    <configuration>
    1.49 +                        <artifactItems>
    1.50 +                            <artifactItem>
    1.51 +                                <groupId>org.apidesign.html.demo</groupId>
    1.52 +                                <artifactId>chat-client</artifactId>
    1.53 +                                <version>1.0-SNAPSHOT</version>
    1.54 +                                <type>zip</type>
    1.55 +                                <classifier>bck2brwsr</classifier>
    1.56 +                            </artifactItem>
    1.57 +                        </artifactItems>
    1.58 +                        <outputDirectory>${project.build.directory}/classes/org/apidesign/bck2brwsr/demo/chatserver/impl/</outputDirectory>
    1.59 +                    </configuration>
    1.60 +                 </execution>
    1.61 +             </executions>
    1.62 +             
    1.63 +         </plugin>
    1.64 +      </plugins>
    1.65 +  </build>
    1.66 +  <dependencies>
    1.67 +    <dependency>
    1.68 +      <groupId>org.apidesign.html</groupId>
    1.69 +      <artifactId>net.java.html.json</artifactId>
    1.70 +      <version>${net.java.html.version}</version>
    1.71 +      <type>jar</type>
    1.72 +    </dependency>
    1.73 +    <dependency>
    1.74 +      <groupId>org.glassfish.jersey.incubator</groupId>
    1.75 +      <artifactId>html-json</artifactId>
    1.76 +      <version>0.1-SNAPSHOT</version>
    1.77 +      <scope>runtime</scope>
    1.78 +    </dependency>
    1.79 +    <dependency>
    1.80 +      <groupId>org.testng</groupId>
    1.81 +      <artifactId>testng</artifactId>
    1.82 +      <version>6.5.2</version>
    1.83 +      <scope>test</scope>
    1.84 +    </dependency>
    1.85 +    <dependency>
    1.86 +      <groupId>org.glassfish.jersey.connectors</groupId>
    1.87 +      <artifactId>jersey-grizzly-connector</artifactId>
    1.88 +      <version>2.0-SNAPSHOT</version>
    1.89 +    </dependency>
    1.90 +    <dependency>
    1.91 +      <groupId>org.glassfish.jersey.containers</groupId>
    1.92 +      <artifactId>jersey-container-grizzly2-http</artifactId>
    1.93 +      <version>2.0-SNAPSHOT</version>
    1.94 +      <type>jar</type>
    1.95 +    </dependency>
    1.96 +    <dependency>
    1.97 +      <groupId>org.glassfish.grizzly</groupId>
    1.98 +      <artifactId>grizzly-http-server</artifactId>
    1.99 +      <version>2.3.1</version>
   1.100 +    </dependency>
   1.101 +    <dependency>
   1.102 +      <groupId>org.apidesign.html.demo</groupId>
   1.103 +      <artifactId>chat-model</artifactId>
   1.104 +      <version>1.0-SNAPSHOT</version>
   1.105 +      <type>jar</type>
   1.106 +    </dependency>
   1.107 +  </dependencies>
   1.108 +</project>