Skip to content
This repository was archived by the owner on Sep 26, 2019. It is now read-only.

Commit 61eeab1

Browse files
author
Danno Ferrin
authored
update plugins-api build script (#1908)
* fix missing dot * remove unused import * remove empty dependencies
1 parent 513b055 commit 61eeab1

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

plugin-api/build.gradle

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
* specific language governing permissions and limitations under the License.
1212
*/
1313

14-
import net.ltgt.gradle.errorprone.CheckSeverity
1514
import java.security.MessageDigest
1615

1716
apply plugin: 'java-library'
@@ -27,10 +26,6 @@ jar {
2726
}
2827
}
2928

30-
31-
dependencies {
32-
}
33-
3429
configurations { testArtifacts }
3530
artifacts { testSupportArtifacts testSupportJar }
3631

@@ -45,7 +40,7 @@ class FileStateChecker extends DefaultTask {
4540
this.files.sort().each {
4641
digestor.update(it.readBytes())
4742
}
48-
def currentHash = digestor.digest()encodeBase64().toString()
43+
def currentHash = digestor.digest().encodeBase64().toString()
4944
if (this.knownHash != currentHash) {
5045
throw new GradleException("""For the Plugin APIs the checksum of the project did not match what was expected.
5146

0 commit comments

Comments
 (0)