This repository was archived by the owner on Sep 16, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +14
-3
lines changed
src/test/java/com/marklogic/appdeployer/command/plugins Expand file tree Collapse file tree 2 files changed +14
-3
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ plugins {
88}
99
1010group = " com.marklogic"
11- version = " 4.4.0 "
11+ version = " 4.5-SNAPSHOT "
1212
1313java {
1414 sourceCompatibility = 1.8
@@ -20,10 +20,19 @@ repositories {
2020 mavenCentral()
2121}
2222
23+ // Do not cache changing modules
24+ configurations. all {
25+ resolutionStrategy {
26+ cacheChangingModulesFor 0 , ' seconds'
27+ }
28+ }
29+
2330dependencies {
24- api ' com.marklogic:ml-javaclient-util:4.4.0'
31+ api (' com.marklogic:ml-javaclient-util:4.5-SNAPSHOT' ) {
32+ changing = true
33+ }
2534 api ' org.springframework:spring-web:5.3.24'
26- api ' com.fasterxml.jackson.core:jackson-databind:2.13.4.2 '
35+ api ' com.fasterxml.jackson.core:jackson-databind:2.14.1 '
2736
2837 implementation ' jaxen:jaxen:1.2.0'
2938 implementation ' org.apache.httpcomponents:httpclient:4.5.13'
Original file line number Diff line number Diff line change 1212import com .marklogic .client .io .JacksonHandle ;
1313import com .marklogic .mgmt .util .ObjectMapperFactory ;
1414import org .junit .jupiter .api .AfterEach ;
15+ import org .junit .jupiter .api .Disabled ;
1516import org .junit .jupiter .api .Test ;
1617
1718import java .io .File ;
@@ -26,6 +27,7 @@ public void teardown() {
2627 undeploySampleApp ();
2728 }
2829
30+ @ Disabled ("The makefile needs updating" )
2931 @ Test
3032 public void test () {
3133 final File projectDir = new File ("src/test/resources/plugin-project" );
You can’t perform that action at this time.
0 commit comments