Skip to content

Commit 6f99e7e

Browse files
authored
Update java parent pom to 0.8.0 (#29)
1 parent 86f0e36 commit 6f99e7e

File tree

4 files changed

+13
-5
lines changed

4 files changed

+13
-5
lines changed

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>org.cyclopsgroup</groupId>
88
<artifactId>cyclopsgroup-java-parent</artifactId>
9-
<version>0.7.3</version>
9+
<version>0.8.0</version>
1010
</parent>
1111
<artifactId>gitcon</artifactId>
1212
<name>gitcon</name>

src/main/java/org/cyclopsgroup/gitcon/StaticLocalResourceRepository.java

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,12 +78,16 @@ public Resource getResource(String filePath) {
7878
return Resource.fromFile(new File(sourceDirectory + SystemUtils.FILE_SEPARATOR + filePath));
7979
}
8080

81-
/** @return The file source */
81+
/**
82+
* @return The file source
83+
*/
8284
public final FileSystemSource getSource() {
8385
return source;
8486
}
8587

86-
/** @return The actual working directory, the root of local repository */
88+
/**
89+
* @return The actual working directory, the root of local repository
90+
*/
8791
public final File getWorkingDirectory() {
8892
return workingDirectory;
8993
}

src/main/java/org/cyclopsgroup/gitcon/github/GithubResourceRepository.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,9 @@ private void post(CheckedStreamConsumer consumer, String filePath)
133133
}
134134
}
135135

136-
/** @param branchName the branchName to set */
136+
/**
137+
* @param branchName the branchName to set
138+
*/
137139
public void setBranchName(String branchName) {
138140
this.branchName = branchName;
139141
}

src/main/java/org/cyclopsgroup/gitcon/jgit/JGitCallExecutor.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,9 @@ <T> T invokeCall(JGitCall<T> call) throws GitAPIException {
8282

8383
private static final JGitCallExecutor DIRECT_INSTANCE = new Direct();
8484

85-
/** @return A no-op implementation that invokes calls directly */
85+
/**
86+
* @return A no-op implementation that invokes calls directly
87+
*/
8688
static JGitCallExecutor direct() {
8789
return DIRECT_INSTANCE;
8890
}

0 commit comments

Comments
 (0)