rt/core/pom.xml
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Thu, 16 May 2013 10:38:20 +0200
changeset 1103 8ee3112f5647
parent 1099 dcc7ab0f2692
child 1286 a83e16b8b825
permissions -rw-r--r--
[maven-release-plugin] prepare for next development iteration
     1 <?xml version="1.0"?>
     2 <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">
     3   <modelVersion>4.0.0</modelVersion>
     4   <parent>
     5     <groupId>org.apidesign.bck2brwsr</groupId>
     6     <artifactId>rt</artifactId>
     7     <version>0.8-SNAPSHOT</version>
     8   </parent>
     9   <groupId>org.apidesign.bck2brwsr</groupId>
    10   <artifactId>core</artifactId>
    11   <version>0.8-SNAPSHOT</version>
    12   <name>Bck2Brwsr Native Annotations</name>
    13   <url>http://maven.apache.org</url>
    14     <build>
    15         <plugins>
    16             <plugin>
    17                 <groupId>org.apache.maven.plugins</groupId>
    18                 <artifactId>maven-compiler-plugin</artifactId>
    19                 <version>2.3.2</version>
    20                 <configuration>
    21                     <source>1.7</source>
    22                     <target>1.7</target>
    23                 </configuration>
    24             </plugin>
    25             <plugin>
    26                 <groupId>org.apache.maven.plugins</groupId>
    27                 <artifactId>maven-javadoc-plugin</artifactId>
    28                 <configuration>
    29                     <excludePackageNames>org.apidesign.bck2brwsr.core.impl</excludePackageNames>
    30                     <skip>false</skip>
    31                 </configuration>
    32             </plugin>
    33         </plugins>
    34     </build>
    35     <properties>
    36     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    37   </properties>
    38   <dependencies>
    39     <dependency>
    40       <groupId>junit</groupId>
    41       <artifactId>junit</artifactId>
    42       <version>3.8.1</version>
    43       <scope>test</scope>
    44     </dependency>
    45     <dependency>
    46       <groupId>org.netbeans.api</groupId>
    47       <artifactId>org-openide-util-lookup</artifactId>
    48       <scope>provided</scope>
    49     </dependency>
    50   </dependencies>
    51     <description>Contains esential annotations for associating JavaScript code with
    52 methods and classes.</description>
    53 </project>