anagramdemo/anagrambase/pom.xml
author Jaroslav Tulach <jtulach@netbeans.org>
Wed, 03 Feb 2010 00:04:30 +0100
changeset 972 a2947558c966
parent 609 89de49831cd4
child 979 ca97def88911
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 <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   <groupId>org.apidesign</groupId>
     5   <packaging>jar</packaging>
     6   <version>1.0</version>
     7   <url>http://maven.apache.org</url>
     8   <repositories>
     9       <repository>
    10           <id>netbeans</id>
    11           <url>http://bits.netbeans.org/maven2/</url>
    12       </repository>
    13   </repositories>
    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.maven.plugins</groupId>
    27                 <artifactId>maven-surefire-plugin</artifactId>
    28                 <version>2.4.2</version>
    29                 <configuration>
    30                     <includes>
    31                         <include>**/*Test.java</include>
    32                     </includes>
    33                 </configuration>
    34             </plugin>
    35             <plugin>
    36                 <groupId>org.apache.maven.plugins</groupId>
    37                 <artifactId>maven-javadoc-plugin</artifactId>
    38                 <version>2.5</version>
    39                 <configuration>
    40                     <skip>true</skip>
    41                 </configuration>
    42             </plugin>
    43         </plugins>
    44     </build>
    45     <dependencies>
    46         <dependency>
    47             <groupId>org.springframework</groupId>
    48             <artifactId>spring-core</artifactId>
    49             <version>2.5.6</version>
    50         </dependency>
    51         <dependency>
    52             <groupId>org.springframework</groupId>
    53             <artifactId>spring-beans</artifactId>
    54             <version>2.5.6</version>
    55         </dependency>
    56         <dependency>
    57             <groupId>org.springframework</groupId>
    58             <artifactId>spring-context</artifactId>
    59             <version>2.5.6</version>
    60         </dependency>
    61         <dependency>
    62             <groupId>org.apidesign</groupId>
    63             <artifactId>spring-lookup</artifactId>
    64             <version>1.2</version>
    65         </dependency>
    66     </dependencies>
    67     <name>Anagram Game Base</name>
    68     <description>This project provides an example of combination
    69 of the Spring's dependency injection and Lookup
    70 META-INF/services registration.</description>
    71     <artifactId>anagram-spring-lookup</artifactId>
    72 </project>