chat/js/pom.xml
branchNewChat
changeset 238 a0f15cb8c730
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/chat/js/pom.xml	Fri Apr 22 05:56:47 2016 +0200
     1.3 @@ -0,0 +1,92 @@
     1.4 +<?xml version="1.0" encoding="UTF-8"?>
     1.5 +<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">
     1.6 +  <modelVersion>4.0.0</modelVersion>
     1.7 +  <parent>
     1.8 +      <groupId>org.apidesign.demo</groupId>
     1.9 +      <artifactId>chat-pom</artifactId>
    1.10 +      <version>1.0-SNAPSHOT</version>
    1.11 +  </parent>
    1.12 +
    1.13 +  <groupId>org.apidesign.demo</groupId>
    1.14 +  <artifactId>chat-js</artifactId>
    1.15 +  <version>1.0-SNAPSHOT</version>
    1.16 +  <packaging>bundle</packaging>
    1.17 +
    1.18 +  <name>chat JavaScript Libraries</name>
    1.19 +
    1.20 +  <properties>
    1.21 +    <netbeans.compile.on.save>none</netbeans.compile.on.save>
    1.22 +  </properties>
    1.23 +  <build>
    1.24 +      <plugins>
    1.25 +            <plugin>
    1.26 +                <groupId>org.apache.felix</groupId>
    1.27 +                <artifactId>maven-bundle-plugin</artifactId>
    1.28 +                <version>2.4.0</version>
    1.29 +                <extensions>true</extensions>
    1.30 +                <configuration>
    1.31 +                    <instructions>
    1.32 +                        <Export-Package>org.apidesign.demo.chat.js</Export-Package>
    1.33 +                        <Bundle-SymbolicName>org.apidesign.demo.chat.js</Bundle-SymbolicName>
    1.34 +                    </instructions>
    1.35 +                </configuration>                
    1.36 +            </plugin>
    1.37 +          <plugin>
    1.38 +              <groupId>org.netbeans.html</groupId>
    1.39 +              <artifactId>html4j-maven-plugin</artifactId>
    1.40 +              <version>${net.java.html.version}</version>
    1.41 +              <executions>
    1.42 +                  <execution>
    1.43 +                      <id>js-classes</id>
    1.44 +                      <goals>
    1.45 +                          <goal>process-js-annotations</goal>
    1.46 +                      </goals>
    1.47 +                  </execution>
    1.48 +              </executions>
    1.49 +          </plugin>          
    1.50 +          <plugin>
    1.51 +              <groupId>org.apache.maven.plugins</groupId>
    1.52 +              <artifactId>maven-compiler-plugin</artifactId>
    1.53 +              <version>2.3.2</version>
    1.54 +              <configuration>
    1.55 +                  <source>1.7</source>
    1.56 +                  <target>1.7</target>
    1.57 +              </configuration>
    1.58 +          </plugin>
    1.59 +          <plugin>
    1.60 +              <groupId>org.apidesign.bck2brwsr</groupId>
    1.61 +              <artifactId>bck2brwsr-maven-plugin</artifactId>
    1.62 +              <version>0.16</version>
    1.63 +              <executions>
    1.64 +                  <execution>
    1.65 +                      <goals>
    1.66 +                          <goal>library</goal>
    1.67 +                      </goals>
    1.68 +                  </execution>
    1.69 +              </executions>
    1.70 +              <configuration>
    1.71 +                  <obfuscation>NONE</obfuscation>
    1.72 +              </configuration>
    1.73 +          </plugin>
    1.74 +      </plugins>
    1.75 +  </build>
    1.76 +  <dependencies>
    1.77 +    <dependency>
    1.78 +        <groupId>org.netbeans.html</groupId>
    1.79 +        <artifactId>net.java.html.boot</artifactId>
    1.80 +        <version>${net.java.html.version}</version>
    1.81 +    </dependency>
    1.82 +    <dependency>
    1.83 +      <groupId>org.testng</groupId>
    1.84 +      <artifactId>testng</artifactId>
    1.85 +      <scope>test</scope>
    1.86 +    </dependency>
    1.87 +    <dependency>
    1.88 +      <groupId>org.netbeans.html</groupId>
    1.89 +      <artifactId>net.java.html.boot.script</artifactId>
    1.90 +      <version>${net.java.html.version}</version>
    1.91 +      <scope>test</scope>
    1.92 +      <type>jar</type>
    1.93 +    </dependency>
    1.94 +  </dependencies>
    1.95 +</project>