File tree Expand file tree Collapse file tree 3 files changed +19
-3
lines changed
examples/local-testing-project Expand file tree Collapse file tree 3 files changed +19
-3
lines changed Original file line number Diff line number Diff line change @@ -20,10 +20,11 @@ java {
2020}
2121
2222repositories {
23- mavenCentral ()
23+ mavenLocal ()
2424 maven {
2525 url " https://nexus.marklogic.com/repository/maven-snapshots/"
2626 }
27+ mavenCentral()
2728}
2829
2930// Do not cache changing modules
@@ -36,9 +37,20 @@ configurations.all {
3637dependencies {
3738 implementation gradleApi()
3839 implementation localGroovy()
40+
41+ // Temporarily adding these until ready to release
42+ api(' com.marklogic:marklogic-client-api:6.1-SNAPSHOT' ) {
43+ changing = true
44+ }
45+ api(' com.marklogic:ml-javaclient-util:4.5-SNAPSHOT' ) {
46+ changing = true
47+ }
48+
49+ // Will update this when ready to release
3950 api(' com.marklogic:ml-app-deployer:4.5-SNAPSHOT' ) {
4051 changing = true
4152 }
53+
4254 implementation " com.marklogic:mlcp-util:1.0.1"
4355 // TODO Will need to update this to 2.6.0 once it's released; the only planned change for this is to bump up the
4456 // Java Client to 6.1.0
Original file line number Diff line number Diff line change 11buildscript {
22 repositories {
33 mavenLocal()
4+ maven {
5+ url " https://nexus.marklogic.com/repository/maven-snapshots/"
6+ }
7+ mavenCentral()
48 }
59 dependencies {
610 classpath " com.marklogic:ml-gradle:${ mlGradleVersion} "
Original file line number Diff line number Diff line change 11# Set this to the version you used when running
22# "gradle -Pversion=(something) publishToMavenLocal" on your local ml-gradle repo
3- mlGradleVersion =4.4.0
3+ mlGradleVersion =4.5-SNAPSHOT
44
55mlHost =localhost
66mlAppName =example
7- mlRestPort =8012
7+ mlRestPort =8005
88mlUsername =admin
99mlPassword =admin
1010
You can’t perform that action at this time.
0 commit comments