blob: 19b77bdc063ce54837e1690c63ae112e6f67c924 [file] [log] [blame]
<?xml version="1.0" encoding="UTF-8"?>
<!--
| Licensed to the Apache Software Foundation (ASF) under one
| or more contributor license agreements. See the NOTICE file
| distributed with this work for additional information
| regarding copyright ownership. The ASF licenses this file
| to you under the Apache License, Version 2.0 (the
| "License"); you may not use this file except in compliance
| with the License. You may obtain a copy of the License at
|
| http://www.apache.org/licenses/LICENSE-2.0
|
| Unless required by applicable law or agreed to in writing,
| software distributed under the License is distributed on an
| "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
| KIND, either express or implied. See the License for the
| specific language governing permissions and limitations
| under the License.
-->
<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.apache.onami</groupId>
<artifactId>org.apache.onami.parent</artifactId>
<version>5</version>
</parent>
<groupId>org.apache.onami.logging</groupId>
<artifactId>org.apache.onami.logging.parent</artifactId>
<version>3.4.1-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Apache Onami-Logging - Parent</name>
<description>Apache Onami-Logging is a Logging Injector for Java</description>
<url>http://onami.apache.org/logging</url>
<modules>
<module>core</module>
<module>testframework</module>
<module>juli</module>
<module>commons-logging</module>
<module>log4j</module>
<module>slf4j</module>
<module>log4j2</module>
</modules>
<scm>
<url>https://svn.apache.org/viewvc/onami/trunk/logging</url>
<connection>scm:svn:https://svn.apache.org/repos/asf/onami/trunk/logging</connection>
<developerConnection>scm:svn:https://svn.apache.org/repos/asf/onami/trunk/logging</developerConnection>
</scm>
<issueManagement>
<system>JIRA</system>
<url>https://issues.apache.org/jira/browse/ONAMI/component/12320013</url>
</issueManagement>
<ciManagement>
<system>Jenkins</system>
<url>https://builds.apache.org/job/Onami-Logging/</url>
<notifiers>
<notifier>
<type>mail</type>
<sendOnError>true</sendOnError>
<sendOnFailure>true</sendOnFailure>
<sendOnSuccess>false</sendOnSuccess>
<sendOnWarning>false</sendOnWarning>
<configuration>
<address>dev@onami.apache.org</address>
</configuration>
</notifier>
</notifiers>
</ciManagement>
<distributionManagement>
<site>
<id>apache.website</id>
<url>${onami.logging.siteUrlDeployment}</url>
</site>
</distributionManagement>
<properties>
<onami.logging.siteFilePath>${user.home}/onami-sites/onami-logging-site/</onami.logging.siteFilePath>
<onami.logging.siteUrlDeployment>file://${onami.logging.siteFilePath}</onami.logging.siteUrlDeployment>
<onami.logging.scmPubCheckoutDirectory>${user.home}/onami-sites/onami-logging-site-content
</onami.logging.scmPubCheckoutDirectory>
</properties>
<dependencies>
<dependency>
<groupId>com.google.inject</groupId>
<artifactId>guice</artifactId>
</dependency>
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-scm-publish-plugin</artifactId>
<configuration>
<checkoutDirectory>${onami.logging.scmPubCheckoutDirectory}</checkoutDirectory>
<pubScmUrl>scm:svn:https://svn.apache.org/repos/asf/onami/site/logging</pubScmUrl>
<checkinComment>Onami Logging site deployment</checkinComment>
<content>${onami.logging.siteFilePath}</content>
<tryUpdate>true</tryUpdate>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>${javadoc.version}</version>
<reportSets>
<reportSet>
<reports>
<report>aggregate</report>
<report>test-aggregate</report>
</reports>
</reportSet>
</reportSets>
</plugin>
</plugins>
</reporting>
</project>