-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Removed the ZAP license since the project is now indipendent
- Loading branch information
Showing
47 changed files
with
1,110 additions
and
1,003 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
.gradle | ||
build/ | ||
!gradle/wrapper/gradle-wrapper.jar | ||
!**/src/main/**/build/ | ||
!**/src/test/**/build/ | ||
|
||
### IntelliJ IDEA ### | ||
.idea/modules.xml | ||
.idea/jarRepositories.xml | ||
.idea/compiler.xml | ||
.idea/libraries/ | ||
*.iws | ||
*.iml | ||
*.ipr | ||
out/ | ||
!**/src/main/**/out/ | ||
!**/src/test/**/out/ | ||
|
||
### Eclipse ### | ||
.apt_generated | ||
.classpath | ||
.factorypath | ||
.project | ||
.settings | ||
.springBeans | ||
.sts4-cache | ||
bin/ | ||
!**/src/main/**/bin/ | ||
!**/src/test/**/bin/ | ||
|
||
### NetBeans ### | ||
/nbproject/private/ | ||
/nbbuild/ | ||
/dist/ | ||
/nbdist/ | ||
/.nb-gradle/ | ||
|
||
### VS Code ### | ||
.vscode/ | ||
|
||
### Mac OS ### | ||
.DS_Store |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,4 +2,4 @@ | |
|
||
## [0.0.1] - 2024-10-01 | ||
### Added | ||
- Addon creato nella cartela zap-extension | ||
- Addon created in separated project |
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,46 @@ | ||
//import org.zaproxy.gradle.addon.AddOnPlugin | ||
//import org.zaproxy.gradle.addon.AddOnStatus | ||
|
||
plugins { | ||
id("java") | ||
id("org.zaproxy.add-on") version "0.11.0" | ||
} | ||
|
||
version = "0.0.1" | ||
description = "A new description." | ||
|
||
zapAddOn { | ||
addOnName.set("migt") | ||
zapVersion.set("2.15.0") | ||
|
||
manifest { | ||
author.set("FBK") | ||
} | ||
} | ||
|
||
repositories { | ||
mavenCentral() | ||
} | ||
|
||
dependencies { | ||
implementation("org.json:json:20240303") | ||
implementation("com.nimbusds:nimbus-jose-jwt:9.31") | ||
implementation("org.bouncycastle:bcpkix-jdk15on:1.70") | ||
implementation("com.google.code.gson:gson:2.10.1") | ||
implementation("org.seleniumhq.selenium:selenium-java:4.13.0") | ||
implementation("org.apache.santuario:xmlsec:3.0.0") | ||
implementation("com.sun.xml.security:xml-security-impl:1.0") | ||
implementation("com.jayway.jsonpath:json-path:2.9.0") | ||
implementation("net.minidev:json-smart:2.4.10") | ||
implementation("org.apache.httpcomponents:httpclient:4.5.14") | ||
implementation("org.apache.httpcomponents:httpcore:4.4.16") | ||
implementation("com.networknt:json-schema-validator:1.0.78") | ||
implementation("org.apache.commons:commons-text:1.10.0") | ||
implementation("commons-codec:commons-codec:1.16.0") | ||
testImplementation(platform("org.junit:junit-bom:5.10.0")) | ||
testImplementation("org.junit.jupiter:junit-jupiter") | ||
} | ||
|
||
tasks.test { | ||
useJUnitPlatform() | ||
} |
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
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
Oops, something went wrong.