Skip to content

Commit 086e012

Browse files
committed
add changes to pom
*yay* auto changelog Maven wants a dummy file so it gets one
1 parent 633592e commit 086e012

File tree

2 files changed

+60
-5
lines changed

2 files changed

+60
-5
lines changed

pom.xml

Lines changed: 32 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
<groupId>org.exist-db</groupId>
1414
<artifactId>exist-documentation</artifactId>
15-
<version>0.6.2-SNAPSHOT</version>
15+
<version>3.0.0-SNAPSHOT</version>
1616

1717
<name>eXist-db Documentation</name>
1818
<description>Documentation package for eXist-db</description>
@@ -33,11 +33,15 @@
3333
</licenses>
3434

3535
<scm>
36+
<url>https://www.github.com/exist-db/documentation.git</url>
3637
<connection>scm:git:https://www.github.com/exist-db/documentation.git</connection>
3738
<developerConnection>scm:git:https://www.github.com/exist-db/documentation.git</developerConnection>
38-
<url>scm:git:https://www.github.com/exist-db/documentation.git</url>
3939
<tag>HEAD</tag>
4040
</scm>
41+
<issueManagement>
42+
<system>GitHub</system>
43+
<url>https://github.com/eXist-db/documentation/issues</url>
44+
</issueManagement>
4145

4246
<properties>
4347
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
@@ -51,7 +55,7 @@
5155
<package-abbrev>${project.artifactId}</package-abbrev>
5256
<package-final-name>${project.artifactId}-${project.version}</package-final-name>
5357
</properties>
54-
58+
5559
<dependencies>
5660
<dependency>
5761
<groupId>org.exist-db</groupId>
@@ -66,7 +70,30 @@
6670
<scope>test</scope>
6771
</dependency>
6872
</dependencies>
69-
73+
74+
<reporting>
75+
<plugins>
76+
<plugin>
77+
<groupId>org.apache.maven.plugins</groupId>
78+
<artifactId>maven-changes-plugin</artifactId>
79+
<version>2.12.1</version>
80+
<configuration>
81+
<includeOpenIssues>false</includeOpenIssues>
82+
<onlyMilestoneIssues>false</onlyMilestoneIssues>
83+
<columnNames>Type, Summary</columnNames>
84+
<outputDirectory>${project.basedir}</outputDirectory>
85+
</configuration>
86+
<reportSets>
87+
<reportSet>
88+
<reports>
89+
<report>github-report</report>
90+
</reports>
91+
</reportSet>
92+
</reportSets>
93+
</plugin>
94+
</plugins>
95+
</reporting>
96+
7097
<build>
7198
<plugins>
7299
<plugin>
@@ -250,7 +277,7 @@
250277
</plugin>
251278
</plugins>
252279
</build>
253-
280+
254281
<repositories>
255282
<repository>
256283
<id>exist</id>

src/changes/changes.xml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
<document xmlns="http://maven.apache.org/changes/1.0.0"
2+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:schemaLocation="http://maven.apache.org/changes/1.0.0 http://maven.apache.org/xsd/changes-1.0.0.xsd">
4+
<properties>
5+
<title>Changes Tester Project</title>
6+
<author email="[email protected]">Johnny R. Ruiz III</author>
7+
</properties>
8+
<body>
9+
<release version="1.1" date="2005-03-01" description="Subsequent release">
10+
<action dev="jruiz" type="add">
11+
Added additional documentation on how to configure the plugin.
12+
</action>
13+
<action dev="aramirez" type="fix" issue="MPJIRA-11">
14+
Enable retrieving component-specific issues.
15+
</action>
16+
<action dev="jruiz" type="remove" due-to="Allan Ramirez" due-to-email="[email protected]">
17+
The element type " link " must be terminated by the matching end-tag.
18+
Deleted the erroneous code.
19+
</action>
20+
</release>
21+
22+
<release version="1.0" date="2005-01-01" description="First release">
23+
<action dev="jruiz" type="update">
24+
Uploaded documentation on how to use the plugin.
25+
</action>
26+
</release>
27+
</body>
28+
</document>

0 commit comments

Comments
 (0)