"Fossies" - the Fresh Open Source Software Archive 
Member "apache-log4j-2.12.4-src/log4j-couchdb/pom.xml" (28 Dec 2021, 6744 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
19 <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">
20 <parent>
21 <groupId>org.apache.logging.log4j</groupId>
22 <artifactId>log4j</artifactId>
23 <version>2.12.4</version>
24 </parent>
25 <modelVersion>4.0.0</modelVersion>
26
27 <artifactId>log4j-couchdb</artifactId>
28 <name>Apache Log4j CouchDB</name>
29 <description>
30 CouchDB appender for Log4j.
31 </description>
32 <properties>
33 <log4jParentDir>${basedir}/..</log4jParentDir>
34 <docLabel>CouchDB Documentation</docLabel>
35 <projectDir>/log4j-couchdb</projectDir>
36 <module.name>org.apache.logging.log4j.couchdb</module.name>
37 </properties>
38
39 <dependencies>
40 <dependency>
41 <groupId>org.apache.logging.log4j</groupId>
42 <artifactId>log4j-core</artifactId>
43 </dependency>
44 <dependency>
45 <groupId>org.lightcouch</groupId>
46 <artifactId>lightcouch</artifactId>
47 </dependency>
48 <!-- Test Dependencies -->
49 <dependency>
50 <groupId>junit</groupId>
51 <artifactId>junit</artifactId>
52 </dependency>
53 <dependency>
54 <groupId>org.mockito</groupId>
55 <artifactId>mockito-core</artifactId>
56 <scope>test</scope>
57 </dependency>
58 <dependency>
59 <groupId>org.apache.logging.log4j</groupId>
60 <artifactId>log4j-api</artifactId>
61 <type>test-jar</type>
62 </dependency>
63 <dependency>
64 <groupId>org.apache.logging.log4j</groupId>
65 <artifactId>log4j-core</artifactId>
66 <type>test-jar</type>
67 </dependency>
68 <dependency>
69 <groupId>org.apache.logging.log4j</groupId>
70 <artifactId>log4j-slf4j-impl</artifactId>
71 <scope>test</scope>
72 </dependency>
73 </dependencies>
74
75 <build>
76 <plugins>
77 <plugin>
78 <groupId>org.apache.felix</groupId>
79 <artifactId>maven-bundle-plugin</artifactId>
80 <configuration>
81 <instructions>
82 <Fragment-Host>org.apache.logging.log4j.core</Fragment-Host>
83 <Export-Package>*</Export-Package>
84 </instructions>
85 </configuration>
86 </plugin>
87 </plugins>
88 </build>
89 <reporting>
90 <plugins>
91 <plugin>
92 <groupId>org.apache.maven.plugins</groupId>
93 <artifactId>maven-changes-plugin</artifactId>
94 <version>${changes.plugin.version}</version>
95 <reportSets>
96 <reportSet>
97 <reports>
98 <report>changes-report</report>
99 </reports>
100 </reportSet>
101 </reportSets>
102 <configuration>
103 <issueLinkTemplate>%URL%/show_bug.cgi?id=%ISSUE%</issueLinkTemplate>
104 <useJql>true</useJql>
105 </configuration>
106 </plugin>
107 <plugin>
108 <groupId>org.apache.maven.plugins</groupId>
109 <artifactId>maven-checkstyle-plugin</artifactId>
110 <version>${checkstyle.plugin.version}</version>
111 <configuration>
112 <!--<propertiesLocation>${vfs.parent.dir}/checkstyle.properties</propertiesLocation> -->
113 <configLocation>${log4jParentDir}/checkstyle.xml</configLocation>
114 <suppressionsLocation>${log4jParentDir}/checkstyle-suppressions.xml</suppressionsLocation>
115 <enableRulesSummary>false</enableRulesSummary>
116 <propertyExpansion>basedir=${basedir}</propertyExpansion>
117 <propertyExpansion>licensedir=${log4jParentDir}/checkstyle-header.txt</propertyExpansion>
118 </configuration>
119 </plugin>
120 <plugin>
121 <groupId>org.apache.maven.plugins</groupId>
122 <artifactId>maven-javadoc-plugin</artifactId>
123 <version>${javadoc.plugin.version}</version>
124 <configuration>
125 <bottom><![CDATA[<p align="center">Copyright © {inceptionYear}-{currentYear} {organizationName}. All Rights Reserved.<br />
126 Apache Logging, Apache Log4j, Log4j, Apache, the Apache feather logo, the Apache Logging project logo,
127 and the Apache Log4j logo are trademarks of The Apache Software Foundation.</p>]]></bottom>
128 <!-- module link generation is completely broken in the javadoc plugin for a multi-module non-aggregating
129 project -->
130 <detectOfflineLinks>false</detectOfflineLinks>
131 <linksource>true</linksource>
132 </configuration>
133 <reportSets>
134 <reportSet>
135 <id>non-aggregate</id>
136 <reports>
137 <report>javadoc</report>
138 </reports>
139 </reportSet>
140 </reportSets>
141 </plugin>
142 <plugin>
143 <groupId>org.codehaus.mojo</groupId>
144 <artifactId>findbugs-maven-plugin</artifactId>
145 <version>${findbugs.plugin.version}</version>
146 <configuration>
147 <fork>true</fork>
148 <jvmArgs>-Duser.language=en</jvmArgs>
149 <threshold>Normal</threshold>
150 <effort>Default</effort>
151 <excludeFilterFile>${log4jParentDir}/findbugs-exclude-filter.xml</excludeFilterFile>
152 </configuration>
153 </plugin>
154 <plugin>
155 <groupId>org.apache.maven.plugins</groupId>
156 <artifactId>maven-jxr-plugin</artifactId>
157 <version>${jxr.plugin.version}</version>
158 <reportSets>
159 <reportSet>
160 <id>non-aggregate</id>
161 <reports>
162 <report>jxr</report>
163 </reports>
164 </reportSet>
165 <reportSet>
166 <id>aggregate</id>
167 <reports>
168 <report>aggregate</report>
169 </reports>
170 </reportSet>
171 </reportSets>
172 </plugin>
173 <plugin>
174 <groupId>org.apache.maven.plugins</groupId>
175 <artifactId>maven-pmd-plugin</artifactId>
176 <version>${pmd.plugin.version}</version>
177 <configuration>
178 <targetJdk>${maven.compiler.target}</targetJdk>
179 </configuration>
180 </plugin>
181 </plugins>
182 </reporting>
183 </project>