launcher/fx/pom.xml
branchclosure
changeset 1513 ba912ef24b27
parent 1489 8d0fc428ff72
parent 1437 3ec3ae9699ef
child 1624 3e565843a131
     1.1 --- a/launcher/fx/pom.xml	Sat Apr 26 19:13:56 2014 +0200
     1.2 +++ b/launcher/fx/pom.xml	Wed Apr 30 15:04:10 2014 +0200
     1.3 @@ -4,11 +4,11 @@
     1.4    <parent>
     1.5      <groupId>org.apidesign.bck2brwsr</groupId>
     1.6      <artifactId>launcher-pom</artifactId>
     1.7 -    <version>0.8-SNAPSHOT</version>
     1.8 +    <version>0.9-SNAPSHOT</version>
     1.9    </parent>
    1.10    <groupId>org.apidesign.bck2brwsr</groupId>
    1.11    <artifactId>launcher.fx</artifactId>
    1.12 -  <version>0.8-SNAPSHOT</version>
    1.13 +  <version>0.9-SNAPSHOT</version>
    1.14    <name>FXBrwsr Launcher</name>
    1.15    <url>http://maven.apache.org</url>
    1.16      <build>
    1.17 @@ -18,8 +18,8 @@
    1.18                  <artifactId>maven-compiler-plugin</artifactId>
    1.19                  <version>2.3.2</version>
    1.20                  <configuration>
    1.21 -                    <source>1.7</source>
    1.22 -                    <target>1.7</target>
    1.23 +                    <source>1.6</source>
    1.24 +                    <target>1.6</target>
    1.25                  </configuration>
    1.26              </plugin>
    1.27              <plugin>
    1.28 @@ -58,5 +58,44 @@
    1.29        <artifactId>testng</artifactId>
    1.30        <scope>test</scope>
    1.31      </dependency>
    1.32 +    <!--
    1.33 +    <dependency>
    1.34 +      <groupId>org.netbeans.modules</groupId>
    1.35 +      <artifactId>org-netbeans-bootstrap</artifactId>
    1.36 +      <version>RELEASE73</version>
    1.37 +    </dependency>
    1.38 +    -->
    1.39 +    <dependency>
    1.40 +      <groupId>${project.groupId}</groupId>
    1.41 +      <artifactId>core</artifactId>
    1.42 +      <version>${project.version}</version>
    1.43 +      <scope>compile</scope>
    1.44 +    </dependency>
    1.45 +    <dependency>
    1.46 +      <groupId>org.ow2.asm</groupId>
    1.47 +      <artifactId>asm</artifactId>
    1.48 +      <version>4.1</version>
    1.49 +    </dependency>
    1.50 +    <dependency>
    1.51 +      <groupId>org.netbeans.html</groupId>
    1.52 +      <artifactId>net.java.html.boot</artifactId>
    1.53 +      <version>${net.java.html.version}</version>
    1.54 +    </dependency>
    1.55 +    <dependency>
    1.56 +        <groupId>org.glassfish.grizzly</groupId>
    1.57 +        <artifactId>grizzly-websockets-server</artifactId>
    1.58 +        <version>${grizzly.version}</version>
    1.59 +        <type>jar</type>
    1.60 +    </dependency>
    1.61 +    <dependency>
    1.62 +        <groupId>org.glassfish.grizzly</groupId>
    1.63 +        <artifactId>grizzly-http-servlet</artifactId>
    1.64 +        <version>${grizzly.version}</version>
    1.65 +    </dependency>    
    1.66 +    <dependency>
    1.67 +        <groupId>javax.servlet</groupId>
    1.68 +        <artifactId>javax.servlet-api</artifactId>
    1.69 +        <version>3.1.0</version>
    1.70 +    </dependency>
    1.71    </dependencies>
    1.72  </project>