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.
83 lines
2.2 KiB
83 lines
2.2 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-mongodb-parent</artifactId> |
|
<version>1.0.0.BUILD-SNAPSHOT</version> |
|
<relativePath>../spring-data-mongodb-parent/pom.xml</relativePath> |
|
</parent> |
|
<artifactId>spring-data-mongodb-log4j</artifactId> |
|
<name>Spring Data MongoDB Log4J Appender</name> |
|
|
|
<properties> |
|
<mongo.version>2.3</mongo.version> |
|
</properties> |
|
|
|
<dependencies> |
|
|
|
<!-- MongoDB --> |
|
<dependency> |
|
<groupId>org.mongodb</groupId> |
|
<artifactId>mongo-java-driver</artifactId> |
|
<version>${mongo.version}</version> |
|
</dependency> |
|
|
|
<!-- Logging --> |
|
<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>compile</scope> |
|
</dependency> |
|
|
|
<!-- Test dependencies --> |
|
<dependency> |
|
<groupId>org.mockito</groupId> |
|
<artifactId>mockito-all</artifactId> |
|
<scope>test</scope> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>org.hamcrest</groupId> |
|
<artifactId>hamcrest-all</artifactId> |
|
<version>1.1</version> |
|
<scope>test</scope> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>junit</groupId> |
|
<artifactId>junit</artifactId> |
|
<scope>test</scope> |
|
</dependency> |
|
|
|
</dependencies> |
|
|
|
<build> |
|
<plugins> |
|
<plugin> |
|
<groupId>com.springsource.bundlor</groupId> |
|
<artifactId>com.springsource.bundlor.maven</artifactId> |
|
</plugin> |
|
</plugins> |
|
</build> |
|
|
|
</project>
|
|
|