Skip to content

Commit

Permalink
Corrected after review
Browse files Browse the repository at this point in the history
  • Loading branch information
Nikita-Smirnov-Exactpro committed May 15, 2024
1 parent f943d8c commit 3d160e9
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 12 deletions.
3 changes: 0 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,6 @@ subprojects {
testImplementation 'com.exactpro.th2:junit-jupiter-integration:0.0.1'

testImplementation 'org.junit.jupiter:junit-jupiter:5.10.2'

testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.10.2'
}

test {
Expand Down
15 changes: 6 additions & 9 deletions cradle-admin-tool-http/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,31 +3,28 @@ plugins {
id 'com.exactpro.th2.gradle.component'
}

ext {
jettyVersion = '9.4.54.v20240208'
}

dependencies {
implementation project(':cradle-admin-tool-core')
implementation platform('org.eclipse.jetty:jetty-bom:9.4.54.v20240208')
implementation("com.exactpro.th2:common:$commonVersion") {
exclude group: 'com.squareup.okhttp3', module: 'okhttp'
}
implementation "com.exactpro.th2:cradle-core:$cradleVersion"
implementation "com.exactpro.th2:cradle-cassandra:$cradleVersion"

implementation "org.eclipse.jetty:jetty-server:${jettyVersion}"
implementation "org.eclipse.jetty:jetty-servlet:${jettyVersion}"
implementation "org.eclipse.jetty:jetty-server"
implementation "org.eclipse.jetty:jetty-servlet"

implementation 'com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.15.2'

implementation 'org.apache.commons:commons-lang3'

testImplementation project(':cradle-admin-tool-test')
testImplementation "org.eclipse.jetty:jetty-http:${jettyVersion}:tests"
testImplementation "org.eclipse.jetty:jetty-util:${jettyVersion}"
//noinspection DependencyNotationArgument
testImplementation group: "org.eclipse.jetty", name: "jetty-http", classifier: "tests"
testImplementation "org.eclipse.jetty:jetty-util"
}

application {
applicationName = 'service'
mainClassName = "com.exactpro.th2.cradle.adm.http.Application"
}

0 comments on commit 3d160e9

Please sign in to comment.