Need to exclude the scripting presenter test from bck2brwsr profile, as it is using APIs not available in JDK8 compact1 profile... release80_base
authorJaroslav Tulach <jtulach@netbeans.org>
Wed, 19 Feb 2014 13:59:42 +0100
changeset 18172f4e3e2267188
parent 18171 95232a041be0
child 18173 0e044c21def9
child 18174 7af3bc4f762c
Need to exclude the scripting presenter test from bck2brwsr profile, as it is using APIs not available in JDK8 compact1 profile...
project.htmljava/manifest.mf
project.htmljava/src/org/netbeans/modules/project/htmljava/prj/pom.txt
     1.1 --- a/project.htmljava/manifest.mf	Wed Feb 19 07:16:17 2014 +0100
     1.2 +++ b/project.htmljava/manifest.mf	Wed Feb 19 13:59:42 2014 +0100
     1.3 @@ -3,5 +3,5 @@
     1.4  OpenIDE-Module: org.netbeans.modules.project.htmljava
     1.5  OpenIDE-Module-Layer: org/netbeans/modules/project/htmljava/layer.xml
     1.6  OpenIDE-Module-Localizing-Bundle: org/netbeans/modules/project/htmljava/Bundle.properties
     1.7 -OpenIDE-Module-Specification-Version: 1.2
     1.8 +OpenIDE-Module-Specification-Version: 1.3
     1.9  
     2.1 --- a/project.htmljava/src/org/netbeans/modules/project/htmljava/prj/pom.txt	Wed Feb 19 07:16:17 2014 +0100
     2.2 +++ b/project.htmljava/src/org/netbeans/modules/project/htmljava/prj/pom.txt	Wed Feb 19 13:59:42 2014 +0100
     2.3 @@ -143,6 +143,18 @@
     2.4            <build>
     2.5                <plugins>
     2.6                    <plugin>
     2.7 +                      <groupId>org.apache.maven.plugins</groupId>
     2.8 +                      <artifactId>maven-compiler-plugin</artifactId>
     2.9 +                      <configuration>
    2.10 +                          <compilerArguments>
    2.11 +                              <bootclasspath>netbeans.ignore.jdk.bootclasspath</bootclasspath>
    2.12 +                          </compilerArguments>
    2.13 +                          <testExcludes>
    2.14 +                              <exclude>**/JsInteractionTest*</exclude>
    2.15 +                          </testExcludes>
    2.16 +                      </configuration>
    2.17 +                  </plugin>
    2.18 +                  <plugin>
    2.19                        <groupId>org.apidesign.bck2brwsr</groupId>
    2.20                        <artifactId>bck2brwsr-maven-plugin</artifactId>
    2.21                        <version>${bck2brwsr.version}</version>