serverside/pom.xml
author Jaroslav Tulach <jtulach@netbeans.org>
Sun, 05 May 2013 16:39:33 +0200
changeset 7 bf3a8e6dd84a
parent 6 ecb1ef414295
permissions -rw-r--r--
Properly ordering the Jersey and Bck2Brwsr context providers. Bck2Brwsr has to be first.
jtulach@5
     1
<?xml version="1.0"?>
jtulach@5
     2
<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"
jtulach@5
     3
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
jtulach@5
     4
  <modelVersion>4.0.0</modelVersion>
jtulach@5
     5
  <parent>
jtulach@5
     6
    <groupId>org.apidesign.html</groupId>
jtulach@5
     7
    <artifactId>demo</artifactId>
jtulach@5
     8
    <version>1.0-SNAPSHOT</version>
jtulach@5
     9
  </parent>
jtulach@5
    10
  <groupId>org.apidesign.bck2brwsr</groupId>
jtulach@5
    11
  <artifactId>demo-serverside</artifactId>
jtulach@5
    12
  <version>1.0-SNAPSHOT</version>
jtulach@5
    13
  <name>Bck2Brwsr and Bck2Server</name>
jtulach@5
    14
  <url>http://maven.apache.org</url>
jtulach@5
    15
  <properties>
jtulach@5
    16
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
jtulach@5
    17
    <net.java.html.version>0.2</net.java.html.version>
jtulach@6
    18
    <bck2brwsr.version>0.8-SNAPSHOT</bck2brwsr.version>
jtulach@5
    19
    <bck2brwsr.obfuscationlevel>MINIMAL</bck2brwsr.obfuscationlevel>
jtulach@5
    20
    <brwsr.startpage>org/apidesign/bck2brwsr/demo/serverside/chat.html</brwsr.startpage>
jtulach@5
    21
  </properties>
jtulach@5
    22
  <build>
jtulach@5
    23
      <plugins>
jtulach@5
    24
          <plugin>
jtulach@6
    25
              <groupId>org.codehaus.mojo</groupId>
jtulach@6
    26
              <artifactId>exec-maven-plugin</artifactId>
jtulach@6
    27
              <version>1.2.1</version>
jtulach@5
    28
              <configuration>
jtulach@6
    29
                  <mainClass>org.apidesign.bck2brwsr.demo.serverside.ChatServerResource</mainClass>
jtulach@5
    30
              </configuration>
jtulach@5
    31
          </plugin>
jtulach@5
    32
         <plugin>
jtulach@5
    33
            <groupId>org.apache.maven.plugins</groupId>
jtulach@5
    34
            <artifactId>maven-compiler-plugin</artifactId>
jtulach@5
    35
            <version>2.3.2</version>
jtulach@5
    36
            <configuration>
jtulach@5
    37
               <source>1.7</source>
jtulach@5
    38
               <target>1.7</target>
jtulach@5
    39
            </configuration>
jtulach@5
    40
         </plugin>
jtulach@5
    41
      </plugins>
jtulach@5
    42
  </build>
jtulach@5
    43
  <dependencies>
jtulach@5
    44
    <dependency>
jtulach@5
    45
      <groupId>org.apidesign.html</groupId>
jtulach@5
    46
      <artifactId>net.java.html.json</artifactId>
jtulach@5
    47
      <version>${net.java.html.version}</version>
jtulach@5
    48
      <type>jar</type>
jtulach@5
    49
    </dependency>
jtulach@5
    50
    <dependency>
jtulach@7
    51
      <groupId>org.glassfish.jersey.incubator</groupId>
jtulach@7
    52
      <artifactId>html-json</artifactId>
jtulach@7
    53
      <version>0.1-SNAPSHOT</version>
jtulach@7
    54
      <scope>runtime</scope>
jtulach@7
    55
    </dependency>
jtulach@7
    56
    <dependency>
jtulach@5
    57
      <groupId>org.apidesign.html</groupId>
jtulach@5
    58
      <artifactId>ko-bck2brwsr</artifactId>
jtulach@5
    59
      <version>${net.java.html.version}</version>
jtulach@5
    60
      <scope>runtime</scope>
jtulach@5
    61
    </dependency>
jtulach@5
    62
    <dependency>
jtulach@5
    63
      <groupId>${project.groupId}</groupId>
jtulach@5
    64
      <artifactId>launcher.http</artifactId>
jtulach@5
    65
      <version>${bck2brwsr.version}</version>
jtulach@6
    66
      <scope>compile</scope>
jtulach@6
    67
      <exclusions>
jtulach@6
    68
        <exclusion>
jtulach@6
    69
          <artifactId>grizzly-http-server</artifactId>
jtulach@6
    70
          <groupId>org.glassfish.grizzly</groupId>
jtulach@6
    71
        </exclusion>
jtulach@6
    72
      </exclusions>
jtulach@5
    73
    </dependency>
jtulach@5
    74
    <dependency>
jtulach@5
    75
      <groupId>${project.groupId}</groupId>
jtulach@5
    76
      <artifactId>emul</artifactId>
jtulach@5
    77
      <version>${bck2brwsr.version}</version>
jtulach@5
    78
      <classifier>rt</classifier>
jtulach@5
    79
      <scope>runtime</scope>
jtulach@5
    80
    </dependency>
jtulach@5
    81
    <dependency>
jtulach@5
    82
      <groupId>org.testng</groupId>
jtulach@5
    83
      <artifactId>testng</artifactId>
jtulach@5
    84
      <version>6.5.2</version>
jtulach@5
    85
      <scope>test</scope>
jtulach@5
    86
    </dependency>
jtulach@6
    87
    <dependency>
jtulach@6
    88
      <groupId>org.glassfish.jersey.connectors</groupId>
jtulach@6
    89
      <artifactId>jersey-grizzly-connector</artifactId>
jtulach@6
    90
      <version>2.0-SNAPSHOT</version>
jtulach@6
    91
    </dependency>
jtulach@6
    92
    <dependency>
jtulach@6
    93
      <groupId>org.glassfish.jersey.containers</groupId>
jtulach@6
    94
      <artifactId>jersey-container-grizzly2-http</artifactId>
jtulach@6
    95
      <version>2.0-SNAPSHOT</version>
jtulach@6
    96
      <type>jar</type>
jtulach@6
    97
    </dependency>
jtulach@6
    98
    <dependency>
jtulach@6
    99
      <groupId>org.glassfish.grizzly</groupId>
jtulach@6
   100
      <artifactId>grizzly-http-server</artifactId>
jtulach@6
   101
      <version>2.3.1</version>
jtulach@6
   102
    </dependency>
jtulach@5
   103
  </dependencies>
jtulach@5
   104
</project>