"Fossies" - the Fresh Open Source Software Archive 
Member "apache-log4j-2.12.4-src/log4j-slf4j18-impl/pom.xml" (28 Dec 2021, 9404 Bytes) of package /linux/misc/apache-log4j-2.12.4-src.tar.gz:
As a special service "Fossies" has tried to format the requested source page into HTML format using (guessed) XML source code syntax highlighting (style:
standard) with prefixed line numbers.
Alternatively you can here
view or
download the uninterpreted source code file.
See also the latest
Fossies "Diffs" side-by-side code changes report for "pom.xml":
2.12.3_vs_2.12.4.
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Licensed to the Apache Software Foundation (ASF) under one or more
4 contributor license agreements. See the NOTICE file distributed with
5 this work for additional information regarding copyright ownership.
6 The ASF licenses this file to You under the Apache License, Version 2.0
7 (the "License"); you may not use this file except in compliance with
8 the License. You may obtain a copy of the License at
9
10 http://www.apache.org/licenses/LICENSE-2.0
11
12 Unless required by applicable law or agreed to in writing, software
13 distributed under the License is distributed on an "AS IS" BASIS,
14 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 See the License for the specific language governing permissions and
16 limitations under the License.
17 -->
18 <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/xsd/maven-4.0.0.xsd">
19 <modelVersion>4.0.0</modelVersion>
20 <parent>
21 <groupId>org.apache.logging.log4j</groupId>
22 <artifactId>log4j</artifactId>
23 <version>2.12.4</version>
24 <relativePath>../</relativePath>
25 </parent>
26 <artifactId>log4j-slf4j18-impl</artifactId>
27 <packaging>jar</packaging>
28 <name>Apache Log4j SLF4J 1.8+ Binding</name>
29 <description>The Apache Log4j SLF4J 1.8 API binding to Log4j 2 Core</description>
30 <properties>
31 <log4jParentDir>${basedir}/..</log4jParentDir>
32 <docLabel>SLF4J Documentation</docLabel>
33 <projectDir>/slf4j18</projectDir>
34 <slf4j.version>1.8.0-alpha2</slf4j.version>
35 <module.name>org.apache.logging.log4j.slf4j</module.name>
36 </properties>
37 <dependencies>
38 <dependency>
39 <groupId>org.slf4j</groupId>
40 <artifactId>slf4j-api</artifactId>
41 <version>${slf4j.version}</version>
42 </dependency>
43 <dependency>
44 <groupId>org.slf4j</groupId>
45 <artifactId>slf4j-ext</artifactId>
46 <version>${slf4j.version}</version>
47 <optional>true</optional>
48 </dependency>
49 <dependency>
50 <groupId>org.apache.logging.log4j</groupId>
51 <artifactId>log4j-api</artifactId>
52 </dependency>
53 <dependency>
54 <groupId>org.apache.logging.log4j</groupId>
55 <artifactId>log4j-core</artifactId>
56 <scope>runtime</scope>
57 </dependency>
58 <dependency>
59 <groupId>org.apache.logging.log4j</groupId>
60 <artifactId>log4j-api</artifactId>
61 <type>test-jar</type>
62 <scope>test</scope>
63 </dependency>
64 <dependency>
65 <groupId>org.apache.commons</groupId>
66 <artifactId>commons-lang3</artifactId>
67 <scope>test</scope>
68 </dependency>
69 <dependency>
70 <groupId>org.apache.commons</groupId>
71 <artifactId>commons-csv</artifactId>
72 <scope>test</scope>
73 </dependency>
74 <dependency>
75 <groupId>org.apache.logging.log4j</groupId>
76 <artifactId>log4j-core</artifactId>
77 <type>test-jar</type>
78 <scope>test</scope>
79 </dependency>
80 <dependency>
81 <groupId>org.apache.logging.log4j</groupId>
82 <artifactId>log4j-to-slf4j</artifactId>
83 <scope>test</scope>
84 <version>${project.version}</version>
85 </dependency>
86 <dependency>
87 <groupId>junit</groupId>
88 <artifactId>junit</artifactId>
89 <scope>test</scope>
90 </dependency>
91 </dependencies>
92 <build>
93 <plugins>
94 <!-- Include the standard NOTICE and LICENSE -->
95 <plugin>
96 <groupId>org.apache.maven.plugins</groupId>
97 <artifactId>maven-remote-resources-plugin</artifactId>
98 <executions>
99 <execution>
100 <goals>
101 <goal>process</goal>
102 </goals>
103 <configuration>
104 <skip>false</skip>
105 </configuration>
106 </execution>
107 </executions>
108 </plugin>
109 <plugin>
110 <groupId>org.apache.maven.plugins</groupId>
111 <artifactId>maven-surefire-plugin</artifactId>
112 <executions>
113 <execution>
114 <id>loop-test</id>
115 <phase>test</phase>
116 <goals>
117 <goal>test</goal>
118 </goals>
119 <configuration>
120 <includes>
121 <include>**/OverflowTest.java</include>
122 </includes>
123 </configuration>
124 </execution>
125 <execution>
126 <id>default-test</id>
127 <phase>test</phase>
128 <goals>
129 <goal>test</goal>
130 </goals>
131 <configuration>
132 <includes>
133 <include>**/*Test.java</include>
134 </includes>
135 <excludes>
136 <exclude>**/OverflowTest.java</exclude>
137 </excludes>
138 <classpathDependencyExcludes>
139 <classpathDependencyExcludes>org.apache.logging.log4j:log4j-to-slf4j</classpathDependencyExcludes>
140 </classpathDependencyExcludes>
141 </configuration>
142 </execution>
143 </executions>
144 </plugin>
145 <plugin>
146 <groupId>org.apache.felix</groupId>
147 <artifactId>maven-bundle-plugin</artifactId>
148 <configuration>
149 <instructions>
150 <Export-Package>
151 org.apache.logging.slf4j,
152 org.slf4j.impl
153 </Export-Package>
154 <Require-Capability>
155 osgi.extender;filter:="(osgi.extender=osgi.serviceloader.registrar)"
156 </Require-Capability>
157 <Provide-Capability>
158 osgi.serviceloader;osgi.serviceloader=org.slf4j.spi.SLF4JServiceProvider
159 </Provide-Capability>
160 </instructions>
161 </configuration>
162 </plugin>
163 </plugins>
164 </build>
165 <reporting>
166 <plugins>
167 <plugin>
168 <groupId>org.apache.maven.plugins</groupId>
169 <artifactId>maven-changes-plugin</artifactId>
170 <version>${changes.plugin.version}</version>
171 <reportSets>
172 <reportSet>
173 <reports>
174 <report>changes-report</report>
175 </reports>
176 </reportSet>
177 </reportSets>
178 <configuration>
179 <issueLinkTemplate>%URL%/show_bug.cgi?id=%ISSUE%</issueLinkTemplate>
180 <useJql>true</useJql>
181 </configuration>
182 </plugin>
183 <plugin>
184 <groupId>org.apache.maven.plugins</groupId>
185 <artifactId>maven-checkstyle-plugin</artifactId>
186 <version>${checkstyle.plugin.version}</version>
187 <configuration>
188 <!--<propertiesLocation>${vfs.parent.dir}/checkstyle.properties</propertiesLocation> -->
189 <configLocation>${log4jParentDir}/checkstyle.xml</configLocation>
190 <suppressionsLocation>${log4jParentDir}/checkstyle-suppressions.xml</suppressionsLocation>
191 <enableRulesSummary>false</enableRulesSummary>
192 <propertyExpansion>basedir=${basedir}</propertyExpansion>
193 <propertyExpansion>licensedir=${log4jParentDir}/checkstyle-header.txt</propertyExpansion>
194 </configuration>
195 </plugin>
196 <plugin>
197 <groupId>org.apache.maven.plugins</groupId>
198 <artifactId>maven-javadoc-plugin</artifactId>
199 <version>${javadoc.plugin.version}</version>
200 <configuration>
201 <bottom><![CDATA[<p align="center">Copyright © {inceptionYear}-{currentYear} {organizationName}. All Rights Reserved.<br />
202 Apache Logging, Apache Log4j, Log4j, Apache, the Apache feather logo, the Apache Logging project logo,
203 and the Apache Log4j logo are trademarks of The Apache Software Foundation.</p>]]></bottom>
204 <!-- module link generation is completely broken in the javadoc plugin for a multi-module non-aggregating
205 project -->
206 <detectOfflineLinks>false</detectOfflineLinks>
207 <linksource>true</linksource>
208 </configuration>
209 <reportSets>
210 <reportSet>
211 <id>non-aggregate</id>
212 <reports>
213 <report>javadoc</report>
214 </reports>
215 </reportSet>
216 </reportSets>
217 </plugin>
218 <plugin>
219 <groupId>org.codehaus.mojo</groupId>
220 <artifactId>findbugs-maven-plugin</artifactId>
221 <version>${findbugs.plugin.version}</version>
222 <configuration>
223 <fork>true</fork>
224 <jvmArgs>-Duser.language=en</jvmArgs>
225 <threshold>Normal</threshold>
226 <effort>Default</effort>
227 <excludeFilterFile>${log4jParentDir}/findbugs-exclude-filter.xml</excludeFilterFile>
228 </configuration>
229 </plugin>
230 <plugin>
231 <groupId>org.apache.maven.plugins</groupId>
232 <artifactId>maven-jxr-plugin</artifactId>
233 <version>${jxr.plugin.version}</version>
234 <reportSets>
235 <reportSet>
236 <id>non-aggregate</id>
237 <reports>
238 <report>jxr</report>
239 </reports>
240 </reportSet>
241 <reportSet>
242 <id>aggregate</id>
243 <reports>
244 <report>aggregate</report>
245 </reports>
246 </reportSet>
247 </reportSets>
248 </plugin>
249 <plugin>
250 <groupId>org.apache.maven.plugins</groupId>
251 <artifactId>maven-pmd-plugin</artifactId>
252 <version>${pmd.plugin.version}</version>
253 <configuration>
254 <targetJdk>${maven.compiler.target}</targetJdk>
255 </configuration>
256 </plugin>
257 </plugins>
258 </reporting>
259 </project>
260