-
Notifications
You must be signed in to change notification settings - Fork 4
Update to support UFC configuration files via using the shared common SDK #70
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. Weβll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
844644b
073a8bd
4eb17ae
6700214
1b87c9f
48e8cae
1b075a5
1d5bb74
862501f
fec1d52
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ plugins { | |
} | ||
|
||
group = 'cloud.eppo' | ||
version = '2.5.0-SNAPSHOT' | ||
version = '3.0.0-SNAPSHOT' | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. π |
||
ext.isReleaseVersion = !version.endsWith("SNAPSHOT") | ||
|
||
import org.apache.tools.ant.filters.ReplaceTokens | ||
|
@@ -25,7 +25,7 @@ repositories { | |
} | ||
|
||
dependencies { | ||
implementation 'cloud.eppo:sdk-common-jvm:2.0.0-SNAPSHOT' | ||
implementation 'cloud.eppo:sdk-common-jvm:3.0.1-SNAPSHOT' | ||
implementation 'com.github.zafarkhaja:java-semver:0.10.2' | ||
implementation 'com.fasterxml.jackson.core:jackson-databind:2.17.1' | ||
implementation 'org.apache.httpcomponents:httpclient:4.5.14' | ||
|
@@ -34,15 +34,23 @@ dependencies { | |
// Logback classic 1.3.x is compatible with java 8 | ||
implementation 'ch.qos.logback:logback-classic:1.3.14' | ||
|
||
testImplementation 'org.projectlombok:lombok:1.18.24' | ||
testImplementation 'cloud.eppo:sdk-common-jvm:3.0.0-SNAPSHOT:tests' | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. interesting, didn't know about this syntax |
||
testImplementation platform('org.junit:junit-bom:5.10.2') | ||
testImplementation 'org.junit.jupiter:junit-jupiter' | ||
testImplementation 'com.github.tomakehurst:wiremock-jre8:2.35.2' | ||
testImplementation 'org.mockito:mockito-core:4.11.0' | ||
testImplementation 'com.squareup.okhttp3:okhttp:4.9.1' | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Needed to mock stuff regarding |
||
} | ||
|
||
test { | ||
useJUnitPlatform() | ||
testLogging { | ||
events "started", "passed", "skipped", "failed" | ||
exceptionFormat "full" | ||
showExceptions true | ||
showCauses true | ||
showStackTraces true | ||
} | ||
} | ||
|
||
spotless { | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
putting the shared test files in the same place the shared common repository does for consistency and to make it easier to reuse testing tools