anagramdemo/staticwordlibrary/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@979
     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@580
    12
  <artifactId>staticwordlibrary</artifactId>
jtulach@576
    13
  <version>1.0</version>
jtulach@576
    14
  <url>http://maven.apache.org</url>
jtulach@576
    15
  <dependencies>
jtulach@576
    16
    <dependency>
jtulach@576
    17
      <groupId>junit</groupId>
jtulach@576
    18
      <artifactId>junit</artifactId>
jtulach@576
    19
      <version>3.8.1</version>
jtulach@576
    20
      <scope>test</scope>
jtulach@576
    21
    </dependency>
jtulach@576
    22
    <dependency>
jtulach@576
    23
          <groupId>org.apidesign</groupId>
jtulach@576
    24
          <artifactId>anagram-spring-lookup</artifactId>
jtulach@576
    25
          <version>1.0</version>
jtulach@972
    26
    </dependency>
jtulach@576
    27
  </dependencies>
jtulach@576
    28
    <name>Static Word Library</name>
jtulach@576
    29
    <description>Provides an implementation of WordLibrary interface and registers it
jtulach@576
    30
via Java Extension Mechanism, so it is it visible to Lookup.getDefault()
jtulach@576
    31
implementation.
jtulach@576
    32
</description>
jtulach@576
    33
    <build>
jtulach@576
    34
        <plugins>
jtulach@576
    35
            <plugin>
jtulach@576
    36
                <groupId>org.apache.maven.plugins</groupId>
jtulach@576
    37
                <artifactId>maven-compiler-plugin</artifactId>
jtulach@576
    38
                <version>2.0.2</version>
jtulach@576
    39
                <configuration>
jtulach@576
    40
                    <source>1.5</source>
jtulach@576
    41
                    <target>1.5</target>
jtulach@974
    42
                    <compilerArguments>
jtulach@974
    43
                        <sourcepath>${project.basedir}/src/main/java</sourcepath>
jtulach@974
    44
                    </compilerArguments>
jtulach@576
    45
                </configuration>
jtulach@576
    46
            </plugin>
jtulach@609
    47
            <plugin>
jtulach@609
    48
                <groupId>org.apache.maven.plugins</groupId>
jtulach@609
    49
                <artifactId>maven-javadoc-plugin</artifactId>
jtulach@609
    50
                <version>2.5</version>
jtulach@609
    51
                <configuration>
jtulach@609
    52
                    <skip>true</skip>
jtulach@609
    53
                </configuration>
jtulach@609
    54
            </plugin>
jtulach@576
    55
        </plugins>
jtulach@576
    56
    </build>
jtulach@576
    57
</project>