anagramdemo/anagrambase/pom.xml
author Jaroslav Tulach <jtulach@netbeans.org>
Wed, 03 Feb 2010 00:04:30 +0100
changeset 972 a2947558c966
parent 609 89de49831cd4
child 979 ca97def88911
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
<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@576
     8
  <repositories>
jtulach@576
     9
      <repository>
jtulach@576
    10
          <id>netbeans</id>
jtulach@576
    11
          <url>http://bits.netbeans.org/maven2/</url>
jtulach@576
    12
      </repository>
jtulach@576
    13
  </repositories>
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@576
    25
            <plugin>
jtulach@576
    26
                <groupId>org.apache.maven.plugins</groupId>
jtulach@576
    27
                <artifactId>maven-surefire-plugin</artifactId>
jtulach@576
    28
                <version>2.4.2</version>
jtulach@576
    29
                <configuration>
jtulach@576
    30
                    <includes>
jtulach@576
    31
                        <include>**/*Test.java</include>
jtulach@576
    32
                    </includes>
jtulach@576
    33
                </configuration>
jtulach@576
    34
            </plugin>
jtulach@609
    35
            <plugin>
jtulach@609
    36
                <groupId>org.apache.maven.plugins</groupId>
jtulach@609
    37
                <artifactId>maven-javadoc-plugin</artifactId>
jtulach@609
    38
                <version>2.5</version>
jtulach@609
    39
                <configuration>
jtulach@609
    40
                    <skip>true</skip>
jtulach@609
    41
                </configuration>
jtulach@609
    42
            </plugin>
jtulach@576
    43
        </plugins>
jtulach@576
    44
    </build>
jtulach@576
    45
    <dependencies>
jtulach@576
    46
        <dependency>
jtulach@576
    47
            <groupId>org.springframework</groupId>
jtulach@576
    48
            <artifactId>spring-core</artifactId>
jtulach@576
    49
            <version>2.5.6</version>
jtulach@576
    50
        </dependency>
jtulach@576
    51
        <dependency>
jtulach@576
    52
            <groupId>org.springframework</groupId>
jtulach@576
    53
            <artifactId>spring-beans</artifactId>
jtulach@576
    54
            <version>2.5.6</version>
jtulach@576
    55
        </dependency>
jtulach@576
    56
        <dependency>
jtulach@576
    57
            <groupId>org.springframework</groupId>
jtulach@576
    58
            <artifactId>spring-context</artifactId>
jtulach@576
    59
            <version>2.5.6</version>
jtulach@576
    60
        </dependency>
jtulach@576
    61
        <dependency>
jtulach@576
    62
            <groupId>org.apidesign</groupId>
jtulach@576
    63
            <artifactId>spring-lookup</artifactId>
jtulach@576
    64
            <version>1.2</version>
jtulach@576
    65
        </dependency>
jtulach@576
    66
    </dependencies>
jtulach@591
    67
    <name>Anagram Game Base</name>
jtulach@576
    68
    <description>This project provides an example of combination
jtulach@576
    69
of the Spring's dependency injection and Lookup
jtulach@576
    70
META-INF/services registration.</description>
jtulach@576
    71
    <artifactId>anagram-spring-lookup</artifactId>
jtulach@576
    72
</project>