forked from dhanji/sitebricks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
58 lines (54 loc) · 1.99 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<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>com.google.sitebricks</groupId>
<artifactId>sitebricks-parent</artifactId>
<version>0.8.9-SNAPSHOT</version>
</parent>
<artifactId>sitebricks-slf4j</artifactId>
<name>Sitebricks :: SLF4J Module</name>
<description>Slf4j logging support for Guice applications (does not require sitebricks)</description>
<dependencies>
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<version>${org.testng.version}</version>
<classifier>jdk15</classifier>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.google.inject</groupId>
<artifactId>guice</artifactId>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>${ch.qos.logback.version}</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
</plugins>
</build>
<!-- This should be removed when the googlecode repositories are migrated to the standard Nexus OSS repository infrastructure -->
<distributionManagement>
<snapshotRepository>
<id>google-snapshots</id>
<name>Sonatype OSS Nexus Snapshots</name>
<url>https://oss.sonatype.org/content/repositories/google-snapshots</url>
</snapshotRepository>
<repository>
<id>google-with-staging</id>
<name>Nexus OSS Staging Repository</name>
<url> https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
</project>