File tree Expand file tree Collapse file tree 8 files changed +26
-16
lines changed
src/main/java/com/github/freeclimbapi Expand file tree Collapse file tree 8 files changed +26
-16
lines changed Original file line number Diff line number Diff line change @@ -27,12 +27,13 @@ jobs:
2727 run : (yarn global add @stoplight/prism-cli)
2828 - name : Start Prism Server
2929 run : (prism mock -h 127.0.0.1 openapi.json &)
30- - name : Set up JDK 11
30+ - name : Set up JDK 17
3131 uses : actions/setup-java@v3
3232 with :
33- java-version : " 11 "
33+ java-version : " 17 "
3434 distribution : " temurin"
3535 - name : Build with Gradle
36- uses : gradle/gradle-build-action@67421db6bd0bf253fb4bd25b31ebb98943c375e1
36+ uses : gradle/gradle-build-action@v2
3737 with :
38- arguments : --refresh-dependencies build --info
38+ gradle-version : current
39+ arguments : --refresh-dependencies clean build --info
Original file line number Diff line number Diff line change @@ -25,23 +25,24 @@ jobs:
2525 run : (yarn global add @stoplight/prism-cli)
2626 - name : Start Prism Server
2727 run : (prism mock -h 127.0.0.1 openapi.json &)
28- - name : Set up JDK 11
28+ - name : Set up JDK 17
2929 uses : actions/setup-java@v3
3030 with :
31- java-version : " 11 "
31+ java-version : " 17 "
3232 distribution : " temurin"
3333 server-id : github # Value of the distributionManagement/repository/id field of the pom.xml
3434 settings-path : ${{ github.workspace }} # location for the settings.xml file
3535
3636 - name : Build with Gradle
37- uses : gradle/gradle-build-action@67421db6bd0bf253fb4bd25b31ebb98943c375e1
37+ uses : gradle/gradle-build-action@v2
3838 with :
39- arguments : --refresh-dependencies build
39+ gradle-version : current
40+ arguments : --refresh-dependencies clean build
4041
4142 # The USERNAME and TOKEN need to correspond to the credentials environment variables used in
4243 # the publishing section of your build.gradle
4344 - name : Publish to GitHub Packages
44- uses : gradle/gradle-build-action@67421db6bd0bf253fb4bd25b31ebb98943c375e1
45+ uses : gradle/gradle-build-action@v2
4546 with :
4647 arguments : publish
4748 env :
Original file line number Diff line number Diff line change @@ -9,6 +9,14 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
99
1010None
1111
12+ <a name =" 5.3.3 " ></a >
13+
14+ ## [ 5.3.3] 2023-06-01
15+
16+ ### Changed
17+
18+ - Update github actions files to use the latest gradle and java versions as well as the gradle build action
19+
1220<a name =" 5.3.2 " ></a >
1321
1422## [ 5.3.2] 2023-06-01
Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ Add this dependency to your project's POM:
4040<dependency >
4141 <groupId >com.github.freeclimbapi</groupId >
4242 <artifactId >freeclimb-java-client</artifactId >
43- <version >5.3.2 </version >
43+ <version >5.3.3 </version >
4444 <scope >compile</scope >
4545</dependency >
4646```
@@ -56,7 +56,7 @@ Add this dependency to your project's build file:
5656 }
5757
5858 dependencies {
59- implementation "com.github.freeclimbapi:freeclimb-java-client:5.3.2 "
59+ implementation "com.github.freeclimbapi:freeclimb-java-client:5.3.3 "
6060 }
6161```
6262
@@ -70,7 +70,7 @@ mvn clean package
7070
7171Then manually install the following JARs:
7272
73- * ` target/freeclimb-java-client-5.3.2 .jar `
73+ * ` target/freeclimb-java-client-5.3.3 .jar `
7474* ` target/lib/*.jar `
7575
7676## Getting Started
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ apply plugin: 'java'
44apply plugin : ' com.diffplug.spotless'
55
66group = ' com.github.freeclimbapi'
7- version = ' 5.3.2 '
7+ version = ' 5.3.3 '
88
99buildscript {
1010 repositories {
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ lazy val root = (project in file(".")).
22 settings(
33 organization := " com.github.freeclimbapi" ,
44 name := " freeclimb-java-client" ,
5- version := " 5.3.2 " ,
5+ version := " 5.3.3 " ,
66 scalaVersion := " 2.11.4" ,
77 scalacOptions ++= Seq (" -feature" ),
88 javacOptions in compile ++= Seq (" -Xlint:deprecation" ),
Original file line number Diff line number Diff line change 55 <artifactId >freeclimb-java-client</artifactId >
66 <packaging >jar</packaging >
77 <name >freeclimb-java-client</name >
8- <version >5.3.2 </version >
8+ <version >5.3.3 </version >
99 <url >https://github.com/freeclimbapi/java-sdk</url >
1010 <description >FreeClimb Java Client</description >
1111 <scm >
Original file line number Diff line number Diff line change @@ -131,7 +131,7 @@ private void init() {
131131 json = new JSON ();
132132
133133 // Set default User-Agent.
134- setUserAgent ("OpenAPI-Generator/5.3.2 /java" );
134+ setUserAgent ("OpenAPI-Generator/5.3.3 /java" );
135135
136136 authentications = new HashMap <String , Authentication >();
137137 }
You can’t perform that action at this time.
0 commit comments