anagramdemo/simplescrambler/pom.xml
author Jaroslav Tulach <jtulach@netbeans.org>
Thu, 07 Jun 2012 20:34:55 +0200
changeset 979 ca97def88911
parent 974 da4eb49856cd
permissions -rw-r--r--
Specifying parent pom in a way that complies with m3
     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     <relativePath>..</relativePath>
    10   </parent>
    11   <groupId>org.apidesign</groupId>
    12   <artifactId>simplescrambler</artifactId>
    13   <version>1.0</version>
    14   <url>http://maven.apache.org</url>
    15     <build>
    16         <plugins>
    17             <plugin>
    18                 <groupId>org.apache.maven.plugins</groupId>
    19                 <artifactId>maven-compiler-plugin</artifactId>
    20                 <version>2.0.2</version>
    21                 <configuration>
    22                     <source>1.5</source>
    23                     <target>1.5</target>
    24                     <compilerArguments>
    25                         <sourcepath>${project.basedir}/src/main/java</sourcepath>
    26                     </compilerArguments>
    27                 </configuration>
    28             </plugin>
    29             <plugin>
    30                 <groupId>org.apache.maven.plugins</groupId>
    31                 <artifactId>maven-javadoc-plugin</artifactId>
    32                 <version>2.5</version>
    33                 <configuration>
    34                     <skip>true</skip>
    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>org.apidesign</groupId>
    48       <artifactId>anagram-spring-lookup</artifactId>
    49       <version>1.0</version>
    50     </dependency>
    51     </dependencies>
    52     <name>Simple Scrambler</name>
    53     <description>Replaces two letters in provided words.</description>
    54 </project>