anagramdemo/anagrambase/pom.xml
author Jaroslav Tulach <jtulach@netbeans.org>
Thu, 07 Jun 2012 20:34:55 +0200
changeset 979 ca97def88911
parent 972 a2947558c966
permissions -rw-r--r--
Specifying parent pom in a way that complies with m3
jtulach@576
     1
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
jtulach@576
     2
  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
jtulach@576
     3
  <modelVersion>4.0.0</modelVersion>
jtulach@576
     4
  <groupId>org.apidesign</groupId>
jtulach@576
     5
  <packaging>jar</packaging>
jtulach@576
     6
  <version>1.0</version>
jtulach@576
     7
  <url>http://maven.apache.org</url>
jtulach@979
     8
  <parent>
jtulach@979
     9
    <artifactId>anagramdemo</artifactId>
jtulach@979
    10
    <groupId>org.apidesign</groupId>
jtulach@979
    11
    <version>2.0</version>
jtulach@979
    12
    <relativePath>..</relativePath>
jtulach@979
    13
  </parent>
jtulach@576
    14
  <repositories>
jtulach@576
    15
      <repository>
jtulach@576
    16
          <id>netbeans</id>
jtulach@576
    17
          <url>http://bits.netbeans.org/maven2/</url>
jtulach@576
    18
      </repository>
jtulach@576
    19
  </repositories>
jtulach@576
    20
    <build>
jtulach@576
    21
        <plugins>
jtulach@576
    22
            <plugin>
jtulach@576
    23
                <groupId>org.apache.maven.plugins</groupId>
jtulach@576
    24
                <artifactId>maven-compiler-plugin</artifactId>
jtulach@576
    25
                <version>2.0.2</version>
jtulach@576
    26
                <configuration>
jtulach@576
    27
                    <source>1.5</source>
jtulach@576
    28
                    <target>1.5</target>
jtulach@576
    29
                </configuration>
jtulach@576
    30
            </plugin>
jtulach@576
    31
            <plugin>
jtulach@576
    32
                <groupId>org.apache.maven.plugins</groupId>
jtulach@576
    33
                <artifactId>maven-surefire-plugin</artifactId>
jtulach@576
    34
                <version>2.4.2</version>
jtulach@576
    35
                <configuration>
jtulach@576
    36
                    <includes>
jtulach@576
    37
                        <include>**/*Test.java</include>
jtulach@576
    38
                    </includes>
jtulach@576
    39
                </configuration>
jtulach@576
    40
            </plugin>
jtulach@609
    41
            <plugin>
jtulach@609
    42
                <groupId>org.apache.maven.plugins</groupId>
jtulach@609
    43
                <artifactId>maven-javadoc-plugin</artifactId>
jtulach@609
    44
                <version>2.5</version>
jtulach@609
    45
                <configuration>
jtulach@609
    46
                    <skip>true</skip>
jtulach@609
    47
                </configuration>
jtulach@609
    48
            </plugin>
jtulach@576
    49
        </plugins>
jtulach@576
    50
    </build>
jtulach@576
    51
    <dependencies>
jtulach@576
    52
        <dependency>
jtulach@576
    53
            <groupId>org.springframework</groupId>
jtulach@576
    54
            <artifactId>spring-core</artifactId>
jtulach@576
    55
            <version>2.5.6</version>
jtulach@576
    56
        </dependency>
jtulach@576
    57
        <dependency>
jtulach@576
    58
            <groupId>org.springframework</groupId>
jtulach@576
    59
            <artifactId>spring-beans</artifactId>
jtulach@576
    60
            <version>2.5.6</version>
jtulach@576
    61
        </dependency>
jtulach@576
    62
        <dependency>
jtulach@576
    63
            <groupId>org.springframework</groupId>
jtulach@576
    64
            <artifactId>spring-context</artifactId>
jtulach@576
    65
            <version>2.5.6</version>
jtulach@576
    66
        </dependency>
jtulach@576
    67
        <dependency>
jtulach@576
    68
            <groupId>org.apidesign</groupId>
jtulach@576
    69
            <artifactId>spring-lookup</artifactId>
jtulach@576
    70
            <version>1.2</version>
jtulach@576
    71
        </dependency>
jtulach@576
    72
    </dependencies>
jtulach@591
    73
    <name>Anagram Game Base</name>
jtulach@576
    74
    <description>This project provides an example of combination
jtulach@576
    75
of the Spring's dependency injection and Lookup
jtulach@576
    76
META-INF/services registration.</description>
jtulach@576
    77
    <artifactId>anagram-spring-lookup</artifactId>
jtulach@576
    78
</project>