core/pom.xml
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Mon, 24 Dec 2012 07:51:15 +0100
changeset 373 52386a70f9d9
parent 155 0c97ae810dff
child 432 1bdeeb77f5a3
permissions -rw-r--r--
Archiving static compilation demo
     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.6</source>
    23                     <target>1.6</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   </dependencies>
    39     <description>Contains esential annotations for associating JavaScript code with
    40 methods and classes.</description>
    41 </project>