-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpom.xml
More file actions
117 lines (117 loc) · 4.77 KB
/
pom.xml
File metadata and controls
117 lines (117 loc) · 4.77 KB
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<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>coza.opencollab.unipoole</groupId>
<artifactId>master</artifactId>
<version>1.0.2</version>
<relativePath>../master/pom.xml</relativePath>
</parent>
<groupId>coza.opencollab.unipoole</groupId>
<artifactId>sakai-client</artifactId>
<version>1.0.3-SNAPSHOT</version>
<packaging>jar</packaging>
<name>Unipoole Sakai Client</name>
<description>The Sakai Client connects to the Sakai Service.</description>
<!--
The source control locations.
Note that the source control name must be the same as the artifact name
-->
<scm>
<connection>scm:git:https://github.com/Unipoole/sakai-client.git</connection>
<developerConnection>scm:git:https://github.com/Unipoole/sakai-client.git</developerConnection>
<url>https://github.com/Unipoole/sakai-client</url>
</scm>
<properties>
<sonar.language>java</sonar.language>
</properties>
<dependencies>
<dependency>
<groupId>org.apache.axis</groupId>
<artifactId>axis</artifactId>
</dependency>
<dependency>
<groupId>org.apache.axis</groupId>
<artifactId>axis-jaxrpc</artifactId>
</dependency>
<dependency>
<groupId>org.apache.axis</groupId>
<artifactId>axis-saaj</artifactId>
</dependency>
<dependency>
<groupId>axis</groupId>
<artifactId>axis-wsdl4j</artifactId>
</dependency>
<dependency>
<groupId>xml-apis</groupId>
<artifactId>xml-apis</artifactId>
</dependency>
<dependency>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</dependency>
<dependency>
<groupId>commons-discovery</groupId>
<artifactId>commons-discovery</artifactId>
</dependency>
</dependencies>
<repositories>
<repository>
<name>OpenCollab Nexus Release Repo</name>
<id>oc-nexus-releases</id>
<url>http://nexus.opencollab.co.za/nexus/content/repositories/releases</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
<repository>
<name>OpenCollab Nexus Snapshot Repo</name>
<id>oc-nexus-snapshots</id>
<url>http://nexus.opencollab.co.za/nexus/content/repositories/snapshots</url>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
<build>
<sourceDirectory>${basedir}/src/main/java</sourceDirectory>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<!-- copy the site.xml in from master -->
<execution>
<id>site-xml</id>
<phase>pre-site</phase>
<goals>
<goal>copy</goal>
</goals>
<configuration>
<outputDirectory />
<silent>true</silent>
<artifactItems>
<artifactItem>
<groupId>coza.opencollab.unipoole</groupId>
<artifactId>master</artifactId>
<version>${project.parent.version}</version>
<classifier>site</classifier>
<type>xml</type>
<overWrite>true</overWrite>
<outputDirectory>${basedir}/target/site-config</outputDirectory>
<destFileName>site.xml</destFileName>
</artifactItem>
</artifactItems>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<url>https://github.com/Unipoole/sakai-client</url>
</project>