-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpom.xml
106 lines (98 loc) · 3.68 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
100
101
102
103
104
105
106
<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">
<modelVersion>4.0.0</modelVersion>
<!-- The Basics -->
<groupId>org.rpgunit</groupId>
<artifactId>rpgunit</artifactId>
<version>0.4-SNAPSHOT</version>
<packaging>pom</packaging>
<!-- Build Settings -->
<build>
<plugins>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<descriptors>
<descriptor>src/assembly/src.xml</descriptor>
</descriptors>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>assembly</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-project-info-reports-plugin</artifactId>
<reportSets>
<reportSet>
<reports>
<report>license</report>
<report>scm</report>
<report>issue-tracking</report>
</reports>
</reportSet>
</reportSets>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-changes-plugin</artifactId>
<reportSets>
<reportSet>
<reports>
<report>changes-report</report>
</reports>
</reportSet>
</reportSets>
</plugin>
</plugins>
</reporting>
<!-- Project information -->
<name>RPGUnit</name>
<description>
RPGUnit is a regression testing framework similar to JUnit (http://www.junit.org/).
Developers use it to implement unit tests in RPG ILE,
a language found mainly on the iSeries (a.k.a. AS/400) platform.
</description>
<url>http://www.rpgunit.org/</url>
<inceptionYear>2005</inceptionYear>
<licenses>
<license>
<name>Common Public License Version 1.0</name>
<url>src/main/RPGUNIT1.FILE/LICENSE.MBR</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<id>lacton</id>
<name>Lacton</name>
<email>[email protected]</email>
<timezone>+1</timezone>
</developer>
</developers>
<!-- Environment Settings -->
<issueManagement>
<system>Sourceforge Tracker</system>
<url>http://sourceforge.net/tracker/?group_id=176506</url>
</issueManagement>
<scm>
<connection>scm:svn:https://rpgunit.svn.sourceforge.net/svnroot/rpgunit</connection>
<developerConnection>scm:svn:https://rpgunit.svn.sourceforge.net/svnroot/rpgunit</developerConnection>
<url>http://rpgunit.svn.sourceforge.net/svnroot/rpgunit</url>
</scm>
<distributionManagement>
<site>
<id>sourceforge.net</id>
<url>scp://shell.sourceforge.net/home/groups/r/rp/rpgunit/htdocs</url>
</site>
<downloadUrl>http://prdownloads.sourceforge.net/rpgunit</downloadUrl>
</distributionManagement>
</project>