Skip to content
This repository was archived by the owner on Sep 16, 2024. It is now read-only.

Commit 14cad2e

Browse files
committed
Merge branch 'dev' into master-backup
2 parents 5d932ba + 8259e3b commit 14cad2e

File tree

201 files changed

+1839
-1189
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

201 files changed

+1839
-1189
lines changed

build.gradle

Lines changed: 7 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,12 @@
1-
buildscript {
2-
repositories {
3-
jcenter()
4-
}
5-
dependencies {
6-
// For dependency license report
7-
classpath "com.smokejumperit.gradle.license:Gradle-License-Report:0.0.2"
8-
}
9-
}
10-
111
plugins {
122
id "java"
133
id "maven-publish"
144
id "eclipse"
155
id "idea"
166
id "com.jfrog.bintray" version "1.5"
7+
id "com.github.jk1.dependency-license-report" version "0.3.11"
178
}
189

19-
// gradle dependencyLicenseReport to generate your report in build/reports/dependency-license
20-
apply plugin:'license-report'
21-
2210
sourceCompatibility = "1.7"
2311
targetCompatibility = "1.7"
2412

@@ -33,11 +21,13 @@ dependencies {
3321
compile 'org.apache.httpcomponents:httpclient:4.3.5'
3422
compile 'org.springframework:spring-web:4.3.5.RELEASE'
3523

36-
testCompile ('com.marklogic:ml-junit:2.6.0') {
37-
exclude module: "ml-javaclient-util"
38-
}
39-
24+
testCompile ('com.marklogic:ml-junit:3.0-alpha1')
4025
testCompile('commons-io:commons-io:2.5')
26+
27+
// Forcing Spring to use logback instead of commons-logging
28+
runtime "ch.qos.logback:logback-classic:1.1.8"
29+
runtime group: "org.slf4j", name: "jcl-over-slf4j", version: "1.7.22"
30+
runtime group: "org.slf4j", name: "slf4j-api", version: "1.7.22"
4131
}
4232

4333
// This ensures that Gradle includes in the published jar any non-java files under src/main/java

gradle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
group=com.marklogic
22
javadocsDir=../gh-pages-marklogic-java/javadocs
3-
version=2.9.0
4-
mlJavaclientUtilVersion=2.14.1
3+
version=3.0.0
4+
mlJavaclientUtilVersion=3.0.0

0 commit comments

Comments
 (0)