pom.xml
branchcanvas
changeset 1297 2960a1d37277
parent 1268 7937df26a5a7
parent 1288 8bf8753226bd
child 1439 6c04b26f9a9a
     1.1 --- a/pom.xml	Sun Sep 08 11:22:51 2013 +0200
     1.2 +++ b/pom.xml	Mon Sep 23 07:52:41 2013 -0700
     1.3 @@ -3,7 +3,7 @@
     1.4    <modelVersion>4.0.0</modelVersion>
     1.5    <groupId>org.apidesign</groupId>
     1.6    <artifactId>bck2brwsr</artifactId>
     1.7 -  <version>0.8-SNAPSHOT</version>
     1.8 +  <version>0.9-SNAPSHOT</version>
     1.9    <packaging>pom</packaging>
    1.10    <name>Back 2 Browser</name>
    1.11    <parent>
    1.12 @@ -15,7 +15,7 @@
    1.13        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    1.14        <netbeans.version>RELEASE73</netbeans.version>
    1.15        <license>COPYING</license>
    1.16 -      <net.java.html.version>0.5</net.java.html.version>
    1.17 +      <net.java.html.version>0.6</net.java.html.version>
    1.18    </properties>
    1.19    <modules>
    1.20      <module>dew</module>
    1.21 @@ -264,4 +264,28 @@
    1.22          </dependency>
    1.23        </dependencies>
    1.24    </dependencyManagement>
    1.25 +  <profiles>
    1.26 +      <profile>
    1.27 +          <id>jdk8</id>
    1.28 +          <activation>
    1.29 +              <file>
    1.30 +                  <exists>${java.home}/lib/ext/jfxrt.jar</exists>
    1.31 +              </file>
    1.32 +          </activation>
    1.33 +          <properties>
    1.34 +            <jfxrt.jar>${java.home}/lib/ext/jfxrt.jar</jfxrt.jar>
    1.35 +          </properties>
    1.36 +      </profile>
    1.37 +      <profile>
    1.38 +          <id>jdk7</id>
    1.39 +          <activation>
    1.40 +              <file>
    1.41 +                  <exists>${java.home}/lib/jfxrt.jar</exists>
    1.42 +              </file>
    1.43 +          </activation>
    1.44 +          <properties>
    1.45 +            <jfxrt.jar>${java.home}/lib/jfxrt.jar</jfxrt.jar>
    1.46 +          </properties>
    1.47 +      </profile>
    1.48 +  </profiles>
    1.49  </project>