-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathproject.xml
97 lines (97 loc) · 3.11 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
85
86
87
88
89
90
91
92
93
94
95
96
97
<project>
<pomVersion>3</pomVersion>
<artifactId>remotemqsc</artifactId>
<name>RemoteMQSC</name>
<groupId>remotemqsc</groupId>
<currentVersion>0.1</currentVersion>
<organization>
<name>protocol7</name>
<url>http://www.protocol7.com</url>
</organization>
<inceptionYear>2004</inceptionYear>
<package>com.protocol7.remotemqsc</package>
<logo>/images/logo.gif</logo>
<description>Remote command line interface for WebSphere MQ scripts</description>
<shortDescription>Remote command line interface for WebSphere MQ scripts</shortDescription>
<siteAddress>http://www.protocol7.com/code/remotemqsc</siteAddress>
<distributionSite>http://www.protocol7.com/code/remotemqsc</distributionSite>
<repository/>
<versions>
<version>
<id>2</id>
<name>0.1</name>
<tag>ver_0_1</tag>
</version>
</versions>
<developers>
<developer>
<name>Niklas Gustavsson</name>
<id>3</id>
<email>niklas@protocol7.com</email>
<organization>protocol7</organization>
<roles>
<role>Developer</role>
</roles>
<url>http://www.protocol7.com</url>
<timezone>+1:00</timezone>
</developer>
</developers>
<licenses>
<license>
<name>Apache 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0</url>
<distribution>repo</distribution>
</license>
</licenses>
<dependencies>
<dependency>
<groupId>ibm</groupId>
<artifactId>com.ibm.mq.pcf</artifactId>
<version>5.3.05</version>
<jar>com.ibm.mq.pcf.jar</jar>
<type>jar</type>
<properties/>
</dependency>
<dependency>
<groupId>ibm</groupId>
<artifactId>com.ibm.mq</artifactId>
<version>5.3.05</version>
<jar>com.ibm.mq.jar</jar>
<type>jar</type>
<properties/>
</dependency>
<dependency>
<groupId>ibm</groupId>
<artifactId>connector</artifactId>
<version>5.3.05</version>
<jar>connector.jar</jar>
<type>jar</type>
<properties/>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<type>jar</type>
<properties/>
</dependency>
</dependencies>
<build>
<sourceDirectory>src</sourceDirectory>
<unitTestSourceDirectory>test</unitTestSourceDirectory>
<unitTest>
<includes>
<include>**/*Test.java</include>
</includes>
</unitTest>
<resources>
<resource>
<directory>${basedir}/conf</directory>
<includes>
<include>**/*</include>
</includes>
</resource>
</resources>
</build>
<properties/>
</project>