ko/fx/pom.xml
changeset 1249 cdaeea7becf2
parent 1233 43fba26ba0c0
child 1276 0faedeb34895
     1.1 --- a/ko/fx/pom.xml	Wed Jun 26 20:27:06 2013 +0200
     1.2 +++ b/ko/fx/pom.xml	Mon Aug 26 08:56:37 2013 +0200
     1.3 @@ -86,5 +86,35 @@
     1.4        <scope>test</scope>
     1.5        <type>jar</type>
     1.6      </dependency>
     1.7 +    <dependency>
     1.8 +      <groupId>org.apidesign.html</groupId>
     1.9 +      <artifactId>ko-ws-tyrus</artifactId>
    1.10 +      <version>${net.java.html.version}</version>
    1.11 +      <scope>test</scope>
    1.12 +    </dependency>
    1.13    </dependencies>
    1.14 +  <profiles>
    1.15 +      <profile>
    1.16 +          <id>jdk8</id>
    1.17 +          <activation>
    1.18 +              <file>
    1.19 +                  <exists>${java.home}/lib/ext/jfxrt.jar</exists>
    1.20 +              </file>
    1.21 +          </activation>
    1.22 +          <properties>
    1.23 +            <jfxrt.jar>${java.home}/lib/ext/jfxrt.jar</jfxrt.jar>
    1.24 +          </properties>
    1.25 +      </profile>
    1.26 +      <profile>
    1.27 +          <id>jdk7</id>
    1.28 +          <activation>
    1.29 +              <file>
    1.30 +                  <exists>${java.home}/lib/jfxrt.jar</exists>
    1.31 +              </file>
    1.32 +          </activation>
    1.33 +          <properties>
    1.34 +            <jfxrt.jar>${java.home}/lib/jfxrt.jar</jfxrt.jar>
    1.35 +          </properties>
    1.36 +      </profile>
    1.37 +  </profiles>
    1.38  </project>