Files
spring-plugin/core/pom.xml
Oliver Gierke f0b5ff07a8 Updated pom.xml files.
* use Maven artifacts over the ones from the EBR
* moved common test dependencies to parent pom
* updated dependency versions where possible
2011-05-25 18:15:47 +02:00

49 lines
1.2 KiB
XML

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<artifactId>org.synyx.hera.core</artifactId>
<name>Hera Core</name>
<description>Core plugin infrastructure</description>
<parent>
<artifactId>org.synyx.hera</artifactId>
<groupId>org.synyx.hera</groupId>
<version>0.7.0.BUILD-SNAPSHOT</version>
</parent>
<dependencies>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-beans</artifactId>
<version>${spring.version}</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<version>${spring.version}</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-test</artifactId>
<version>${spring.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.5</source>
<target>1.5</target>
</configuration>
</plugin>
</plugins>
</build>
</project>