-
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 restructure plugin to be more inline with what gradle expects
- Loading branch information
1 parent
f5bb67b
commit 2e34d5b
Showing
8 changed files
with
156 additions
and
287 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
14 changes: 14 additions & 0 deletions
14
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,14 @@ | ||
package com.contrastsecurity.gradle.plugin; | ||
|
||
import java.io.File; | ||
import org.gradle.api.DefaultTask; | ||
import org.gradle.api.tasks.InputFile; | ||
|
||
public class ContrastVerifyTestTask extends DefaultTask { | ||
|
||
@InputFile private File jUnitResults; | ||
|
||
public void setJUnitOutput(final File jUnitResults) { | ||
this.jUnitResults = jUnitResults; | ||
} | ||
} |
216 changes: 0 additions & 216 deletions
216
gradle-plugin/src/main/java/com/contrastsecurity/gradle/plugin/InstallAgentTask.java
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.