anagramdemo/anagramapp/pom.xml
author Jaroslav Tulach <jtulach@netbeans.org>
Wed, 03 Feb 2010 00:04:30 +0100
changeset 972 a2947558c966
parent 609 89de49831cd4
permissions -rw-r--r--
Removing local copy of lookup. Will use openide-util for now and switch to org.openide.util.lookup when available.
     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>anagramdemo</artifactId>
     7     <groupId>org.apidesign</groupId>
     8     <version>2.0</version>
     9   </parent>
    10   <groupId>org.apidesign</groupId>
    11   <artifactId>anagramapp</artifactId>
    12   <version>1.0</version>
    13   <url>http://maven.apache.org</url>
    14   <dependencies>
    15     <dependency>
    16       <groupId>org.apidesign</groupId>
    17       <artifactId>anagram-spring-lookup</artifactId>
    18       <version>1.0</version>
    19       <scope>runtime</scope>
    20     </dependency>
    21     <dependency>
    22       <groupId>org.apidesign</groupId>
    23       <artifactId>simplescrambler</artifactId>
    24       <version>1.0</version>
    25       <scope>runtime</scope>
    26     </dependency>
    27     <dependency>
    28       <groupId>org.apidesign</groupId>
    29       <artifactId>staticwordlibrary</artifactId>
    30       <version>1.0</version>
    31       <scope>runtime</scope>
    32     </dependency>
    33     <dependency>
    34         <groupId>org.netbeans.api</groupId>
    35         <artifactId>org-netbeans-modules-nbjunit</artifactId>
    36         <version>RELEASE68</version>
    37         <scope>test</scope>
    38     </dependency>
    39     <dependency>
    40         <groupId>org.netbeans.modules</groupId>
    41         <artifactId>org-netbeans-insane</artifactId>
    42         <version>RELEASE68</version>
    43         <scope>test</scope>
    44     </dependency>
    45   </dependencies>
    46   <name>Anagrams Game</name>
    47   <description>Composes the Anagram Game base runtime with provides of
    48 Static Word Library and Simple Scrambler. Just by putting these
    49 JARs on classpath the system discovers them and assembles them
    50 together.
    51   </description>
    52   <build>
    53     <plugins>
    54       <plugin>
    55         <groupId>org.apache.maven.plugins</groupId>
    56         <artifactId>maven-compiler-plugin</artifactId>
    57         <version>2.0.2</version>
    58         <configuration>
    59           <source>1.5</source>
    60           <target>1.5</target>
    61         </configuration>
    62       </plugin>
    63       <plugin>
    64         <groupId>org.apache.maven.plugins</groupId>
    65         <artifactId>maven-javadoc-plugin</artifactId>
    66         <version>2.5</version>
    67         <configuration>
    68             <skip>true</skip>
    69         </configuration>
    70       </plugin>
    71     </plugins>
    72   </build>
    73 </project>