You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
51 lines
1.6 KiB
51 lines
1.6 KiB
<?xml version="1.0" encoding="utf-8"?> |
|
<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> |
|
|
|
<groupId>org.openstack.docs</groupId> |
|
<artifactId>parent-pom</artifactId> |
|
<version>1.0.0-SNAPSHOT</version> |
|
<packaging>pom</packaging> |
|
<name>OpenStack Identity API Parent</name> |
|
|
|
<properties> |
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
|
</properties> |
|
<modules> |
|
<module>v3</module> |
|
<module>v2.0</module> |
|
</modules> |
|
<profiles> |
|
<profile> |
|
<id>Rackspace Research Repositories</id> |
|
<activation> |
|
<activeByDefault>true</activeByDefault> |
|
</activation> |
|
<repositories> |
|
<repository> |
|
<id>rackspace-research</id> |
|
<name>Rackspace Research Repository</name> |
|
<url>http://maven.research.rackspacecloud.com/content/groups/public/</url> |
|
</repository> |
|
</repositories> |
|
<pluginRepositories> |
|
<pluginRepository> |
|
<id>rackspace-research</id> |
|
<name>Rackspace Research Repository</name> |
|
<url>http://maven.research.rackspacecloud.com/content/groups/public/</url> |
|
</pluginRepository> |
|
</pluginRepositories> |
|
</profile> |
|
</profiles> |
|
<build> |
|
<plugins> |
|
<plugin> |
|
<groupId>com.rackspace.cloud.api</groupId> |
|
<artifactId>clouddocs-maven-plugin</artifactId> |
|
<version>2.1.3</version> |
|
</plugin> |
|
</plugins> |
|
</build> |
|
</project>
|
|
|