core/pom.xml
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Tue, 05 Feb 2013 00:00:22 +0100
branchreflection
changeset 665 799a8cfefe35
parent 218 bbc04118d571
child 621 6daa39b17563
permissions -rw-r--r--
Returning proper runtime representation for inner annotation arrays
     1 <?xml version="1.0"?>
     2 <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"
     3     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
     4   <modelVersion>4.0.0</modelVersion>
     5   <parent>
     6     <groupId>org.apidesign</groupId>
     7     <artifactId>bck2brwsr</artifactId>
     8     <version>0.3-SNAPSHOT</version>
     9   </parent>
    10   <groupId>org.apidesign.bck2brwsr</groupId>
    11   <artifactId>core</artifactId>
    12   <version>0.3-SNAPSHOT</version>
    13   <name>Core JS Annotations</name>
    14   <url>http://maven.apache.org</url>
    15     <build>
    16         <plugins>
    17             <plugin>
    18                 <groupId>org.apache.maven.plugins</groupId>
    19                 <artifactId>maven-compiler-plugin</artifactId>
    20                 <version>2.3.2</version>
    21                 <configuration>
    22                     <source>1.7</source>
    23                     <target>1.7</target>
    24                 </configuration>
    25             </plugin>
    26         </plugins>
    27     </build>
    28     <properties>
    29     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    30   </properties>
    31   <dependencies>
    32     <dependency>
    33       <groupId>junit</groupId>
    34       <artifactId>junit</artifactId>
    35       <version>3.8.1</version>
    36       <scope>test</scope>
    37     </dependency>
    38     <dependency>
    39       <groupId>org.netbeans.api</groupId>
    40       <artifactId>org-openide-util-lookup</artifactId>
    41     </dependency>
    42   </dependencies>
    43     <description>Contains esential annotations for associating JavaScript code with
    44 methods and classes.</description>
    45 </project>