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

Commit

Permalink
Bumped to 4.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rjrudin committed Feb 6, 2023
1 parent 2ac55b7 commit 75a5e72
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 21 deletions.
20 changes: 2 additions & 18 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,35 +8,19 @@ plugins {
}

group = "com.marklogic"
version = "4.5-SNAPSHOT"
version = "4.5.0"

java {
sourceCompatibility = 1.8
targetCompatibility = 1.8
}

repositories {
mavenLocal()
maven {
url "https://nexus.marklogic.com/repository/maven-snapshots/"
}
mavenCentral()
}

// Do not cache changing modules
configurations.all {
resolutionStrategy {
cacheChangingModulesFor 0, 'seconds'
}
}

dependencies {
api('com.marklogic:marklogic-client-api:6.1-SNAPSHOT') {
changing = true
}
api('com.marklogic:ml-javaclient-util:4.5-SNAPSHOT') {
changing = true
}
api 'com.marklogic:ml-javaclient-util:4.5.0'
api 'org.springframework:spring-web:5.3.24'
api 'com.fasterxml.jackson.core:jackson-databind:2.14.1'

Expand Down
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ It is not intended to be used to build this project.
<modelVersion>4.0.0</modelVersion>
<groupId>com.marklogic</groupId>
<artifactId>ml-app-deployer</artifactId>
<version>4.4.0</version>
<version>4.5.0</version>
<name>com.marklogic:ml-app-deployer</name>
<description>Java client for the MarkLogic REST Management API and for deploying applications to MarkLogic</description>
<url>https://github.com/marklogic-community/ml-app-deployer</url>
Expand Down Expand Up @@ -40,7 +40,7 @@ It is not intended to be used to build this project.
<dependency>
<groupId>com.marklogic</groupId>
<artifactId>ml-javaclient-util</artifactId>
<version>4.4.0</version>
<version>4.5.0</version>
<scope>compile</scope>
</dependency>
<dependency>
Expand All @@ -52,7 +52,7 @@ It is not intended to be used to build this project.
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.13.4.2</version>
<version>2.14.1</version>
<scope>compile</scope>
</dependency>
<dependency>
Expand Down

0 comments on commit 75a5e72

Please sign in to comment.