"Fossies" - the Fresh Open Source Software Archive 
Member "apache-log4j-2.12.4-src/log4j-flume-ng/pom.xml" (28 Dec 2021, 9151 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.
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/maven-v4_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-flume-ng</artifactId>
27 <packaging>jar</packaging>
28 <name>Apache Log4j Flume Bridge</name>
29 <description>The Apache Log4j Flume Appender</description>
30 <properties>
31 <log4jParentDir>${basedir}/..</log4jParentDir>
32 <docLabel>Flume Documentation</docLabel>
33 <projectDir>/flume-ng</projectDir>
34 <module.name>org.apache.logging.log4j.flume</module.name>
35 </properties>
36 <dependencies>
37 <dependency>
38 <groupId>org.apache.logging.log4j</groupId>
39 <artifactId>log4j-api</artifactId>
40 </dependency>
41 <dependency>
42 <groupId>org.apache.logging.log4j</groupId>
43 <artifactId>log4j-core</artifactId>
44 </dependency>
45 <dependency>
46 <groupId>com.sleepycat</groupId>
47 <artifactId>je</artifactId>
48 </dependency>
49 <dependency>
50 <groupId>org.apache.logging.log4j</groupId>
51 <artifactId>log4j-slf4j-impl</artifactId>
52 <scope>test</scope>
53 </dependency>
54 <dependency>
55 <groupId>org.apache.logging.log4j</groupId>
56 <artifactId>log4j-1.2-api</artifactId>
57 <scope>test</scope>
58 </dependency>
59 <dependency>
60 <groupId>org.apache.logging.log4j</groupId>
61 <artifactId>log4j-jcl</artifactId>
62 <scope>test</scope>
63 </dependency>
64 <dependency>
65 <groupId>org.apache.logging.log4j</groupId>
66 <artifactId>log4j-core</artifactId>
67 <type>test-jar</type>
68 <scope>test</scope>
69 </dependency>
70 <dependency>
71 <groupId>junit</groupId>
72 <artifactId>junit</artifactId>
73 <scope>test</scope>
74 </dependency>
75 <dependency>
76 <groupId>org.apache.flume</groupId>
77 <artifactId>flume-ng-sdk</artifactId>
78 </dependency>
79 <dependency>
80 <groupId>org.codehaus.jackson</groupId>
81 <artifactId>jackson-core-asl</artifactId>
82 </dependency>
83 <dependency>
84 <groupId>org.codehaus.jackson</groupId>
85 <artifactId>jackson-mapper-asl</artifactId>
86 </dependency>
87 <dependency>
88 <groupId>org.apache.flume</groupId>
89 <artifactId>flume-ng-core</artifactId>
90 <optional>true</optional>
91 </dependency>
92 <dependency>
93 <groupId>org.apache.flume</groupId>
94 <artifactId>flume-ng-embedded-agent</artifactId>
95 <optional>true</optional>
96 </dependency>
97 <dependency>
98 <groupId>org.apache.flume.flume-ng-channels</groupId>
99 <artifactId>flume-file-channel</artifactId>
100 <scope>test</scope>
101 </dependency>
102 <dependency>
103 <groupId>org.apache.hadoop</groupId>
104 <artifactId>hadoop-core</artifactId>
105 <scope>test</scope>
106 </dependency>
107 </dependencies>
108 <build>
109 <plugins>
110 <plugin>
111 <groupId>org.apache.maven.plugins</groupId>
112 <artifactId>maven-jar-plugin</artifactId>
113 <executions>
114 <execution>
115 <goals>
116 <goal>test-jar</goal>
117 </goals>
118 </execution>
119 </executions>
120 </plugin>
121 <!--
122 <plugin>
123 <groupId>org.apache.maven.plugins</groupId>
124 <artifactId>maven-surefire-plugin</artifactId>
125 <configuration>
126 <argLine>-Xms256m -Xmx1024m -XX:MaxPermSize=512m</argLine>
127 <forkCount>1</forkCount>
128 <reuseForks>true</reuseForks>
129 </configuration>
130 </plugin>
131 -->
132 <!-- Include the standard NOTICE and LICENSE -->
133 <plugin>
134 <groupId>org.apache.maven.plugins</groupId>
135 <artifactId>maven-remote-resources-plugin</artifactId>
136 <executions>
137 <execution>
138 <goals>
139 <goal>process</goal>
140 </goals>
141 <configuration>
142 <skip>false</skip>
143 </configuration>
144 </execution>
145 </executions>
146 </plugin>
147 <plugin>
148 <groupId>org.apache.felix</groupId>
149 <artifactId>maven-bundle-plugin</artifactId>
150 <configuration>
151 <instructions>
152 <Fragment-Host>org.apache.logging.log4j.core</Fragment-Host>
153 <Bundle-SymbolicName>org.apache.logging.log4j.flume</Bundle-SymbolicName>
154 <Export-Package>org.apache.logging.log4j.flume.appender</Export-Package>
155 </instructions>
156 </configuration>
157 </plugin>
158 </plugins>
159 </build>
160 <reporting>
161 <plugins>
162 <plugin>
163 <groupId>org.apache.maven.plugins</groupId>
164 <artifactId>maven-changes-plugin</artifactId>
165 <version>${changes.plugin.version}</version>
166 <reportSets>
167 <reportSet>
168 <reports>
169 <report>changes-report</report>
170 </reports>
171 </reportSet>
172 </reportSets>
173 <configuration>
174 <issueLinkTemplate>%URL%/show_bug.cgi?id=%ISSUE%</issueLinkTemplate>
175 <useJql>true</useJql>
176 </configuration>
177 </plugin>
178 <plugin>
179 <groupId>org.apache.maven.plugins</groupId>
180 <artifactId>maven-checkstyle-plugin</artifactId>
181 <version>${checkstyle.plugin.version}</version>
182 <configuration>
183 <!--<propertiesLocation>${vfs.parent.dir}/checkstyle.properties</propertiesLocation> -->
184 <configLocation>${log4jParentDir}/checkstyle.xml</configLocation>
185 <suppressionsLocation>${log4jParentDir}/checkstyle-suppressions.xml</suppressionsLocation>
186 <enableRulesSummary>false</enableRulesSummary>
187 <propertyExpansion>basedir=${basedir}</propertyExpansion>
188 <propertyExpansion>licensedir=${log4jParentDir}/checkstyle-header.txt</propertyExpansion>
189 </configuration>
190 </plugin>
191 <plugin>
192 <groupId>org.apache.maven.plugins</groupId>
193 <artifactId>maven-javadoc-plugin</artifactId>
194 <version>${javadoc.plugin.version}</version>
195 <configuration>
196 <bottom><![CDATA[<p align="center">Copyright © {inceptionYear}-{currentYear} {organizationName}. All Rights Reserved.<br />
197 Apache Logging, Apache Log4j, Log4j, Apache, the Apache feather logo, the Apache Logging project logo,
198 and the Apache Log4j logo are trademarks of The Apache Software Foundation.</p>]]></bottom>
199 <!-- module link generation is completely broken in the javadoc plugin for a multi-module non-aggregating
200 project -->
201 <detectOfflineLinks>false</detectOfflineLinks>
202 <linksource>true</linksource>
203 </configuration>
204 <reportSets>
205 <reportSet>
206 <id>non-aggregate</id>
207 <reports>
208 <report>javadoc</report>
209 </reports>
210 </reportSet>
211 </reportSets>
212 </plugin>
213 <plugin>
214 <groupId>org.codehaus.mojo</groupId>
215 <artifactId>findbugs-maven-plugin</artifactId>
216 <version>${findbugs.plugin.version}</version>
217 <configuration>
218 <fork>true</fork>
219 <jvmArgs>-Duser.language=en</jvmArgs>
220 <threshold>Normal</threshold>
221 <effort>Default</effort>
222 <excludeFilterFile>${log4jParentDir}/findbugs-exclude-filter.xml</excludeFilterFile>
223 </configuration>
224 </plugin>
225 <plugin>
226 <groupId>org.apache.maven.plugins</groupId>
227 <artifactId>maven-jxr-plugin</artifactId>
228 <version>${jxr.plugin.version}</version>
229 <reportSets>
230 <reportSet>
231 <id>non-aggregate</id>
232 <reports>
233 <report>jxr</report>
234 </reports>
235 </reportSet>
236 <reportSet>
237 <id>aggregate</id>
238 <reports>
239 <report>aggregate</report>
240 </reports>
241 </reportSet>
242 </reportSets>
243 </plugin>
244 <plugin>
245 <groupId>org.apache.maven.plugins</groupId>
246 <artifactId>maven-pmd-plugin</artifactId>
247 <version>${pmd.plugin.version}</version>
248 <configuration>
249 <targetJdk>${maven.compiler.target}</targetJdk>
250 </configuration>
251 </plugin>
252 </plugins>
253 </reporting>
254 </project>
255