blob: 236d4175e7fb5dbd890dc17b3baf73d97fba28b1 [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/xsd/maven-4.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.spi</groupId>
<artifactId>org.apache.onami.spi.parent</artifactId>
<version>1.0.1-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Apache Onami-SPI</name>
<description>Apache Onami-SPI is a Java5 compatible small collection of reusable tools to make easier the integration
with the Service Provider Interface pattern.</description>
<url>http://onami.apache.org/spi/</url>
<inceptionYear>2012</inceptionYear>
<modules>
<module>core</module>
<module>modules</module>
<module>services</module>
<module>all</module>
</modules>
<scm>
<url>https://svn.apache.org/viewvc/onami/trunk/spi</url>
<connection>scm:svn:https://svn.apache.org/repos/asf/onami/trunk/spi</connection>
<developerConnection>scm:svn:https://svn.apache.org/repos/asf/onami/trunk/spi</developerConnection>
</scm>
<issueManagement>
<system>JIRA</system>
<url>https://issues.apache.org/jira/browse/ONAMI/component/12320007</url>
</issueManagement>
<ciManagement>
<system>Jenkins</system>
<url>https://builds.apache.org/job/Onami-SPI/</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.svnpub</id>
<url>${onami.spi.siteUrlDeployment}</url>
</site>
</distributionManagement>
<properties>
<onami.spi.siteFilePath>${user.home}/onami-sites/onami-spi-site/</onami.spi.siteFilePath>
<onami.spi.siteUrlDeployment>file://${onami.spi.siteFilePath}</onami.spi.siteUrlDeployment>
<onami.spi.scmPubCheckoutDirectory>${user.home}/onami-sites/onami-spi-site-content</onami.spi.scmPubCheckoutDirectory>
</properties>
<dependencies>
<dependency>
<groupId>com.google.inject</groupId>
<artifactId>guice</artifactId>
</dependency>
<dependency>
<groupId>org.apache.onami</groupId>
<artifactId>org.apache.onami.test</artifactId>
<version>1.4.0-incubating</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</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.spi.scmPubCheckoutDirectory}</checkoutDirectory>
<pubScmUrl>scm:svn:https://svn.apache.org/repos/asf/onami/site/spi</pubScmUrl>
<checkinComment>Onami SPI site deployment</checkinComment>
<content>${onami.spi.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>
<profiles>
<profile>
<id>release</id>
<modules>
<module>all</module>
</modules>
</profile>
</profiles>
</project>