Skip to content
This repository was archived by the owner on May 30, 2019. It is now read-only.

Commit 8c78ae6

Browse files
Charles Greerlaurelnaiad
authored andcommitted
Updates for java-client-api release
1 parent 4205bc1 commit 8c78ae6

File tree

4 files changed

+3
-6
lines changed

4 files changed

+3
-6
lines changed

appserver/java-spring/README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,6 @@ Here are the endpoints supported by the middle tier appserver:
101101
* DELETE /v1/session
102102
* GET /v1/questions Get a paginated list of questions (snippet form)
103103
* GET /v1/questions?q=term&start=20
104-
* GET /v1/hasVoted?postId=id&contributorId=id
105104
* POST /v1/search
106105
* POST /v1/questions
107106
* GET /v1/questions/{id}

appserver/java-spring/build.gradle

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,6 @@ repositories {
144144
mavenCentral()
145145
maven { url "http://repo.spring.io/snapshot" }
146146
maven { url "http://repo.spring.io/milestone" }
147-
maven { url "https://raw.github.com/marklogic/java-client-api/mvn-repo" }
148147
}
149148

150149
dependencies {
@@ -158,7 +157,7 @@ dependencies {
158157
compile("org.apache.directory.server:apacheds-bootstrap-partition:1.5.5")
159158
compile("org.apache.directory.server:apacheds-bootstrap-extract:1.5.5")
160159
compile("joda-time:joda-time:2.4")
161-
compile(group: 'com.marklogic', name: 'client-api-java', version: '3.0-SNAPSHOT', changing: true) {
160+
compile('com.marklogic:java-client-api:3.0.1') {
162161
exclude(group: 'org.slf4j')
163162
exclude(group: 'ch.qos.logback')
164163
}

appserver/java-spring/buildSrc/build.gradle

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,13 @@ apply plugin: 'groovy'
22

33
repositories {
44
mavenCentral()
5-
maven { url "https://raw.github.com/marklogic/java-client-api/mvn-repo" }
65
}
76

87
dependencies {
98
compile gradleApi()
109
compile("org.codehaus.groovy:groovy-all:2.3.7")
1110
compile("org.codehaus.groovy.modules.http-builder:http-builder:0.7")
12-
compile('com.marklogic:client-api-java:3.0-SNAPSHOT') {
11+
compile('com.marklogic:java-client-api:3.0.1') {
1312
exclude(group: 'org.slf4j')
1413
exclude(group: 'ch.qos.logback')
1514
}

appserver/java-spring/gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
org.gradle.daemon=false
22
samplestackGroup=com.marklogic
3-
samplestackVersion=1.0.0-RC1
3+
samplestackVersion=1.0.0
44
samplestackSourceCompatibility=1.6
55

66

0 commit comments

Comments
 (0)