Skip to content

Commit be8dfaf

Browse files
committed
Merge branch 'master' into fix-version-restriction
* master: Tidy up. Change package name to remove references to foxopen. This project has nothing to do with FOXopen other than that I use FOXopen in my day job. Most of the work I do on the JIRAChangelogBuilder project is done in my spare time.
2 parents 304ef3c + ab920a3 commit be8dfaf

File tree

16 files changed

+36
-64
lines changed

16 files changed

+36
-64
lines changed

.gitignore

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,13 @@
1010
.project
1111
bin
1212

13-
.changelogcache/*
1413
.nb*
1514
nb*
1615

1716
build
18-
changelog*
1917
target
2018
lib
21-
credentials.properties
22-
!/src/net/foxopen/jira/changelog/
23-
!/test/net/foxopen/jira/changelog/
19+
*.properties
2420
cache
25-
test*.txt
21+
test_output
22+
dependency-reduced-pom.xml
File renamed without changes.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ When specifying `--object-cache-path` the Java objects used to store the changel
4040
Testing
4141
-------
4242

43-
In order to execute the unit tests properly (and build/install the program), you must create a file named credentials.properties and place it in the base directory. In this file, add the following values:
43+
In order to execute the unit tests properly (and build/install the program), you must create a file named testing.properties and place it in the base directory. In this file, add the following values:
4444

4545
* `url = <URL>` where `<URL>` is the web address of the JIRA instance.
4646
* `username = <username>` where `<username>` is the username of a user that can access the JIRA instance.

build.xml

Lines changed: 0 additions & 35 deletions
This file was deleted.

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
33
<modelVersion>4.0.0</modelVersion>
44

5-
<groupId>net.foxopen.jira.changelog</groupId>
5+
<groupId>com.switchtrue.jira.changelog</groupId>
66
<artifactId>jira-changelog-builder</artifactId>
77
<version>1.05.3</version>
88
<packaging>jar</packaging>
@@ -77,7 +77,7 @@
7777
<transformers>
7878
<transformer
7979
implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
80-
<mainClass>net.foxopen.jira.changelog.Changelog</mainClass>
80+
<mainClass>com.switchtrue.jira.changelog.Changelog</mainClass>
8181
</transformer>
8282
</transformers>
8383
</configuration>

src/net/foxopen/jira/changelog/Change.java renamed to src/com/switchtrue/jira/changelog/Change.java

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,10 @@
1-
package net.foxopen.jira.changelog;
1+
package com.switchtrue.jira.changelog;
22

33
import java.util.Comparator;
44
import java.io.Serializable;
55

66
/**
77
* Represents a JIRA issue for display in the changelog.
8-
*
9-
* @author apigram
10-
* @version 1.03.00
118
*/
129
public class Change implements Serializable {
1310

src/net/foxopen/jira/changelog/Changelog.java renamed to src/com/switchtrue/jira/changelog/Changelog.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package net.foxopen.jira.changelog;
1+
package com.switchtrue.jira.changelog;
22

33
import java.io.File;
44

src/net/foxopen/jira/changelog/ChangelogBuilder.java renamed to src/com/switchtrue/jira/changelog/ChangelogBuilder.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package net.foxopen.jira.changelog;
1+
package com.switchtrue.jira.changelog;
22

33
import java.io.FileWriter;
44
import java.io.IOException;

src/net/foxopen/jira/changelog/ChangelogTemplate.java renamed to src/com/switchtrue/jira/changelog/ChangelogTemplate.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* To change this template, choose Tools | Templates
33
* and open the template in the editor.
44
*/
5-
package net.foxopen.jira.changelog;
5+
package com.switchtrue.jira.changelog;
66

77
import java.util.HashMap;
88
import java.util.List;

src/net/foxopen/jira/changelog/JiraAPI.java renamed to src/com/switchtrue/jira/changelog/JiraAPI.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package net.foxopen.jira.changelog;
1+
package com.switchtrue.jira.changelog;
22

33
import java.net.URI;
44
import java.net.URISyntaxException;

0 commit comments

Comments
 (0)