anagramdemo/simplescrambler/pom.xml
author Jaroslav Tulach <jtulach@netbeans.org>
Wed, 03 Feb 2010 00:04:30 +0100
changeset 972 a2947558c966
parent 609 89de49831cd4
child 974 da4eb49856cd
permissions -rw-r--r--
Removing local copy of lookup. Will use openide-util for now and switch to org.openide.util.lookup when available.
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@576
     9
  </parent>
jtulach@576
    10
  <groupId>org.apidesign</groupId>
jtulach@576
    11
  <artifactId>simplescrambler</artifactId>
jtulach@576
    12
  <version>1.0</version>
jtulach@576
    13
  <url>http://maven.apache.org</url>
jtulach@576
    14
    <build>
jtulach@576
    15
        <plugins>
jtulach@576
    16
            <plugin>
jtulach@576
    17
                <groupId>org.apache.maven.plugins</groupId>
jtulach@576
    18
                <artifactId>maven-compiler-plugin</artifactId>
jtulach@576
    19
                <version>2.0.2</version>
jtulach@576
    20
                <configuration>
jtulach@576
    21
                    <source>1.5</source>
jtulach@576
    22
                    <target>1.5</target>
jtulach@576
    23
                </configuration>
jtulach@576
    24
            </plugin>
jtulach@609
    25
            <plugin>
jtulach@609
    26
                <groupId>org.apache.maven.plugins</groupId>
jtulach@609
    27
                <artifactId>maven-javadoc-plugin</artifactId>
jtulach@609
    28
                <version>2.5</version>
jtulach@609
    29
                <configuration>
jtulach@609
    30
                    <skip>true</skip>
jtulach@609
    31
                </configuration>
jtulach@609
    32
            </plugin>
jtulach@576
    33
        </plugins>
jtulach@576
    34
    </build>
jtulach@576
    35
    <dependencies>
jtulach@576
    36
    <dependency>
jtulach@576
    37
      <groupId>junit</groupId>
jtulach@576
    38
      <artifactId>junit</artifactId>
jtulach@576
    39
      <version>3.8.1</version>
jtulach@576
    40
      <scope>test</scope>
jtulach@576
    41
    </dependency>
jtulach@576
    42
    <dependency>
jtulach@576
    43
      <groupId>org.apidesign</groupId>
jtulach@576
    44
      <artifactId>anagram-spring-lookup</artifactId>
jtulach@576
    45
      <version>1.0</version>
jtulach@576
    46
    </dependency>
jtulach@583
    47
    </dependencies>
jtulach@576
    48
    <name>Simple Scrambler</name>
jtulach@576
    49
    <description>Replaces two letters in provided words.</description>
jtulach@576
    50
</project>