-
-
Notifications
You must be signed in to change notification settings - Fork 92
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
fd54350
commit 842f817
Showing
7 changed files
with
28 additions
and
64 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
11.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -52,8 +52,8 @@ test { | |
test.onlyIf { !project.hasProperty('skipTests') } | ||
|
||
java { | ||
sourceCompatibility = JavaVersion.VERSION_1_8 | ||
targetCompatibility = JavaVersion.VERSION_1_8 | ||
sourceCompatibility = JavaVersion.VERSION_11 | ||
targetCompatibility = JavaVersion.VERSION_11 | ||
} | ||
|
||
javadoc { | ||
|
@@ -64,37 +64,6 @@ javadoc { | |
|
||
publishing { | ||
publications { | ||
maven(MavenPublication) { | ||
groupId = project.group | ||
artifactId = 'dependency-check-gradle' | ||
version = project.version | ||
from components.java | ||
pom { | ||
name = 'dependency-check-gradle' | ||
description = 'OWASP dependency-check gradle plugin is a software composition analysis tool used to find known vulnerable dependencies.' | ||
|
||
url = 'https://jeremylong.github.io/DependencyCheck/' | ||
|
||
licenses { | ||
license { | ||
name = 'The Apache License, Version 2.0' | ||
url = 'https://github.com/dependency-check/dependency-check-gradle/blob/main/LICENSE.txt' | ||
} | ||
} | ||
developers { | ||
developer { | ||
id = 'jlong' | ||
name = 'Jeremy Long' | ||
email = '[email protected]' | ||
} | ||
} | ||
scm { | ||
url = 'https://github.com/dependency-check/dependency-check-gradle' | ||
connection = 'scm:git:https://github.com/dependency-check/dependency-check-gradle.git' | ||
developerConnection = 'scm:git:https://github.com/dependency-check/dependency-check-gradle.git' | ||
} | ||
} | ||
} | ||
pluginPublication(MavenPublication) { | ||
groupId = project.group | ||
artifactId = 'dependency-check-gradle' | ||
|
@@ -127,21 +96,8 @@ publishing { | |
} | ||
} | ||
} | ||
repositories { | ||
maven { | ||
url "https://oss.sonatype.org/service/local/staging/deploy/maven2" | ||
credentials { | ||
username project.findProperty('sonatypeUsername') ?: System.getenv("SONATYPE_USER") | ||
password project.findProperty('sonatypePassword') ?: System.getenv("SONATYPE_PASSWORD") | ||
} | ||
} | ||
} | ||
} | ||
|
||
//signing { | ||
// sign publishing.publications.pluginPublication | ||
//} | ||
|
||
gradlePlugin { | ||
website = 'http://jeremylong.github.io/DependencyCheck/dependency-check-gradle/index.html' | ||
vcsUrl = 'https://github.com/dependency-check/dependency-check-gradle/' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters