chat/pom.xml
author Jaroslav Tulach <jtulach@netbeans.org>
Mon, 13 Jan 2014 10:28:37 +0100
branchNbHtml4J
changeset 60 f0ab62f65322
parent 57 9984b9f7d8c6
child 238 a0f15cb8c730
permissions -rw-r--r--
Switching to stable version 0.7 of org.netbeans.html's APIs
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>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
  <groupId>org.apidesign.html</groupId>
jtulach@13
    10
  <artifactId>chat-demo</artifactId>
jtulach@13
    11
  <version>1.0-SNAPSHOT</version>
jtulach@13
    12
  <packaging>pom</packaging>
jtulach@13
    13
  <name>Chat Server with Jersey and Bck2Brwsr</name>
jtulach@13
    14
  <properties>
jtulach@13
    15
      <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
jtulach@13
    16
      <bck2brwsr.obfuscationlevel>MINIMAL</bck2brwsr.obfuscationlevel>
jtulach@13
    17
  </properties>
jtulach@13
    18
  <modules>
jtulach@13
    19
    <module>model</module>
jtulach@13
    20
    <module>client</module>
jtulach@13
    21
    <module>server</module>
jtulach@13
    22
  </modules>
jtulach@13
    23
  <build>
jtulach@13
    24
      <pluginManagement>
jtulach@13
    25
          <plugins>
jtulach@13
    26
              <plugin>
jtulach@13
    27
                  <groupId>org.apache.maven.plugins</groupId>
jtulach@13
    28
                  <artifactId>maven-compiler-plugin</artifactId>
jtulach@13
    29
                  <version>2.3.2</version>
jtulach@13
    30
                  <configuration>
jtulach@13
    31
                      <source>1.7</source>
jtulach@13
    32
                      <target>1.7</target>
jtulach@13
    33
                  </configuration>
jtulach@13
    34
              </plugin>
jtulach@13
    35
          </plugins>
jtulach@13
    36
      </pluginManagement>
jtulach@13
    37
  </build>
jtulach@13
    38
</project>