forked from mbtaylor/jsamp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.xml
84 lines (74 loc) · 2.36 KB
/
project.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
<?xml version='1.0'?>
<project xmlns="http://maven.apache.org/POM/3.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/3.0.0
http://maven.apache.org/maven-v3_0_0.xsd">
<extend>maven-base/project.xml</extend>
<artifactId>jsamp</artifactId>
<currentVersion>${astrogrid.jsamp.version}</currentVersion>
<inceptionYear>2008</inceptionYear>
<name>JSAMP</name>
<shortDescription>
Simple Applications Messaging Protocol Toolkit
</shortDescription>
<description>
Various components used for developing and deploying
Simple Applications Messaging Protocol-compliant
applications and middleware.
</description>
<licenses>
<license>
<name>The AstroGrid Software License</name>
<url>http://www.astrogrid.org/</url>
<distribution>repo</distribution>
</license>
</licenses>
<dependencies>
<dependency>
<groupId>xmlrpc</groupId>
<artifactId>xmlrpc</artifactId>
<type>jar</type>
<version>1.2-b1</version>
<url>${maven.repo.remote}xmlrpc/jars/xmlrpc-1.2-b1.jar</url>
</dependency>
<!-- Testing -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<type>jar</type>
<version>3.8</version>
</dependency>
</dependencies>
<build>
<sourceDirectory>src/java</sourceDirectory>
<unitTestSourceDirectory>src/test/java</unitTestSourceDirectory>
<resources>
<resource>
<directory>src/resources</directory>
</resource>
</resources>
<unitTest>
<includes>
<include>org/astrogrid/samp/**/*Test.java</include>
</includes>
</unitTest>
</build>
<reports>
<report>maven-javadoc-plugin</report>
</reports>
<siteAddress>maven.astrogrid.org</siteAddress>
<siteDirectory>/software/doc/p/jsamp/${pom.currentVersion}</siteDirectory>
<developers>
<developer>
<name>Mark Taylor</name>
<id>mbt</id>
<email>[email protected]</email>
<url>http://www.star.bristol.ac.uk/~mbt/</url>
<organization>Bristol University</organization>
</developer>
</developers>
<repository> <!-- connection syntax may be wrong -->
<connection>scm:git:https://github.com/mbtaylor/jsamp</connection>
<url>https://github.com/mbtaylor/jsamp/</url>
</repository>
</project>