Skip to content

Commit

Permalink
Merge pull request #6 from marklogic-community/feature/dependency-upg…
Browse files Browse the repository at this point in the history
…rades

Upgrading dependencies and bumping to 1.0.1
  • Loading branch information
rjrudin authored Aug 10, 2022
2 parents 75f5000 + 0b3cb1e commit 2eb1726
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 11 deletions.
13 changes: 7 additions & 6 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,19 +7,20 @@ plugins {
}

group = "com.marklogic"
version = "1.0"
version = "1.0.1"

sourceCompatibility = "8"
targetCompatibility = "8"
java {
sourceCompatibility = "8"
targetCompatibility = "8"
}

repositories {
mavenCentral()
}

dependencies {
implementation 'org.springframework:spring-beans:5.3.7'

testImplementation "org.junit.jupiter:junit-jupiter:5.7.1"
implementation 'org.springframework:spring-beans:5.3.22'
testImplementation 'org.junit.jupiter:junit-jupiter:5.9.0'
}

test {
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.1-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5.1-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
8 changes: 4 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.marklogic</groupId>
<artifactId>mlcp-util</artifactId>
<version>0.9.0</version>
<version>1.0.1</version>
<packaging>jar</packaging>

<name>mlcp-util</name>
Expand Down Expand Up @@ -41,15 +41,15 @@
</developers>

<properties>
<maven.compiler.source>1.7</maven.compiler.source>
<maven.compiler.target>1.7</maven.compiler.target>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
</properties>

<dependencies>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-beans</artifactId>
<version>4.2.5.RELEASE</version>
<version>5.3.22</version>
<scope>compile</scope>
</dependency>

Expand Down

0 comments on commit 2eb1726

Please sign in to comment.