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
jtulach@576
     1
<?xml version="1.0" encoding="UTF-8"?>
jtulach@576
     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"
jtulach@576
     3
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
jtulach@576
     4
  <modelVersion>4.0.0</modelVersion>
jtulach@576
     5
  <parent>
jtulach@576
     6
    <artifactId>anagramdemo</artifactId>
jtulach@576
     7
    <groupId>org.apidesign</groupId>
jtulach@576
     8
    <version>2.0</version>
jtulach@979
     9
    <relativePath>..</relativePath>
jtulach@576
    10
  </parent>
jtulach@576
    11
  <groupId>org.apidesign</groupId>
jtulach@576
    12
  <artifactId>simplescrambler</artifactId>
jtulach@576
    13
  <version>1.0</version>
jtulach@576
    14
  <url>http://maven.apache.org</url>
jtulach@576
    15
    <build>
jtulach@576
    16
        <plugins>
jtulach@576
    17
            <plugin>
jtulach@576
    18
                <groupId>org.apache.maven.plugins</groupId>
jtulach@576
    19
                <artifactId>maven-compiler-plugin</artifactId>
jtulach@576
    20
                <version>2.0.2</version>
jtulach@576
    21
                <configuration>
jtulach@576
    22
                    <source>1.5</source>
jtulach@576
    23
                    <target>1.5</target>
jtulach@974
    24
                    <compilerArguments>
jtulach@974
    25
                        <sourcepath>${project.basedir}/src/main/java</sourcepath>
jtulach@974
    26
                    </compilerArguments>
jtulach@576
    27
                </configuration>
jtulach@576
    28
            </plugin>
jtulach@609
    29
            <plugin>
jtulach@609
    30
                <groupId>org.apache.maven.plugins</groupId>
jtulach@609
    31
                <artifactId>maven-javadoc-plugin</artifactId>
jtulach@609
    32
                <version>2.5</version>
jtulach@609
    33
                <configuration>
jtulach@609
    34
                    <skip>true</skip>
jtulach@609
    35
                </configuration>
jtulach@609
    36
            </plugin>
jtulach@576
    37
        </plugins>
jtulach@576
    38
    </build>
jtulach@576
    39
    <dependencies>
jtulach@576
    40
    <dependency>
jtulach@576
    41
      <groupId>junit</groupId>
jtulach@576
    42
      <artifactId>junit</artifactId>
jtulach@576
    43
      <version>3.8.1</version>
jtulach@576
    44
      <scope>test</scope>
jtulach@576
    45
    </dependency>
jtulach@576
    46
    <dependency>
jtulach@576
    47
      <groupId>org.apidesign</groupId>
jtulach@576
    48
      <artifactId>anagram-spring-lookup</artifactId>
jtulach@576
    49
      <version>1.0</version>
jtulach@576
    50
    </dependency>
jtulach@583
    51
    </dependencies>
jtulach@576
    52
    <name>Simple Scrambler</name>
jtulach@576
    53
    <description>Replaces two letters in provided words.</description>
jtulach@576
    54
</project>