boot-script/pom.xml
changeset 674 a61fd3f48997
child 675 fad65c387592
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/boot-script/pom.xml	Tue Jun 03 20:56:36 2014 +0200
     1.3 @@ -0,0 +1,41 @@
     1.4 +<?xml version="1.0" encoding="UTF-8"?>
     1.5 +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
     1.6 +    <modelVersion>4.0.0</modelVersion>
     1.7 +    <parent>
     1.8 +        <groupId>org.netbeans.html</groupId>
     1.9 +        <artifactId>pom</artifactId>
    1.10 +        <version>1.0-SNAPSHOT</version>
    1.11 +    </parent>
    1.12 +    <name>Presenter via javax.script</name>
    1.13 +    <artifactId>net.java.html.boot.script</artifactId>
    1.14 +    <version>1.0-SNAPSHOT</version>
    1.15 +    <packaging>jar</packaging>
    1.16 +    <properties>
    1.17 +        <netbeans.compile.on.save>NONE</netbeans.compile.on.save>
    1.18 +    </properties>
    1.19 +    <dependencies>
    1.20 +        <dependency>
    1.21 +            <groupId>org.netbeans.html</groupId>
    1.22 +            <artifactId>net.java.html.boot</artifactId>
    1.23 +            <version>${project.version}</version>
    1.24 +            <type>jar</type>
    1.25 +        </dependency>
    1.26 +        <dependency>
    1.27 +            <groupId>org.testng</groupId>
    1.28 +            <artifactId>testng</artifactId>
    1.29 +            <scope>test</scope>
    1.30 +        </dependency>
    1.31 +        <dependency>
    1.32 +            <groupId>org.webjars</groupId>
    1.33 +            <artifactId>envjs</artifactId>
    1.34 +            <version>1.2</version>
    1.35 +            <scope>test</scope>
    1.36 +        </dependency>
    1.37 +        <dependency>
    1.38 +            <groupId>${project.groupId}</groupId>
    1.39 +            <artifactId>net.java.html.json.tck</artifactId>
    1.40 +            <version>${project.version}</version>
    1.41 +            <scope>test</scope>
    1.42 +        </dependency>
    1.43 +    </dependencies>
    1.44 +</project>
    1.45 \ No newline at end of file