"Fossies" - the Fresh Open Source Software Archive

Member "apache-log4j-2.12.4-src/log4j-jul/pom.xml" (28 Dec 2021, 7665 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 
   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     <artifactId>log4j</artifactId>
   22     <groupId>org.apache.logging.log4j</groupId>
   23     <version>2.12.4</version>
   24     <relativePath>../</relativePath>
   25   </parent>
   26   <modelVersion>4.0.0</modelVersion>
   27 
   28   <properties>
   29     <log4jParentDir>${basedir}/..</log4jParentDir>
   30     <module.name>org.apache.logging.log4j.jul</module.name>
   31   </properties>
   32 
   33   <artifactId>log4j-jul</artifactId>
   34   <name>Apache Log4j JUL Adapter</name>
   35   <description>The Apache Log4j implementation of java.util.logging</description>
   36 
   37   <dependencies>
   38     <dependency>
   39       <groupId>org.apache.logging.log4j</groupId>
   40       <artifactId>log4j-api</artifactId>
   41     </dependency>
   42     <dependency>
   43       <groupId>org.apache.logging.log4j</groupId>
   44       <artifactId>log4j-core</artifactId>
   45       <optional>true</optional>
   46     </dependency>
   47     <dependency>
   48       <groupId>org.apache.logging.log4j</groupId>
   49       <artifactId>log4j-core</artifactId>
   50       <type>test-jar</type>
   51       <scope>test</scope>
   52     </dependency>
   53     <dependency>
   54       <groupId>org.hamcrest</groupId>
   55       <artifactId>hamcrest-all</artifactId>
   56       <scope>test</scope>
   57     </dependency>
   58     <dependency>
   59       <groupId>junit</groupId>
   60       <artifactId>junit</artifactId>
   61       <scope>test</scope>
   62     </dependency>
   63   </dependencies>
   64 
   65   <build>
   66     <plugins>
   67       <!-- Include the standard NOTICE and LICENSE -->
   68       <plugin>
   69         <groupId>org.apache.maven.plugins</groupId>
   70         <artifactId>maven-remote-resources-plugin</artifactId>
   71         <executions>
   72           <execution>
   73             <goals>
   74               <goal>process</goal>
   75             </goals>
   76             <configuration>
   77               <skip>false</skip>
   78             </configuration>
   79           </execution>
   80         </executions>
   81       </plugin>
   82       <plugin>
   83         <groupId>org.apache.felix</groupId>
   84         <artifactId>maven-bundle-plugin</artifactId>
   85         <configuration>
   86           <instructions>
   87             <Fragment-Host>org.apache.logging.log4j.core</Fragment-Host>
   88             <Export-Package>org.apache.logging.log4j.jul</Export-Package>
   89           </instructions>
   90         </configuration>
   91       </plugin>
   92         <plugin>
   93             <groupId>org.apache.maven.plugins</groupId>
   94             <artifactId>maven-surefire-plugin</artifactId>
   95             <version>${surefire.plugin.version}</version>
   96             <configuration>
   97                 <systemPropertyVariables>
   98                     <java.awt.headless>true</java.awt.headless>
   99                 </systemPropertyVariables>
  100                 <argLine>-Xms256m -Xmx1024m</argLine>
  101                 <forkCount>1</forkCount>
  102                 <reuseForks>false</reuseForks>
  103                 <excludes>
  104                     <exclude>${log4j.skip.test1}</exclude>
  105                     <exclude>${log4j.skip.test2}</exclude>
  106                 </excludes>
  107             </configuration>
  108         </plugin>
  109     </plugins>
  110   </build>
  111   <reporting>
  112     <plugins>
  113       <plugin>
  114         <groupId>org.apache.maven.plugins</groupId>
  115         <artifactId>maven-changes-plugin</artifactId>
  116         <version>${changes.plugin.version}</version>
  117         <reportSets>
  118           <reportSet>
  119             <reports>
  120               <report>changes-report</report>
  121             </reports>
  122           </reportSet>
  123         </reportSets>
  124         <configuration>
  125           <issueLinkTemplate>%URL%/show_bug.cgi?id=%ISSUE%</issueLinkTemplate>
  126           <useJql>true</useJql>
  127         </configuration>
  128       </plugin>
  129       <plugin>
  130         <groupId>org.apache.maven.plugins</groupId>
  131         <artifactId>maven-checkstyle-plugin</artifactId>
  132         <version>${checkstyle.plugin.version}</version>
  133         <configuration>
  134           <!--<propertiesLocation>${vfs.parent.dir}/checkstyle.properties</propertiesLocation> -->
  135           <configLocation>${log4jParentDir}/checkstyle.xml</configLocation>
  136           <suppressionsLocation>${log4jParentDir}/checkstyle-suppressions.xml</suppressionsLocation>
  137           <enableRulesSummary>false</enableRulesSummary>
  138           <propertyExpansion>basedir=${basedir}</propertyExpansion>
  139           <propertyExpansion>licensedir=${log4jParentDir}/checkstyle-header.txt</propertyExpansion>
  140         </configuration>
  141       </plugin>
  142       <plugin>
  143         <groupId>org.apache.maven.plugins</groupId>
  144         <artifactId>maven-javadoc-plugin</artifactId>
  145         <version>${javadoc.plugin.version}</version>
  146         <configuration>
  147           <bottom><![CDATA[<p align="center">Copyright &#169; {inceptionYear}-{currentYear} {organizationName}. All Rights Reserved.<br />
  148             Apache Logging, Apache Log4j, Log4j, Apache, the Apache feather logo, the Apache Logging project logo,
  149             and the Apache Log4j logo are trademarks of The Apache Software Foundation.</p>]]></bottom>
  150           <!-- module link generation is completely broken in the javadoc plugin for a multi-module non-aggregating
  151                project -->
  152           <detectOfflineLinks>false</detectOfflineLinks>
  153           <linksource>true</linksource>
  154         </configuration>
  155         <reportSets>
  156           <reportSet>
  157             <id>non-aggregate</id>
  158             <reports>
  159               <report>javadoc</report>
  160             </reports>
  161           </reportSet>
  162         </reportSets>
  163       </plugin>
  164       <plugin>
  165         <groupId>org.codehaus.mojo</groupId>
  166         <artifactId>findbugs-maven-plugin</artifactId>
  167         <version>${findbugs.plugin.version}</version>
  168         <configuration>
  169           <fork>true</fork>
  170           <jvmArgs>-Duser.language=en</jvmArgs>
  171           <threshold>Normal</threshold>
  172           <effort>Default</effort>
  173           <excludeFilterFile>${log4jParentDir}/findbugs-exclude-filter.xml</excludeFilterFile>
  174         </configuration>
  175       </plugin>
  176       <plugin>
  177         <groupId>org.apache.maven.plugins</groupId>
  178         <artifactId>maven-jxr-plugin</artifactId>
  179         <version>${jxr.plugin.version}</version>
  180         <reportSets>
  181           <reportSet>
  182             <id>non-aggregate</id>
  183             <reports>
  184               <report>jxr</report>
  185             </reports>
  186           </reportSet>
  187           <reportSet>
  188             <id>aggregate</id>
  189             <reports>
  190               <report>aggregate</report>
  191             </reports>
  192           </reportSet>
  193         </reportSets>
  194       </plugin>
  195       <plugin>
  196         <groupId>org.apache.maven.plugins</groupId>
  197         <artifactId>maven-pmd-plugin</artifactId>
  198         <version>${pmd.plugin.version}</version>
  199         <configuration>
  200           <targetJdk>${maven.compiler.target}</targetJdk>
  201         </configuration>
  202       </plugin>
  203     </plugins>
  204   </reporting>
  205 </project>