-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #30 from NetSPI/2.0.0
AWS Signer Version 2.0.0
- Loading branch information
Showing
133 changed files
with
9,106 additions
and
5,481 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,6 @@ | ||
# | ||
# https://help.github.com/articles/dealing-with-line-endings/ | ||
# | ||
# These are explicitly windows files and should use crlf | ||
*.bat text eol=crlf | ||
|
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1,48 @@ | ||
group 'com.netspi.awssigner' | ||
version '1.0-SNAPSHOT' | ||
group "com.netspi.awssigner" | ||
version "2.0.0" | ||
|
||
apply plugin: 'java' | ||
apply plugin: "java" | ||
|
||
compileJava { | ||
sourceCompatibility = '1.8' | ||
targetCompatibility = '1.8' | ||
} | ||
|
||
repositories { | ||
mavenCentral() | ||
} | ||
|
||
def awsSdkVersion = "2.17.116" | ||
def junitVersion = "5.6.0" | ||
|
||
dependencies { | ||
compile 'com.google.guava:guava:23.2-jre' | ||
compile 'com.intellij:forms_rt:7.0.3' | ||
compile 'javax.xml.bind:jaxb-api:2.3.0' | ||
// https://mvnrepository.com/artifact/com.amazonaws/aws-java-sdk-sts | ||
compile group: 'com.amazonaws', name: 'aws-java-sdk-sts', version: '1.11.683' | ||
testCompile group: 'junit', name: 'junit', version: '4.12' | ||
implementation platform('com.amazonaws:aws-java-sdk-bom:1.11.228') | ||
implementation 'com.amazonaws:aws-java-sdk-sts' | ||
testImplementation group: 'junit', name: 'junit', version: '4.11' | ||
implementation "com.google.code.gson:gson:2.8.9" | ||
implementation "com.google.guava:guava:31.0.1-jre" | ||
implementation "net.portswigger.burp.extender:burp-extender-api:2.3" | ||
implementation "software.amazon.awssdk:sts:$awsSdkVersion" | ||
implementation "software.amazon.awssdk:auth-crt:$awsSdkVersion" | ||
testImplementation "org.junit.jupiter:junit-jupiter-api:$junitVersion" | ||
testImplementation "org.junit.jupiter:junit-jupiter-params:$junitVersion" | ||
testImplementation "org.junit.jupiter:junit-jupiter-engine:$junitVersion" | ||
} | ||
|
||
def mainClassName = "com.netspi.awssigner.Main" | ||
test { | ||
useJUnitPlatform() | ||
} | ||
|
||
def mainClassName = "com.netspi.awssigner.TestRunner" | ||
|
||
jar { | ||
dependsOn 'test' | ||
|
||
manifest { | ||
attributes "Main-Class": "$mainClassName" | ||
} | ||
|
||
from { | ||
configurations.compile.collect { it.isDirectory() ? it : zipTree(it) } | ||
configurations.runtimeClasspath.collect { it.isDirectory() ? it : zipTree(it) } | ||
} | ||
|
||
duplicatesStrategy "exclude" | ||
|
||
} |
Binary file not shown.
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 |
---|---|---|
@@ -1,6 +1,5 @@ | ||
#Tue Mar 12 11:18:17 CDT 2019 | ||
distributionBase=GRADLE_USER_HOME | ||
distributionPath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-7.3-bin.zip | ||
zipStoreBase=GRADLE_USER_HOME | ||
zipStorePath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-5.2.1-all.zip |
Oops, something went wrong.