You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
132 lines
3.7 KiB
132 lines
3.7 KiB
<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> |
|
<parent> |
|
<groupId>org.springframework.data</groupId> |
|
<artifactId>spring-data-document-parent</artifactId> |
|
<version>1.0.0.M1</version> |
|
<relativePath>../spring-data-document-parent/pom.xml</relativePath> |
|
</parent> |
|
<artifactId>spring-data-document-core</artifactId> |
|
<packaging>jar</packaging> |
|
<name>Spring Data Document Support</name> |
|
<dependencies> |
|
|
|
<!-- Spring --> |
|
<dependency> |
|
<groupId>org.springframework</groupId> |
|
<artifactId>spring-beans</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework</groupId> |
|
<artifactId>spring-tx</artifactId> |
|
</dependency> |
|
|
|
<!-- Logging --> |
|
<dependency> |
|
<groupId>org.slf4j</groupId> |
|
<artifactId>slf4j-api</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.slf4j</groupId> |
|
<artifactId>jcl-over-slf4j</artifactId> |
|
<scope>compile</scope> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.slf4j</groupId> |
|
<artifactId>slf4j-log4j12</artifactId> |
|
<scope>runtime</scope> |
|
</dependency> |
|
<dependency> |
|
<groupId>log4j</groupId> |
|
<artifactId>log4j</artifactId> |
|
<exclusions> |
|
<exclusion> |
|
<groupId>javax.mail</groupId> |
|
<artifactId>mail</artifactId> |
|
</exclusion> |
|
<exclusion> |
|
<groupId>javax.jms</groupId> |
|
<artifactId>jms</artifactId> |
|
</exclusion> |
|
<exclusion> |
|
<groupId>com.sun.jdmk</groupId> |
|
<artifactId>jmxtools</artifactId> |
|
</exclusion> |
|
<exclusion> |
|
<groupId>com.sun.jmx</groupId> |
|
<artifactId>jmxri</artifactId> |
|
</exclusion> |
|
</exclusions> |
|
<scope>runtime</scope> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>javax.annotation</groupId> |
|
<artifactId>jsr250-api</artifactId> |
|
<optional>true</optional> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>org.mockito</groupId> |
|
<artifactId>mockito-all</artifactId> |
|
<scope>test</scope> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>junit</groupId> |
|
<artifactId>junit</artifactId> |
|
</dependency> |
|
|
|
|
|
<!-- Dependencies for web analytics functionality - to me moved into spring framework --> |
|
<dependency> |
|
<groupId>javax.servlet</groupId> |
|
<artifactId>servlet-api</artifactId> |
|
<version>2.5</version> |
|
<scope>provided</scope> |
|
</dependency> |
|
<!-- Spring dependencies --> |
|
<dependency> |
|
<groupId>org.springframework</groupId> |
|
<artifactId>spring-core</artifactId> |
|
<version>${org.springframework.version}</version> |
|
<exclusions> |
|
<exclusion> |
|
<groupId>commons-logging</groupId> |
|
<artifactId>commons-logging</artifactId> |
|
</exclusion> |
|
</exclusions> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework</groupId> |
|
<artifactId>spring-web</artifactId> |
|
<version>${org.springframework.version}</version> |
|
<exclusions> |
|
<exclusion> |
|
<groupId>commons-logging</groupId> |
|
<artifactId>commons-logging</artifactId> |
|
</exclusion> |
|
</exclusions> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework</groupId> |
|
<artifactId>spring-webmvc</artifactId> |
|
<version>${org.springframework.version}</version> |
|
<exclusions> |
|
<exclusion> |
|
<groupId>commons-logging</groupId> |
|
<artifactId>commons-logging</artifactId> |
|
</exclusion> |
|
</exclusions> |
|
</dependency> |
|
</dependencies> |
|
<build> |
|
<plugins> |
|
<plugin> |
|
<groupId>com.springsource.bundlor</groupId> |
|
<artifactId>com.springsource.bundlor.maven</artifactId> |
|
</plugin> |
|
</plugins> |
|
</build> |
|
</project>
|
|
|