pom.xml
branchsound
changeset 222 63b36aba87c7
parent 105 c6c16603206c
parent 217 3f94a09bea35
child 260 23e2ad7e6d23
     1.1 --- a/pom.xml	Mon May 27 16:29:15 2013 +0200
     1.2 +++ b/pom.xml	Wed Aug 07 14:28:21 2013 +0200
     1.3 @@ -3,7 +3,7 @@
     1.4    <modelVersion>4.0.0</modelVersion>
     1.5    <groupId>org.apidesign</groupId>
     1.6    <artifactId>html</artifactId>
     1.7 -  <version>0.4-SNAPSHOT</version>
     1.8 +  <version>0.5-SNAPSHOT</version>
     1.9    <packaging>pom</packaging>
    1.10    <name>HTML APIs via Java</name>
    1.11    <parent> 
    1.12 @@ -13,8 +13,6 @@
    1.13    </parent>  
    1.14    <properties>
    1.15        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    1.16 -      <bck2brwsr.version>0.7.2</bck2brwsr.version>
    1.17 -      <bck2brwsr.launcher.version>0.7.2</bck2brwsr.launcher.version>
    1.18        <netbeans.version>RELEASE73</netbeans.version>
    1.19        <license>COPYING</license>
    1.20    </properties>
    1.21 @@ -23,9 +21,12 @@
    1.22      <module>json-tck</module>
    1.23      <module>ko-archetype</module>
    1.24      <module>ko-archetype-test</module>
    1.25 -    <module>ko-bck2brwsr</module>
    1.26      <module>ko-fx</module>
    1.27      <module>sound</module>
    1.28 +    <module>context</module>
    1.29 +    <module>boot</module>
    1.30 +    <module>boot-fx</module>
    1.31 +    <module>geo</module>
    1.32    </modules>
    1.33    <licenses>
    1.34        <license>
    1.35 @@ -39,9 +40,9 @@
    1.36        <url>http://apidesign.org</url>
    1.37    </organization>
    1.38    <scm>
    1.39 -      <connection>scm:hg:https://hg.java.net/hg/html~html4j</connection>
    1.40 -      <developerConnection>scm:hg:https://hg.java.net/hg/html~html4j</developerConnection>
    1.41 -      <url>https://hg.java.net/hg/html~html4j</url>
    1.42 +      <connection>scm:hg:https://hg.apidesign.org/hg/html~html4j</connection>
    1.43 +      <developerConnection>scm:hg:https://hg.apidesign.org/hg/html~html4j</developerConnection>
    1.44 +      <url>https://hg.apidesign.org/hg/html~html4j</url>
    1.45        <tag>default</tag>
    1.46    </scm>
    1.47    <repositories>
    1.48 @@ -256,4 +257,28 @@
    1.49          </dependency>
    1.50        </dependencies>
    1.51    </dependencyManagement>
    1.52 +  <profiles>
    1.53 +      <profile>
    1.54 +          <id>jdk8</id>
    1.55 +          <activation>
    1.56 +              <file>
    1.57 +                  <exists>${java.home}/lib/ext/jfxrt.jar</exists>
    1.58 +              </file>
    1.59 +          </activation>
    1.60 +          <properties>
    1.61 +            <jfxrt.jar>${java.home}/lib/ext/jfxrt.jar</jfxrt.jar>
    1.62 +          </properties>
    1.63 +      </profile>
    1.64 +      <profile>
    1.65 +          <id>jdk7</id>
    1.66 +          <activation>
    1.67 +              <file>
    1.68 +                  <exists>${java.home}/lib/jfxrt.jar</exists>
    1.69 +              </file>
    1.70 +          </activation>
    1.71 +          <properties>
    1.72 +            <jfxrt.jar>${java.home}/lib/jfxrt.jar</jfxrt.jar>
    1.73 +          </properties>
    1.74 +      </profile>
    1.75 +  </profiles>
    1.76  </project>
    1.77 \ No newline at end of file