-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: Jim Duden <[email protected]>
- Loading branch information
1 parent
8ae6c72
commit 3432cbc
Showing
33 changed files
with
679 additions
and
614 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 |
---|---|---|
@@ -1,5 +1,8 @@ | ||
# Release Notes | ||
|
||
# 0.30.0 | ||
* Update to spring-boot 3.0.6 | ||
|
||
# 0.25.2 | ||
* Dependency updates | ||
|
||
|
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,5 +1,5 @@ | ||
distributionBase=GRADLE_USER_HOME | ||
distributionPath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-6.9.1-bin.zip | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-7.6-bin.zip | ||
zipStoreBase=GRADLE_USER_HOME | ||
zipStorePath=wrapper/dists |
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 |
---|---|---|
|
@@ -4,26 +4,25 @@ dependencies { | |
api project(':synapse-core:') | ||
|
||
api "com.google.guava:guava:31.1-jre" | ||
api "software.amazon.awssdk:auth:${awsSdkVersion}" | ||
api "software.amazon.awssdk:core:${awsSdkVersion}" | ||
api "software.amazon.awssdk:profiles:${awsSdkVersion}" | ||
api "software.amazon.awssdk:regions:${awsSdkVersion}" | ||
api "software.amazon.awssdk:utils:${awsSdkVersion}" | ||
api "software.amazon.awssdk:auth" | ||
api "software.amazon.awssdk:profiles" | ||
api "software.amazon.awssdk:regions" | ||
api "software.amazon.awssdk:utils" | ||
|
||
testImplementation project(':synapse-testsupport') | ||
testImplementation 'junit:junit:4.13.2' | ||
testImplementation 'junit:junit' | ||
testImplementation 'org.hamcrest:hamcrest-all:1.3' | ||
testImplementation "org.springframework.boot:spring-boot-starter-test:${springBootVersion}" | ||
testImplementation "com.jayway.jsonpath:json-path-assert:2.7.0" | ||
testImplementation "org.springframework.boot:spring-boot-starter-test" | ||
testImplementation "com.jayway.jsonpath:json-path-assert" | ||
testImplementation 'com.tngtech.java:junit-dataprovider:1.13.1' | ||
testImplementation "org.awaitility:awaitility:4.2.0" | ||
testImplementation "org.mockito:mockito-core:5.1.1" | ||
testImplementation "ch.qos.logback:logback-core:${logbackVersion}" | ||
testImplementation "ch.qos.logback:logback-classic:${logbackVersion}" | ||
testImplementation "org.awaitility:awaitility" | ||
testImplementation "org.mockito:mockito-core" | ||
testImplementation "ch.qos.logback:logback-core" | ||
testImplementation "ch.qos.logback:logback-classic" | ||
|
||
} | ||
|
||
apply plugin: 'maven' | ||
apply plugin: 'maven-publish' | ||
apply plugin: 'signing' | ||
|
||
|
||
|
@@ -38,78 +37,94 @@ task javadocJar(type: Jar, dependsOn: javadoc) { | |
|
||
task sourcesJar(type: Jar) { | ||
from sourceSets.main.allSource | ||
classifier = 'sources' | ||
archiveClassifier = 'sources' | ||
} | ||
|
||
uploadArchives { | ||
repositories { | ||
mavenDeployer { | ||
beforeDeployment { MavenDeployment deployment -> signing.signPom(deployment) } | ||
|
||
repository(url: "https://oss.sonatype.org/service/local/staging/deploy/maven2/") { | ||
authentication(userName: sonatypeUsername, password: sonatypePassword) | ||
} | ||
snapshotRepository(url: "https://oss.sonatype.org/content/repositories/snapshots/") { | ||
authentication(userName: sonatypeUsername, password: sonatypePassword) | ||
publishing { | ||
publications { | ||
mavenJava(MavenPublication) { | ||
artifactId = 'synapse-aws-auth' | ||
from components.java | ||
versionMapping { | ||
usage('java-api') { | ||
fromResolutionOf('runtimeClasspath') | ||
} | ||
usage('java-runtime') { | ||
fromResolutionResult() | ||
} | ||
} | ||
|
||
pom.project { | ||
name 'synapse-aws-auth' | ||
pom { | ||
name = 'synapse-aws-auth' | ||
packaging 'jar' | ||
description 'AWS authentication for Synapse' | ||
url 'http://github.com/otto-de/synapse' | ||
description = 'AWS authentication for Synapse' | ||
url = 'http://github.com/otto-de/synapse' | ||
|
||
scm { | ||
url 'scm:[email protected]:otto-de/synapse.git' | ||
connection 'scm:[email protected]:otto-de/synapse.git' | ||
developerConnection 'scm:[email protected]:otto-de/synapse.git' | ||
url = 'scm:[email protected]:otto-de/synapse.git' | ||
connection = 'scm:[email protected]:otto-de/synapse.git' | ||
developerConnection = 'scm:[email protected]:otto-de/synapse.git' | ||
} | ||
|
||
licenses { | ||
license { | ||
name 'The Apache Software License, Version 2.0' | ||
url 'http://www.apache.org/licenses/LICENSE-2.0.txt' | ||
distribution 'repo' | ||
name = "The Apache Software License, Version 2.0" | ||
url = "http://www.apache.org/licenses/LICENSE-2.0.txt" | ||
distribution = 'repo' | ||
} | ||
} | ||
|
||
developers { | ||
developer { | ||
id 'gsteinacker' | ||
name 'Guido Steinacker' | ||
id = 'gsteinacker' | ||
name = 'Guido Steinacker' | ||
} | ||
developer { | ||
id 'mbargmann' | ||
name 'Matthias Bargmann' | ||
id = 'mbargmann' | ||
name = 'Matthias Bargmann' | ||
} | ||
developer { | ||
id 'fbregulla' | ||
name 'Frank Bregulla' | ||
id = 'fbregulla' | ||
name = 'Frank Bregulla' | ||
} | ||
developer { | ||
id 'ftorkler' | ||
name 'Florian Torkler' | ||
id = 'ftorkler' | ||
name = 'Florian Torkler' | ||
} | ||
developer { | ||
id 'miregel' | ||
name 'Micha Regel' | ||
id = 'miregel' | ||
name = 'Micha Regel' | ||
} | ||
developer { | ||
id 'hstruebe' | ||
name 'Henning Strueber' | ||
id = 'hstruebe' | ||
name = 'Henning Strueber' | ||
} | ||
} | ||
} | ||
} | ||
} | ||
|
||
repositories { | ||
maven { | ||
name = "Sonatype" | ||
url = uri("https://oss.sonatype.org/service/local/staging/deploy/maven2/") | ||
credentials { | ||
username = findProperty("sonatypeUsername") | ||
password = findProperty("sonatypePassword") | ||
} | ||
} | ||
maven { | ||
name = "Sonatype_Snapshots" | ||
url = uri("https://oss.sonatype.org/content/repositories/snapshots/") | ||
credentials { | ||
username = findProperty("sonatypeUsername") | ||
password = findProperty("sonatypePassword") | ||
} | ||
} | ||
} | ||
} | ||
|
||
|
||
signing { | ||
required { gradle.taskGraph.hasTask("uploadArchives") } | ||
sign jar | ||
sign javadocJar | ||
sign sourcesJar | ||
sign publishing.publications.mavenJava | ||
} | ||
|
||
artifacts { | ||
|
Oops, something went wrong.