forked from Mahoney/sysout-over-slf4j
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
122 lines (109 loc) · 4.03 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
<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>uk.org.lidalia</groupId>
<artifactId>parent</artifactId>
<version>1.3.0</version>
</parent>
<groupId>uk.org.lidalia.sysout-over-slf4j</groupId>
<artifactId>sysout-over-slf4j-parent</artifactId>
<version>2.0.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>System Out and Err redirected to SLF4J</name>
<url>http://projects.lidalia.org.uk/sysout-over-slf4j/</url>
<description>Library to send raw System.out and System.err output to SLF4J for proper logging control</description>
<distributionManagement>
<site>
<id>github</id>
<url>file:///tmp/${project.name}</url>
</site>
</distributionManagement>
<modules>
<module>sysout-over-slf4j-context</module>
<module>sysout-over-slf4j-system</module>
<module>functional-tests</module>
</modules>
<issueManagement>
<system>GitHub Issues</system>
<url>https://github.com/Mahoney/sysout-over-slf4j/issues</url>
</issueManagement>
<developers>
<developer>
<name>Robert Elliot</name>
<email>rob@lidalia.org.uk</email>
</developer>
</developers>
<licenses>
<license>
<name>MIT X11 License</name>
<url>file://${project.basedir}/LICENSE.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<connection>scm:git:git@github.com:Mahoney/sysout-over-slf4j.git</connection>
<developerConnection>scm:git:git@github.com:Mahoney/sysout-over-slf4j.git</developerConnection>
<url>https://github.com/Mahoney/sysout-over-slf4j</url>
</scm>
<mailingLists>
<mailingList>
<name>slf4j-announcements list</name>
<subscribe>http://www.qos.ch/mailman/listinfo/announce</subscribe>
<unsubscribe>http://www.qos.ch/mailman/options/announce</unsubscribe>
<archive>http://www.qos.ch/pipermail/announce/</archive>
<otherArchives>
<otherArchive>http://marc.theaimsgroup.com/?l=slf4j-announce</otherArchive>
</otherArchives>
</mailingList>
<mailingList>
<name>slf4j-user list</name>
<subscribe>http://www.qos.ch/mailman/listinfo/slf4j-user</subscribe>
<unsubscribe>http://www.qos.ch/mailman/options/slf4j-user</unsubscribe>
<post>slf4j-user@qos.ch</post>
<archive>http://www.qos.ch/pipermail/slf4j-user/</archive>
<otherArchives>
<otherArchive>http://news.gmane.org/gmane.comp.java.slf4j.user</otherArchive>
<otherArchive>http://marc.theaimsgroup.com/?l=slf4j-user</otherArchive>
<otherArchive>http://www.nabble.com/Slf4J---user-f13203.html</otherArchive>
<otherArchive>http://www.mail-archive.com/user%40slf4j.org/</otherArchive>
</otherArchives>
</mailingList>
</mailingLists>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>uk.org.lidalia</groupId>
<artifactId>lidalia-test-dependencies</artifactId>
<version>1.1.0</version>
<type>pom</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>${commons-io.version}</version>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-core</artifactId>
<version>${logback.version}</version>
</dependency>
<dependency>
<groupId>uk.org.lidalia</groupId>
<artifactId>lidalia-lang</artifactId>
<version>1.0.0</version>
</dependency>
<dependency>
<groupId>uk.org.lidalia</groupId>
<artifactId>lidalia-slf4j-ext</artifactId>
<version>1.0.0</version>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
<version>2.3</version>
</dependency>
</dependencies>
</dependencyManagement>
</project>