This repository has been archived by the owner on Nov 5, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pom.xml
49 lines (49 loc) · 1.52 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<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>net.oauth</groupId>
<artifactId>oauth-parent</artifactId>
<version>20100601</version>
</parent>
<groupId>net.oauth.core</groupId>
<artifactId>oauth-core-parent</artifactId>
<version>20100601</version>
<packaging>pom</packaging>
<name>OAuth Core: Parent POM</name>
<modules>
<module>commons</module>
<module>consumer</module>
<module>httpclient3</module>
<module>httpclient4</module>
<module>provider</module>
<module>test</module>
</modules>
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<aggregate>true</aggregate>
</configuration>
</plugin>
</plugins>
</reporting>
<repositories>
<repository>
<id>oauth</id>
<name>OAuth Repository</name>
<url>http://oauth.googlecode.com/svn/code/maven</url>
</repository>
</repositories>
<distributionManagement>
<repository>
<id>oauth-local</id>
<name>Local OAuth Repository</name>
<url>file:../../maven</url>
<uniqueVersion>true</uniqueVersion>
</repository>
<downloadUrl>http://oauth.googlecode.com/svn/code/maven</downloadUrl>
</distributionManagement>
</project>