This repository has been archived by the owner on Dec 16, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
99 lines (87 loc) · 2.84 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
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
<?xml version="1.0"?>
<project xmlns="http://maven.apache.org/POM/4.0.0">
<modelVersion>4.0.0</modelVersion>
<parent>
<artifactId>guanxi-core</artifactId>
<groupId>org.guanxi</groupId>
<version>2.0.10</version>
<relativePath>../guanxi-core/pom.xml</relativePath>
</parent>
<name>guanxi-wayf</name>
<groupId>org.guanxi</groupId>
<artifactId>guanxi-wayf</artifactId>
<version>1.2.9</version>
<organization>
<name>UHI Millennium Institute</name>
<url>http://codebrane.com/blog/?cat=2</url>
</organization>
<inceptionYear>2007</inceptionYear>
<packaging>war</packaging>
<dependencies>
<!-- **************************************************** -->
<!-- Guanxi -->
<dependency>
<groupId>org.guanxi</groupId>
<artifactId>guanxi-common</artifactId>
<version>2.0.9</version>
</dependency>
<dependency>
<groupId>org.guanxi</groupId>
<artifactId>guanxi-beans</artifactId>
<version>1.4.7</version>
</dependency>
<!-- **************************************************** -->
<!-- **************************************************** -->
<!-- External dependencies -->
<dependency>
<groupId>org.apache.xmlbeans</groupId>
<artifactId>jsr173_1.0_api</artifactId>
</dependency>
<dependency>
<groupId>org.apache.xmlbeans</groupId>
<artifactId>xbean</artifactId>
</dependency>
<dependency>
<groupId>servletapi</groupId>
<artifactId>servletapi</artifactId>
</dependency>
<!-- **************************************************** -->
</dependencies>
<build>
<resources>
<resource>
<directory>../guanxi-core</directory>
<includes>
<include>messages/common.properties</include>
<include>messages/wayf.properties</include>
</includes>
</resource>
</resources>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>2.6</version>
<executions>
<execution>
<phase>deploy</phase>
<goals>
<goal>deploy-file</goal>
</goals>
<configuration>
<repositoryId>source.uhi.ac.uk-repository</repositoryId>
<url>http://source.uhi.ac.uk/mvn</url>
<packaging>jar</packaging>
<artifactId>${project.artifactId}</artifactId>
<groupId>${project.groupId}</groupId>
<version>${project.version}</version>
<uniqueVersion>false</uniqueVersion>
<pomFile>${basedir}/pom.xml</pomFile>
<file>${project.build.directory}/${project.artifactId}-${project.version}.jar</file>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>