Skip to content

Commit 2b7a6a9

Browse files
authored
Merge pull request #165 from eXist-db/minor-app-fixes
point back to target
2 parents c792706 + 821c3de commit 2b7a6a9

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,7 @@ target/
22
*.iml
33
.idea/
44
*.xpr
5+
6+
css/
7+
images/
8+
github-report.html

RELEASE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ $ mvn release:rollback
2323

2424
3. To generate the release notes run:
2525
```bash
26-
$ mvn changes:github-report
26+
$ mvn site
2727
```
2828

2929
this will generate a `github-report.html` in `target/site` you can copy the list of changes into `xar-assembly.xml` describing which articles changed and how.

pom.xml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,11 +58,10 @@
5858
<plugin>
5959
<groupId>org.apache.maven.plugins</groupId>
6060
<artifactId>maven-changes-plugin</artifactId>
61+
<version>2.12.1</version>
6162
<configuration>
62-
<includeOpenIssues>false</includeOpenIssues>
63-
<onlyMilestoneIssues>false</onlyMilestoneIssues>
63+
<onlyCurrentVersion>true</onlyCurrentVersion>
6464
<columnNames>Type, Summary</columnNames>
65-
<outputDirectory>${project.basedir}</outputDirectory>
6665
</configuration>
6766
<reportSets>
6867
<reportSet>

0 commit comments

Comments
 (0)