Skip to content

Commit 87b10a9

Browse files
committed
fixes for spring framework version with java 8
1 parent a2d0cb6 commit 87b10a9

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

.github/workflows/maven-publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- name: Set up Maven Central Repository
1414
uses: actions/setup-java@v3
1515
with:
16-
java-version: '11'
16+
java-version: '8'
1717
distribution: 'adopt'
1818
server-id: ossrh
1919
server-username: MAVEN_USERNAME
@@ -33,7 +33,7 @@ jobs:
3333
- name: Set up Java for publishing to GitHub Packages
3434
uses: actions/setup-java@v3
3535
with:
36-
java-version: '11'
36+
java-version: '8'
3737
distribution: 'adopt'
3838
server-id: github
3939
gpg-private-key: ${{ secrets.GPG_PRIVATE_KEY }}

pom.xml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<modelVersion>4.0.0</modelVersion>
55
<groupId>com.contentstack.sdk</groupId>
66
<artifactId>utils</artifactId>
7-
<version>1.2.13</version>
7+
<version>1.2.15-beta.1</version>
88
<packaging>jar</packaging>
99
<name>Contentstack-utils</name>
1010
<description>Java Utils SDK for Contentstack Content Delivery API, Contentstack is a headless CMS</description>
@@ -28,7 +28,7 @@
2828
<maven-release-plugin.version>2.5.3</maven-release-plugin.version>
2929
<validation-version>2.0.1.Final</validation-version>
3030
<json-version>20250107</json-version>
31-
<spring-web-version>6.2.1</spring-web-version>
31+
<spring-web-version>6.1.12</spring-web-version>
3232
<org.apache.commons-text>1.13.0</org.apache.commons-text>
3333
</properties>
3434

@@ -242,6 +242,7 @@
242242
<plugin>
243243
<groupId>org.apache.maven.plugins</groupId>
244244
<artifactId>maven-compiler-plugin</artifactId>
245+
<version>3.8.1</version>
245246
<configuration>
246247
<source>1.8</source>
247248
<target>1.8</target>

0 commit comments

Comments
 (0)