source: ServiceInterfaces/trunk/pom.xml @ 348

Revision 348, 4.2 KB checked in by philsmart, 3 years ago (diff)
  • Property svn:mime-type set to text/plain
Line 
1<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">
2        <modelVersion>4.0.0</modelVersion>
3        <groupId>uk.ac.cardiff.raptor</groupId>
4        <artifactId>service-interfaces</artifactId>
5        <version>0.3-SNAPSHOT</version>
6        <name>ServiceInterfaces</name>
7        <description>Service Interfaces to Raptor</description>
8
9        <!--
10                Adding extra repositories for any other libs, which is hosted on Iam
11        -->
12        <repositories>
13                <repository>
14                        <releases>
15                                <enabled>true</enabled>
16                        </releases>
17                        <snapshots>
18                                <enabled>true</enabled>
19                                <updatePolicy>always</updatePolicy>
20                        </snapshots>
21                        <id>raptor-extras-repo</id>
22                        <name>Iam Local Maven Repo</name>
23                        <url>http://iam.cf.ac.uk/nexus-webapp-1.6.0/content/repositories/raptor-extra</url>
24                        <layout>default</layout>
25                </repository>
26                <repository>
27                        <releases>
28                                <enabled>true</enabled>
29                        </releases>
30                        <snapshots>
31                                <enabled>true</enabled>
32                                <updatePolicy>always</updatePolicy>
33                        </snapshots>
34                        <id>raptor-snapshot-repo</id>
35                        <name>Iam Local Maven Repo Snapshots</name>
36                        <url>http://iam.cf.ac.uk/nexus-webapp-1.6.0/content/repositories/raptor-snapshot</url>
37                        <layout>default</layout>
38                </repository>
39                <repository>
40                        <releases>
41                                <enabled>true</enabled>
42                        </releases>
43                        <snapshots>
44                                <enabled>true</enabled>
45                                <updatePolicy>always</updatePolicy>
46                        </snapshots>
47                        <id>raptor-release-repo</id>
48                        <name>Iam Local Maven Repo Releases</name>
49                        <url>http://iam.cf.ac.uk/nexus-webapp-1.6.0/content/repositories/raptor-release</url>
50                        <layout>default</layout>
51                </repository>
52        </repositories>
53        <!--  done -->
54
55        <scm>
56                <developerConnection>scm:svn:http://iam.cf.ac.uk/repos/RAPTOR/ServiceInterfaces/trunk</developerConnection>
57                <url>http://iam.cf.ac.uk/repos/RAPTOR/ServiceInterfaces</url>
58        </scm>
59        <distributionManagement>
60                <repository>
61                        <uniqueVersion>false</uniqueVersion>
62                        <id>raptor-release</id>
63                        <url>http://iam.cf.ac.uk/nexus-webapp-1.6.0/content/repositories/raptor-release</url>
64                </repository>
65                <snapshotRepository>
66                        <uniqueVersion>false</uniqueVersion>
67                        <id>raptor-snapshot</id>
68                        <url>http://iam.cf.ac.uk/nexus-webapp-1.6.0/content/repositories/raptor-snapshot</url>
69                </snapshotRepository>
70        </distributionManagement>
71
72
73        <dependencies>
74
75                <dependency>
76                        <groupId>org.apache.cxf</groupId>
77                        <artifactId>cxf-rt-frontend-jaxws</artifactId>
78                        <version>2.2.7</version>
79                </dependency>
80                <dependency>
81                        <groupId>org.apache.cxf</groupId>
82                        <artifactId>cxf-rt-transports-http</artifactId>
83                        <version>2.2.7</version>
84                </dependency>
85
86                <dependency>
87                        <groupId>log4j</groupId>
88                        <artifactId>log4j</artifactId>
89                        <version>1.2.14</version>
90                </dependency>
91                <dependency>
92                        <groupId>junit</groupId>
93                        <artifactId>junit</artifactId>
94                        <version>4.8.1</version>
95                        <scope>test</scope>
96                </dependency>
97                <dependency>
98                        <groupId>org.apache.maven.shared</groupId>
99                        <artifactId>maven-runtime</artifactId>
100                        <version>1.0-alpha-2</version>
101                </dependency>
102
103
104
105                <dependency>
106                        <groupId>xerces</groupId>
107                        <artifactId>xercesImpl</artifactId>
108                        <version>2.9.1</version>
109                </dependency>
110                <dependency>
111                        <groupId>uk.ac.cardiff.raptor</groupId>
112                        <artifactId>information-model</artifactId>
113                        <version>0.3-SNAPSHOT</version>
114                </dependency>
115
116        </dependencies>
117        <build>
118                <plugins>
119                        <plugin>
120                                <artifactId>maven-release-plugin</artifactId>
121                                <version>2.0</version>
122                                <configuration>
123                                        <username>philsmart</username>
124                                        <password>nv75hh</password>
125                                        <tagBase>
126                                                http://iam.cf.ac.uk/repos/RAPTOR/ServiceInterfaces/tags
127                                </tagBase>
128                                        <providerImplementations>
129                                                <svn>javasvn</svn>
130                                        </providerImplementations>
131                                </configuration>
132                                <dependencies>
133                                        <dependency>
134                                                <groupId>com.google.code.maven-scm-provider-svnjava</groupId>
135                                                <artifactId>maven-scm-provider-svnjava</artifactId>
136                                                <version>1.10</version>
137                                        </dependency>
138                                </dependencies>
139                        </plugin>
140                        <plugin>
141                                <groupId>org.apache.maven.plugins</groupId>
142                                <artifactId>maven-compiler-plugin</artifactId>
143                                <version>2.0.2</version>
144                                <configuration>
145                                        <source>1.6</source>
146                                        <target>1.6</target>
147                                </configuration>
148                        </plugin>
149                </plugins>
150        </build>
151</project>
Note: See TracBrowser for help on using the repository browser.