ko/archetype/src/main/resources/archetype-resources/pom.xml
changeset 1433 3d696782eab9
parent 1424 095ce896e094
     1.1 --- a/ko/archetype/src/main/resources/archetype-resources/pom.xml	Thu Jan 09 15:57:28 2014 +0100
     1.2 +++ b/ko/archetype/src/main/resources/archetype-resources/pom.xml	Tue Feb 04 09:32:27 2014 +0100
     1.3 @@ -43,6 +43,7 @@
     1.4      <bck2brwsr.launcher.version>${project.version}</bck2brwsr.launcher.version>
     1.5      <bck2brwsr.obfuscationlevel>MINIMAL</bck2brwsr.obfuscationlevel>
     1.6      <brwsr.startpage>pages/index.html</brwsr.startpage>
     1.7 +    <netbeans.compile.on.save>none</netbeans.compile.on.save>
     1.8    </properties>
     1.9    <build>
    1.10        <plugins>
    1.11 @@ -64,6 +65,19 @@
    1.12                </configuration>
    1.13            </plugin>
    1.14            <plugin>
    1.15 +              <groupId>org.netbeans.html</groupId>
    1.16 +              <artifactId>html4j-maven-plugin</artifactId>
    1.17 +              <version>${net.java.html.version}</version>
    1.18 +              <executions>
    1.19 +                  <execution>
    1.20 +                      <id>js-classes</id>
    1.21 +                      <goals>
    1.22 +                          <goal>process-js-annotations</goal>
    1.23 +                      </goals>
    1.24 +                  </execution>
    1.25 +              </executions>
    1.26 +          </plugin>          
    1.27 +          <plugin>
    1.28                <groupId>org.apache.maven.plugins</groupId>
    1.29                <artifactId>maven-compiler-plugin</artifactId>
    1.30                <version>2.3.2</version>
    1.31 @@ -110,7 +124,7 @@
    1.32      <dependency>
    1.33        <groupId>org.testng</groupId>
    1.34        <artifactId>testng</artifactId>
    1.35 -      <version>6.5.2</version>
    1.36 +      <version>6.7</version>
    1.37        <scope>test</scope>
    1.38      </dependency>
    1.39      <dependency>
    1.40 @@ -131,6 +145,12 @@
    1.41        <version>\${net.java.html.version}</version>
    1.42        <type>jar</type>
    1.43      </dependency>
    1.44 +    <dependency>
    1.45 +      <groupId>org.netbeans.html</groupId>
    1.46 +      <artifactId>net.java.html.boot</artifactId>
    1.47 +      <version>\${net.java.html.version}</version>
    1.48 +      <type>jar</type>
    1.49 +    </dependency>    
    1.50    </dependencies>
    1.51    <profiles>
    1.52        <profile>
    1.53 @@ -211,6 +231,9 @@
    1.54                            <compilerArguments>
    1.55                                <bootclasspath>netbeans.ignore.jdk.bootclasspath</bootclasspath>
    1.56                            </compilerArguments>
    1.57 +                          <testExcludes>
    1.58 +                              <exclude>**/JsInteractionTest*</exclude>
    1.59 +                          </testExcludes>
    1.60                        </configuration>
    1.61                    </plugin>
    1.62                    <plugin>