visidor/pom.xml
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Sun, 05 Sep 2010 22:34:43 +0200
changeset 255 9ecd02d694cd
parent 248 9bbf25021886
permissions -rw-r--r--
Official API for BoardPane with listener to react to user gestures.
     1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
     2   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
     3   <modelVersion>4.0.0</modelVersion>
     4   <artifactId>visidor</artifactId>
     5   <packaging>jar</packaging>
     6   <version>${visidorVersion}</version>
     7   <url>http://maven.apache.org</url>
     8   <parent>
     9       <groupId>cz.xelfi.quoridor</groupId>
    10       <artifactId>all-quoridor</artifactId>
    11       <relativePath>..</relativePath>
    12       <version>1.0</version>
    13   </parent>
    14   <build>
    15     <plugins>
    16       <plugin>
    17         <groupId>org.apache.maven.plugins</groupId>
    18         <artifactId>maven-compiler-plugin</artifactId>
    19         <version>2.0.2</version>
    20         <configuration>
    21           <source>1.5</source>
    22           <target>1.5</target>
    23         </configuration>
    24       </plugin>
    25       <plugin>
    26         <groupId>org.apache.felix</groupId>
    27         <artifactId>maven-bundle-plugin</artifactId>
    28         <version>2.0.1</version>
    29         <extensions>true</extensions>
    30         <configuration>
    31             <instructions>
    32                 <Export-Package>cz.xelfi.quoridor.visidor</Export-Package>
    33                 <Private-Package>cz.xelfi.quoridor.visitor.*</Private-Package>
    34             </instructions>
    35         </configuration>
    36       </plugin>
    37     </plugins>
    38   </build>
    39   <dependencies>
    40     <dependency>
    41       <groupId>junit</groupId>
    42       <artifactId>junit</artifactId>
    43       <version>3.8.1</version>
    44       <scope>test</scope>
    45     </dependency>
    46     <dependency>
    47       <groupId>cz.xelfi.quoridor</groupId>
    48       <artifactId>quoridor</artifactId>
    49       <version>${quoridorVersion}</version>
    50     </dependency>
    51   </dependencies>
    52     <name>Quoridor Visual Board</name>
    53     <description>Provides Swing component to display and interact with quoridor board.</description>
    54 </project>
    55 
    56 
    57 
    58