From dd55895bd508576e23690d75d98d2a6f6e601b7c Mon Sep 17 00:00:00 2001 From: Liam Newman Date: Thu, 31 Oct 2019 14:29:30 -0700 Subject: [PATCH] Fix tt incompatible tags --- pom.xml | 47 ++++++++++--------- .../java/org/kohsuke/github/GHRepository.java | 6 +-- 2 files changed, 29 insertions(+), 24 deletions(-) diff --git a/pom.xml b/pom.xml index f6affcb966..b7076300e2 100644 --- a/pom.xml +++ b/pom.xml @@ -80,21 +80,6 @@ - - - org.apache.maven.plugins - maven-gpg-plugin - 1.6 - - - sign-artifacts - verify - - sign - - - - org.apache.maven.plugins maven-site-plugin @@ -123,12 +108,6 @@ - - org.apache.maven.plugins - maven-source-plugin - 3.1.0 - - maven-compiler-plugin 3.8.1 @@ -451,6 +430,32 @@ + + release + + + + org.apache.maven.plugins + maven-gpg-plugin + 1.6 + + + sign-artifacts + verify + + sign + + + + + + org.apache.maven.plugins + maven-source-plugin + 3.1.0 + + + + diff --git a/src/main/java/org/kohsuke/github/GHRepository.java b/src/main/java/org/kohsuke/github/GHRepository.java index b5922bc988..4fd57fde20 100644 --- a/src/main/java/org/kohsuke/github/GHRepository.java +++ b/src/main/java/org/kohsuke/github/GHRepository.java @@ -866,7 +866,7 @@ public GHHook getHook(int id) throws IOException { /** * Gets a comparison between 2 points in the repository. This would be similar - * to calling git log id1...id2 against a local repository. + * to calling git log id1...id2 against a local repository. * @param id1 an identifier for the first point to compare from, this can be a sha1 ID (for a commit, tag etc) or a direct tag name * @param id2 an identifier for the second point to compare to. Can be the same as the first point. * @return the comparison output @@ -928,7 +928,7 @@ public PagedIterable listRefs() throws IOException { /** * Retrieves all refs of the given type for the current GitHub repository. - * @param refType the type of reg to search for e.g. tags or commits + * @param refType the type of reg to search for e.g. tags or commits * @return an array of all refs matching the request type * @throws IOException on failure communicating with GitHub, potentially due to an invalid ref type being requested */ @@ -939,7 +939,7 @@ public GHRef[] getRefs(String refType) throws IOException { /** * Retrieves all refs of the given type for the current GitHub repository. * - * @param refType the type of reg to search for e.g. tags or commits + * @param refType the type of reg to search for e.g. tags or commits * @return paged iterable of all refs of the specified type * @throws IOException on failure communicating with GitHub, potentially due to an invalid ref type being requested */