-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
JAVA-8886 refactor plugin to better align with gradle conventions
- Loading branch information
1 parent
c3beb26
commit c332eb6
Showing
11 changed files
with
414 additions
and
449 deletions.
There are no files selected for viewing
95 changes: 0 additions & 95 deletions
95
...ugin/src/main/java/com/contrastsecurity/gradle/plugin/ContrastConfigurationExtension.java
This file was deleted.
Oops, something went wrong.
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
15 changes: 15 additions & 0 deletions
15
gradle-plugin/src/main/java/com/contrastsecurity/gradle/plugin/ContrastVerifyTestTask.java
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,15 @@ | ||
package com.contrastsecurity.gradle.plugin; | ||
|
||
import org.gradle.api.DefaultTask; | ||
import org.gradle.api.tasks.CacheableTask; | ||
|
||
/** | ||
* Task for verifying test results for its test. There is one of these tasks created for each Test | ||
* task in the project. This task is meant to take in it's corresponding Test task's output, use the | ||
* SDK to parse the TS results for the given task, then output a file corresponding to the results | ||
* found from TS. | ||
* | ||
* <p>TODO: <a href="https://contrast.atlassian.net/browse/JAVA-3779">Implementation Ticket</a> | ||
*/ | ||
@CacheableTask | ||
public abstract class ContrastVerifyTestTask extends DefaultTask {} |
Oops, something went wrong.