wsdor/pom.xml
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Wed, 27 Jun 2012 22:23:50 +0200
changeset 288 61a4abd3f362
parent 258 935118a5831a
permissions -rw-r--r--
Use dependencyManagement to manage dependencies
     1 <?xml version="1.0" encoding="UTF-8"?>
     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     <artifactId>all-quoridor</artifactId>
     7     <groupId>cz.xelfi.quoridor</groupId>
     8     <version>1.0</version>
     9   </parent>
    10   <groupId>cz.xelfi.quoridor</groupId>
    11   <artifactId>wsdor</artifactId>
    12   <packaging>bundle</packaging>
    13   <version>${wsdorVersion}</version>
    14   <name>wsdor</name>
    15   <url>http://maven.apache.org</url>
    16     <build>
    17         <plugins>
    18             <plugin>
    19                 <groupId>org.apache.felix</groupId>
    20                 <artifactId>maven-bundle-plugin</artifactId>
    21                 <version>2.0.1</version>
    22                 <extensions>true</extensions>
    23                 <configuration>
    24                     <instructions>
    25                         <Export-Package>cz.xelfi.quoridor.webidor</Export-Package>
    26                         <Private-Package>cz.xelfi.quoridor.webidor.*</Private-Package>
    27                     </instructions>
    28                 </configuration>
    29             </plugin>
    30             <plugin>
    31                 <groupId>org.apache.maven.plugins</groupId>
    32                 <artifactId>maven-compiler-plugin</artifactId>
    33                 <version>2.0.2</version>
    34                 <configuration>
    35                     <source>1.5</source>
    36                     <target>1.5</target>
    37                 </configuration>
    38             </plugin>
    39             <plugin>
    40                 <groupId>org.apache.maven.plugins</groupId>
    41                 <artifactId>maven-javadoc-plugin</artifactId>
    42                 <version>2.5</version>
    43                 <!--
    44                 <configuration>
    45                     <excludePackageNames>org.netbeans.modules.openide.util</excludePackageNames>
    46                     <overview>${basedir}/src/main/java/org/openide/util/lookup/doc-files/index.html</overview>
    47                 </configuration>
    48                 -->
    49             </plugin>
    50         </plugins>
    51     </build>
    52   <dependencies>
    53     <dependency>
    54       <groupId>junit</groupId>
    55       <artifactId>junit</artifactId>
    56       <version>3.8.1</version>
    57       <scope>test</scope>
    58     </dependency>
    59     <dependency>
    60       <groupId>${project.groupId}</groupId>
    61       <artifactId>quoridor</artifactId>
    62       <version>${quoridorVersion}</version>
    63     </dependency>
    64     <dependency>
    65       <groupId>com.sun.jersey</groupId>
    66       <artifactId>jersey-core</artifactId>
    67     </dependency>
    68     <dependency>
    69       <groupId>com.sun.jersey</groupId>
    70       <artifactId>jersey-server</artifactId>
    71     </dependency>
    72     <dependency>
    73       <groupId>com.sun.jersey</groupId>
    74       <artifactId>jersey-json</artifactId>
    75       <type>jar</type>
    76       <exclusions>
    77         <exclusion>
    78           <artifactId>jaxb-api</artifactId>
    79           <groupId>javax.xml.bind</groupId>
    80         </exclusion>
    81         <exclusion>
    82           <artifactId>stax-api</artifactId>
    83           <groupId>stax</groupId>
    84         </exclusion>
    85       </exclusions>
    86     </dependency>
    87   </dependencies>
    88 </project>