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.
44 lines
1.3 KiB
44 lines
1.3 KiB
<?xml version="1.0" encoding="UTF-8"?> |
|
<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.5.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> |
|
<scope>compile</scope> |
|
</dependency> |
|
|
|
</dependencies> |
|
|
|
<build> |
|
<plugins> |
|
<plugin> |
|
<groupId>com.springsource.bundlor</groupId> |
|
<artifactId>com.springsource.bundlor.maven</artifactId> |
|
</plugin> |
|
</plugins> |
|
</build> |
|
|
|
</project>
|
|
|