Skip to content

Commit 9a0e249

Browse files
committed
Updated to use all snapshots
1 parent 00a31cf commit 9a0e249

File tree

3 files changed

+19
-3
lines changed

3 files changed

+19
-3
lines changed

build.gradle

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,11 @@ java {
2020
}
2121

2222
repositories {
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 {
3637
dependencies {
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

examples/local-testing-project/build.gradle

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
buildscript {
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}"

examples/local-testing-project/gradle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
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

55
mlHost=localhost
66
mlAppName=example
7-
mlRestPort=8012
7+
mlRestPort=8005
88
mlUsername=admin
99
mlPassword=admin
1010

0 commit comments

Comments
 (0)