| <?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.oltu</groupId> |
| <artifactId>org.apache.oltu.parent</artifactId> |
| <version>5-SNAPSHOT</version> |
| <relativePath>../parent</relativePath> |
| </parent> |
| |
| <groupId>org.apache.oltu.commons</groupId> |
| <artifactId>org.apache.oltu.commons.parent</artifactId> |
| <version>3-SNAPSHOT</version> |
| <packaging>pom</packaging> |
| |
| <name>Apache Oltu - Commons</name> |
| <description>Shared utilities across multiple Apache Oltu modules</description> |
| |
| <scm> |
| <developerConnection>scm:svn:https://svn.apache.org/repos/asf/oltu/trunk/commons</developerConnection> |
| <connection>scm:svn:https://svn.apache.org/repos/asf/oltu/trunk/commons</connection> |
| <url>https://svn.apache.org/repos/asf/oltu/trunk/commons</url> |
| </scm> |
| |
| <distributionManagement> |
| <site> |
| <id>apache.website</id> |
| <url>${siteUrlDeployment}</url> |
| </site> |
| </distributionManagement> |
| |
| <properties> |
| <siteFilePath>${user.home}/oltu-sites/oltu-commons-site/</siteFilePath> |
| <siteUrlDeployment>file://${siteFilePath}</siteUrlDeployment> |
| <scmPubCheckoutDirectory>${user.home}/oltu-sites/oltu-commons</scmPubCheckoutDirectory> |
| </properties> |
| |
| <modules> |
| <module>encodedtoken</module> |
| <module>json</module> |
| </modules> |
| |
| <profiles> |
| <profile> |
| <id>site</id> |
| <build> |
| <plugins> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-site-plugin</artifactId> |
| <configuration> |
| <inputDirectory>${project.reporting.outputDirectory}/apidocs</inputDirectory> |
| </configuration> |
| </plugin> |
| |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-scm-publish-plugin</artifactId> |
| <configuration> |
| <checkoutDirectory>${scmPubCheckoutDirectory}</checkoutDirectory> |
| <pubScmUrl>scm:svn:https://svn.apache.org/repos/asf/oltu/site/apidocs/commons</pubScmUrl> |
| <checkinComment>Oltu Commons apidocs deployment</checkinComment> |
| <content>${project.build.directory}/staging</content> |
| <tryUpdate>true</tryUpdate> |
| </configuration> |
| </plugin> |
| </plugins> |
| </build> |
| </profile> |
| </profiles> |
| |
| </project> |