serverside/pom.xml
author Jaroslav Tulach <jtulach@netbeans.org>
Sat, 04 May 2013 07:21:05 +0200
changeset 5 f0a52c72ef74
child 6 ecb1ef414295
permissions -rw-r--r--
Skeleton of client part of the chat application
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@5
    18
    <bck2brwsr.version>0.7</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@5
    25
              <groupId>org.apidesign.bck2brwsr</groupId>
jtulach@5
    26
              <artifactId>bck2brwsr-maven-plugin</artifactId>
jtulach@5
    27
              <version>${bck2brwsr.version}</version>
jtulach@5
    28
              <executions>
jtulach@5
    29
                  <execution>
jtulach@5
    30
                      <goals>
jtulach@5
    31
                          <goal>brwsr</goal>
jtulach@5
    32
                      </goals>
jtulach@5
    33
                  </execution>
jtulach@5
    34
              </executions>
jtulach@5
    35
              <configuration>
jtulach@5
    36
                  <startpage>${brwsr.startpage}</startpage>
jtulach@5
    37
                  <launcher>bck2brwsr</launcher>
jtulach@5
    38
              </configuration>
jtulach@5
    39
          </plugin>
jtulach@5
    40
         <plugin>
jtulach@5
    41
            <groupId>org.apache.maven.plugins</groupId>
jtulach@5
    42
            <artifactId>maven-compiler-plugin</artifactId>
jtulach@5
    43
            <version>2.3.2</version>
jtulach@5
    44
            <configuration>
jtulach@5
    45
               <source>1.7</source>
jtulach@5
    46
               <target>1.7</target>
jtulach@5
    47
            </configuration>
jtulach@5
    48
         </plugin>
jtulach@5
    49
      </plugins>
jtulach@5
    50
  </build>
jtulach@5
    51
  <dependencies>
jtulach@5
    52
    <dependency>
jtulach@5
    53
      <groupId>org.apidesign.html</groupId>
jtulach@5
    54
      <artifactId>net.java.html.json</artifactId>
jtulach@5
    55
      <version>${net.java.html.version}</version>
jtulach@5
    56
      <type>jar</type>
jtulach@5
    57
    </dependency>
jtulach@5
    58
    <dependency>
jtulach@5
    59
      <groupId>org.apidesign.html</groupId>
jtulach@5
    60
      <artifactId>ko-bck2brwsr</artifactId>
jtulach@5
    61
      <version>${net.java.html.version}</version>
jtulach@5
    62
      <scope>runtime</scope>
jtulach@5
    63
    </dependency>
jtulach@5
    64
    <dependency>
jtulach@5
    65
      <groupId>${project.groupId}</groupId>
jtulach@5
    66
      <artifactId>launcher.http</artifactId>
jtulach@5
    67
      <version>${bck2brwsr.version}</version>
jtulach@5
    68
      <scope>runtime</scope>
jtulach@5
    69
    </dependency>
jtulach@5
    70
    <dependency>
jtulach@5
    71
      <groupId>${project.groupId}</groupId>
jtulach@5
    72
      <artifactId>emul</artifactId>
jtulach@5
    73
      <version>${bck2brwsr.version}</version>
jtulach@5
    74
      <classifier>rt</classifier>
jtulach@5
    75
      <scope>runtime</scope>
jtulach@5
    76
    </dependency>
jtulach@5
    77
    <dependency>
jtulach@5
    78
      <groupId>org.testng</groupId>
jtulach@5
    79
      <artifactId>testng</artifactId>
jtulach@5
    80
      <version>6.5.2</version>
jtulach@5
    81
      <scope>test</scope>
jtulach@5
    82
    </dependency>
jtulach@5
    83
  </dependencies>
jtulach@5
    84
</project>