forked from qos-ch/logback-contrib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
executable file
·286 lines (254 loc) · 10.2 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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright (C) 2014, The logback-contrib developers. All rights reserved.
This program and the accompanying materials are dual-licensed under
either the terms of the Eclipse Public License v1.0 as published by
the Eclipse Foundation
or (per the licensee's choosing)
under the terms of the GNU Lesser General Public License version 2.1
as published by the Free Software Foundation.
-->
<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.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>7</version>
</parent>
<groupId>ch.qos.logback.contrib</groupId>
<artifactId>logback-contrib-parent</artifactId>
<packaging>pom</packaging>
<version>0.1.3-SNAPSHOT</version>
<name>Logback Contrib</name>
<url>https://github.com/qos-ch/logback-contrib/wiki</url>
<description>
Logback Contrib provides community-driven and supported
extensions to the Logback logging framework. All contributions
are made by contributors with CLA on file.
</description>
<inceptionYear>2012</inceptionYear>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0</url>
</license>
</licenses>
<scm>
<connection>scm:git:git://github.com/qos-ch/logback-contrib.git</connection>
<developerConnection>scm:git:[email protected]:qos-ch/logback-contrib.git</developerConnection>
<url>https://github.com/qos-ch/logback-contrib</url>
</scm>
<issueManagement>
<system>GitHub</system>
<url>https://github.com/qos-ch/logback-contrib/issues</url>
</issueManagement>
<developers>
<developer>
<id>lhazlewood</id>
<name>Les Hazlewood</name>
<email>[email protected]</email>
<url>http://www.leshazlewood.com</url>
<timezone>-8</timezone>
</developer>
<developer>
<id>belaso</id>
<name>Christian Trutz</name>
<email>[email protected]</email>
<url>http://www.belaso.de</url>
<timezone>+2</timezone>
</developer>
<developer>
<id>tony19</id>
<name>Tony Trinh</name>
<email>[email protected]</email>
<url>http://tony19.github.com</url>
<timezone>-5</timezone>
</developer>
</developers>
<contributors>
<contributor>
<name>David J. M. Karlsen</name>
<email>[email protected]</email>
</contributor>
</contributors>
<modules>
<module>json</module>
<module>jackson</module>
<module>mongodb</module>
<module>eclipse</module>
</modules>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<!-- Compile Dependencies: -->
<logback.version>1.0.9</logback.version>
<jackson.version>2.1.3</jackson.version>
<mongo-java-driver.version>2.10.1</mongo-java-driver.version>
<!-- Test Dependencies: -->
<easymock.version>3.1</easymock.version>
<groovy.version>1.8.6</groovy.version>
<jmockit.version>0.999.15</jmockit.version>
<junit.version>4.8.2</junit.version>
</properties>
<dependencies>
<!-- Test Dependencies for _all_ children modules: -->
<dependency>
<groupId>org.easymock</groupId>
<artifactId>easymock</artifactId>
<version>${easymock.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.googlecode.jmockit</groupId>
<artifactId>jmockit</artifactId>
<version>${jmockit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
<dependencyManagement>
<dependencies>
<!-- Pool of dependencies available to any sub-module, but not included automatically.
They must be explicitly referenced in the children POMs, but _don't_ include
version numbers in the child POMs. Define them here only to guarantee version
compatibility across children modules! -->
<!-- Logback Extensions sub-modules dependency .jars (alphabetized based on artifactId for easy scanning please!): -->
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-access</artifactId>
<version>${logback.version}</version>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>${logback.version}</version>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-core</artifactId>
<version>${logback.version}</version>
</dependency>
<!-- 3rd party dependencies: -->
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
<version>2.5</version>
<scope>provided</scope>
<optional>true</optional>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>${jackson.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.mongodb</groupId>
<artifactId>mongo-java-driver</artifactId>
<version>${mongo-java-driver.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<!-- Allow tests to be written in Groovy: -->
<plugin>
<groupId>org.codehaus.gmaven</groupId>
<artifactId>gmaven-plugin</artifactId>
<version>1.5</version>
<executions>
<execution>
<goals>
<!--suppress MavenModelInspection -->
<goal>testCompile</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.2.2</version>
<configuration>
<preparationGoals>clean install</preparationGoals>
<autoVersionSubmodules>true</autoVersionSubmodules>
<useReleaseProfile>false</useReleaseProfile>
<!-- <goals>deploy site-deploy</goals> -->
<goals>deploy</goals>
<arguments>-Prelease</arguments>
<mavenExecutorId>forked-path</mavenExecutorId>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.4</version>
<configuration>
<archive>
<manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
</archive>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<version>2.3.7</version>
<executions>
<execution>
<id>bundle-manifest</id>
<phase>process-classes</phase>
<goals>
<goal>manifest</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- to format license headers, enter: "mvn license:format" -->
<plugin>
<groupId>com.mycila</groupId>
<artifactId>license-maven-plugin</artifactId>
<version>2.6</version>
<configuration>
<header>${project.parent.basedir}/license-template.txt</header>
<properties>
<owner>The logback-contrib developers</owner>
<year>2014</year>
<email>[email protected]</email>
</properties>
<excludes>
<exclude>**/README*</exclude>
<exclude>**/LICENSE*</exclude>
<exclude>**/AUTHORS*</exclude>
<exclude>src/test/resources/**</exclude>
<exclude>src/main/resources/**</exclude>
</excludes>
</configuration>
<executions>
<execution>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>