chat/client/pom.xml
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Fri, 31 Oct 2014 23:02:25 +0100
changeset 218 52badacce2cc
parent 144 f784d803f065
permissions -rw-r--r--
Compiles with most recent versions of bck2brwsr and co.
jtulach@13
     1
<?xml version="1.0" encoding="UTF-8"?>
jtulach@13
     2
<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">
jtulach@13
     3
  <modelVersion>4.0.0</modelVersion>
jtulach@13
     4
  <parent>
jtulach@13
     5
    <artifactId>chat-demo</artifactId>
jtulach@13
     6
    <groupId>org.apidesign.html</groupId>
jtulach@13
     7
    <version>1.0-SNAPSHOT</version>
jtulach@13
     8
  </parent>
jtulach@13
     9
jtulach@13
    10
  <groupId>org.apidesign.html.demo</groupId>
jtulach@13
    11
  <artifactId>chat-client</artifactId>
jtulach@13
    12
  <version>1.0-SNAPSHOT</version>
jtulach@13
    13
  <packaging>jar</packaging>
jtulach@13
    14
jtulach@13
    15
  <name>Chat Client Bck2Brwsr</name>
jtulach@13
    16
jtulach@13
    17
  <repositories>
jtulach@13
    18
      <repository>
jtulach@13
    19
          <id>java.net</id>
jtulach@13
    20
          <name>Java.net</name>
jtulach@13
    21
          <url>https://maven.java.net/content/repositories/releases/</url>
jtulach@13
    22
          <snapshots>
jtulach@13
    23
          </snapshots>
jtulach@13
    24
      </repository>
jtulach@13
    25
      <repository>
jtulach@13
    26
          <id>netbeans</id>
jtulach@13
    27
          <name>NetBeans</name>
jtulach@13
    28
          <url>http://bits.netbeans.org/maven2/</url>
jtulach@13
    29
      </repository>
jtulach@13
    30
  </repositories>
jtulach@13
    31
  <pluginRepositories>
jtulach@13
    32
      <pluginRepository>
jtulach@13
    33
          <id>java.net</id>
jtulach@13
    34
          <name>Java.net</name>
jtulach@13
    35
          <url>https://maven.java.net/content/repositories/releases/</url>
jtulach@13
    36
          <snapshots>
jtulach@13
    37
          </snapshots>
jtulach@13
    38
      </pluginRepository>
jtulach@13
    39
  </pluginRepositories>
jtulach@13
    40
jtulach@13
    41
  <properties>
jtulach@13
    42
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
jtulach@13
    43
  </properties>
jtulach@13
    44
  <build>
jtulach@13
    45
      <plugins>
jtulach@13
    46
         <plugin>
jtulach@13
    47
             <groupId>org.apache.maven.plugins</groupId>
jtulach@13
    48
             <artifactId>maven-jar-plugin</artifactId>
jtulach@13
    49
             <version>2.4</version>
jtulach@13
    50
             <configuration>
jtulach@13
    51
                 <archive>
jtulach@13
    52
                     <manifest>
jtulach@13
    53
                         <addClasspath>true</addClasspath>
jtulach@13
    54
                         <classpathPrefix>lib/</classpathPrefix>
jtulach@13
    55
                     </manifest>
jtulach@13
    56
                 </archive>
jtulach@13
    57
             </configuration>
jtulach@13
    58
         </plugin>
jtulach@13
    59
         <plugin>
jtulach@13
    60
             <artifactId>maven-assembly-plugin</artifactId>
jtulach@13
    61
             <version>2.4</version>
jtulach@13
    62
             <executions>
jtulach@13
    63
                 <execution>
jtulach@13
    64
                     <id>distro-assembly</id>
jtulach@13
    65
                     <phase>package</phase>
jtulach@13
    66
                     <goals>
jtulach@13
    67
                         <goal>single</goal>
jtulach@13
    68
                     </goals>
jtulach@13
    69
                     <configuration>
jtulach@13
    70
                         <descriptors>
jtulach@13
    71
                             <descriptor>bck2brwsr-assembly.xml</descriptor>
jtulach@13
    72
                         </descriptors>
jtulach@13
    73
                     </configuration>
jtulach@13
    74
                 </execution>
jtulach@13
    75
             </executions>                
jtulach@13
    76
         </plugin>      
jtulach@13
    77
      </plugins>
jtulach@13
    78
  </build>
jtulach@13
    79
jtulach@13
    80
  <dependencies>
jtulach@13
    81
    <dependency>
jtulach@57
    82
      <groupId>org.netbeans.html</groupId>
jtulach@13
    83
      <artifactId>net.java.html.json</artifactId>
jtulach@13
    84
      <version>${net.java.html.version}</version>
jtulach@13
    85
      <type>jar</type>
jtulach@13
    86
    </dependency>
jtulach@13
    87
    <dependency>
jtulach@13
    88
      <groupId>${project.groupId}</groupId>
jtulach@13
    89
      <artifactId>chat-model</artifactId>
jtulach@13
    90
      <version>${project.version}</version>
jtulach@13
    91
    </dependency>
jtulach@13
    92
    <dependency>
jtulach@13
    93
      <groupId>org.testng</groupId>
jtulach@13
    94
      <artifactId>testng</artifactId>
jtulach@13
    95
      <version>6.8</version>
jtulach@13
    96
      <scope>test</scope>
jtulach@13
    97
      <type>jar</type>
jtulach@13
    98
    </dependency>
jtulach@13
    99
    <dependency>
jtulach@13
   100
        <groupId>org.apidesign.bck2brwsr</groupId>
jtulach@13
   101
        <artifactId>emul</artifactId>
jtulach@13
   102
        <version>${bck2brwsr.version}</version>
jtulach@13
   103
        <classifier>rt</classifier>
jtulach@13
   104
        <scope>runtime</scope>
jtulach@13
   105
    </dependency>
jtulach@13
   106
    <dependency>
jtulach@13
   107
        <groupId>org.apidesign.bck2brwsr</groupId>
jtulach@13
   108
        <artifactId>ko-bck2brwsr</artifactId>
jtulach@57
   109
        <version>${bck2brwsr.version}</version>
jtulach@13
   110
        <scope>runtime</scope>
jtulach@13
   111
    </dependency>
jtulach@144
   112
    <dependency>
jtulach@144
   113
      <artifactId>ko4j</artifactId>
jtulach@144
   114
      <groupId>org.netbeans.html</groupId>
jtulach@144
   115
      <type>jar</type>
jtulach@144
   116
      <version>${net.java.html.version}</version>
jtulach@144
   117
      <scope>runtime</scope>
jtulach@144
   118
    </dependency>
jtulach@144
   119
    <dependency>
jtulach@144
   120
      <artifactId>net.java.html.boot</artifactId>
jtulach@144
   121
      <groupId>org.netbeans.html</groupId>
jtulach@144
   122
      <type>jar</type>
jtulach@144
   123
      <version>${net.java.html.version}</version>
jtulach@144
   124
      <scope>runtime</scope>
jtulach@144
   125
    </dependency>
jtulach@13
   126
  </dependencies>
jtulach@13
   127
</project>