rt/core/pom.xml
changeset 772 d382dacfd73f
parent 621 6daa39b17563
child 793 033ea09379a0
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/rt/core/pom.xml	Tue Feb 26 16:54:16 2013 +0100
     1.3 @@ -0,0 +1,46 @@
     1.4 +<?xml version="1.0"?>
     1.5 +<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
     1.6 +    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
     1.7 +  <modelVersion>4.0.0</modelVersion>
     1.8 +  <parent>
     1.9 +    <groupId>org.apidesign.bck2brwsr</groupId>
    1.10 +    <artifactId>rt</artifactId>
    1.11 +    <version>0.3-SNAPSHOT</version>
    1.12 +  </parent>
    1.13 +  <groupId>org.apidesign.bck2brwsr</groupId>
    1.14 +  <artifactId>core</artifactId>
    1.15 +  <version>0.3-SNAPSHOT</version>
    1.16 +  <name>Bck2Brwsr Native Annotations</name>
    1.17 +  <url>http://maven.apache.org</url>
    1.18 +    <build>
    1.19 +        <plugins>
    1.20 +            <plugin>
    1.21 +                <groupId>org.apache.maven.plugins</groupId>
    1.22 +                <artifactId>maven-compiler-plugin</artifactId>
    1.23 +                <version>2.3.2</version>
    1.24 +                <configuration>
    1.25 +                    <source>1.7</source>
    1.26 +                    <target>1.7</target>
    1.27 +                </configuration>
    1.28 +            </plugin>
    1.29 +        </plugins>
    1.30 +    </build>
    1.31 +    <properties>
    1.32 +    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    1.33 +  </properties>
    1.34 +  <dependencies>
    1.35 +    <dependency>
    1.36 +      <groupId>junit</groupId>
    1.37 +      <artifactId>junit</artifactId>
    1.38 +      <version>3.8.1</version>
    1.39 +      <scope>test</scope>
    1.40 +    </dependency>
    1.41 +    <dependency>
    1.42 +      <groupId>org.netbeans.api</groupId>
    1.43 +      <artifactId>org-openide-util-lookup</artifactId>
    1.44 +      <scope>provided</scope>
    1.45 +    </dependency>
    1.46 +  </dependencies>
    1.47 +    <description>Contains esential annotations for associating JavaScript code with
    1.48 +methods and classes.</description>
    1.49 +</project>