chat/server/pom.xml
changeset 226 40acb3267711
parent 144 f784d803f065
child 227 fd26342cf23d
     1.1 --- a/chat/server/pom.xml	Tue May 20 06:05:56 2014 +0200
     1.2 +++ b/chat/server/pom.xml	Tue Nov 11 06:58:21 2014 +0100
     1.3 @@ -70,7 +70,7 @@
     1.4      <dependency>
     1.5        <groupId>org.glassfish.jersey.media</groupId>
     1.6        <artifactId>html-json</artifactId>
     1.7 -      <version>2.6</version>
     1.8 +      <version>${jersey.version}</version>
     1.9        <scope>runtime</scope>
    1.10      </dependency>
    1.11      <dependency>
    1.12 @@ -82,41 +82,35 @@
    1.13      <dependency>
    1.14        <groupId>org.glassfish.jersey.connectors</groupId>
    1.15        <artifactId>jersey-grizzly-connector</artifactId>
    1.16 -      <version>2.4.1</version>
    1.17 +      <version>${jersey.version}</version>
    1.18      </dependency>
    1.19      <dependency>
    1.20        <groupId>org.glassfish.jersey.containers</groupId>
    1.21        <artifactId>jersey-container-grizzly2-http</artifactId>
    1.22 -      <version>2.6</version>
    1.23 +      <version>${jersey.version}</version>
    1.24        <type>jar</type>
    1.25      </dependency>
    1.26      <dependency>
    1.27        <groupId>org.glassfish.grizzly</groupId>
    1.28        <artifactId>grizzly-http-server</artifactId>
    1.29 -      <version>2.3.8</version>
    1.30 +      <version>${grizzly.version}</version>
    1.31      </dependency>
    1.32      <dependency>
    1.33        <groupId>org.apidesign.html.demo</groupId>
    1.34        <artifactId>chat-model</artifactId>
    1.35 -      <version>1.0-SNAPSHOT</version>
    1.36 +      <version>${project.version}</version>
    1.37        <type>jar</type>
    1.38      </dependency>
    1.39      <dependency>
    1.40 -      <artifactId>javax.ws.rs-api</artifactId>
    1.41 -      <groupId>javax.ws.rs</groupId>
    1.42 -      <type>jar</type>
    1.43 -      <version>2.0</version>
    1.44 -    </dependency>
    1.45 -    <dependency>
    1.46        <groupId>org.glassfish.jersey.core</groupId>
    1.47        <artifactId>jersey-common</artifactId>
    1.48 -      <version>2.6</version>
    1.49 +      <version>${jersey.version}</version>
    1.50        <scope>runtime</scope>
    1.51      </dependency>
    1.52      <dependency>
    1.53        <groupId>org.glassfish.grizzly</groupId>
    1.54        <artifactId>grizzly-framework</artifactId>
    1.55 -      <version>2.3.8</version>
    1.56 +      <version>${grizzly.version}</version>
    1.57        <scope>runtime</scope>
    1.58      </dependency>
    1.59      <dependency>
    1.60 @@ -125,6 +119,36 @@
    1.61        <type>jar</type>
    1.62        <version>${net.java.html.version}</version>
    1.63        <scope>runtime</scope>
    1.64 +      <exclusions>
    1.65 +          <exclusion>
    1.66 +              <groupId>org.glassfish.tyrus</groupId>
    1.67 +              <artifactId>tyrus-container-grizzly-client</artifactId>
    1.68 +          </exclusion>
    1.69 +          <exclusion>
    1.70 +              <groupId>org.glassfish.tyrus</groupId>
    1.71 +              <artifactId>tyrus-client</artifactId>
    1.72 +          </exclusion>
    1.73 +          <exclusion>
    1.74 +              <groupId>javax.websocket</groupId>
    1.75 +              <artifactId>javax.websocket-api</artifactId>
    1.76 +          </exclusion>
    1.77 +      </exclusions>
    1.78      </dependency>
    1.79 +    <dependency>
    1.80 +      <groupId>org.glassfish.tyrus</groupId>
    1.81 +      <artifactId>tyrus-container-grizzly-client</artifactId>
    1.82 +      <version>1.8.3</version>
    1.83 +      <scope>runtime</scope>
    1.84 +      <exclusions>
    1.85 +          <exclusion>
    1.86 +              <groupId>org.glassfish.grizzly</groupId>
    1.87 +              <artifactId>grizzly-http-server</artifactId>
    1.88 +          </exclusion>
    1.89 +          <exclusion>
    1.90 +              <groupId>org.glassfish.grizzly</groupId>
    1.91 +              <artifactId>grizzly-framework</artifactId>
    1.92 +          </exclusion>
    1.93 +      </exclusions>  
    1.94 +    </dependency>    
    1.95    </dependencies>
    1.96  </project>