File tree Expand file tree Collapse file tree 12 files changed +54
-35
lines changed
kotlin-asyncapi-annotation
kotlin-asyncapi-ktor-example
kotlin-asyncapi-spring-boot-example
kotlin-asyncapi-maven-plugin
kotlin-asyncapi-spring-web Expand file tree Collapse file tree 12 files changed +54
-35
lines changed Original file line number Diff line number Diff line change @@ -17,14 +17,14 @@ jobs:
1717 runs-on : ubuntu-latest
1818 steps :
1919 - name : Checkout Code
20- uses : actions/checkout@v3
20+ uses : actions/checkout@v4
2121 - name : Setup Java
22- uses : actions/setup-java@v3
22+ uses : actions/setup-java@v4
2323 with :
2424 distribution : ' zulu'
2525 java-version : ' 17'
2626 - name : Restore Cache
27- uses : actions/cache@v1
27+ uses : actions/cache@v4
2828 with :
2929 path : ~/.m2/repository
3030 key : ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
Original file line number Diff line number Diff line change 55 <parent >
66 <groupId >org.openfolder</groupId >
77 <artifactId >kotlin-asyncapi-parent</artifactId >
8- <version >3.0.4 </version >
8+ <version >3.1.0-SNAPSHOT </version >
99 </parent >
1010
1111 <artifactId >kotlin-asyncapi-annotation</artifactId >
Original file line number Diff line number Diff line change 55 <parent >
66 <groupId >org.openfolder</groupId >
77 <artifactId >kotlin-asyncapi-parent</artifactId >
8- <version >3.0.4 </version >
8+ <version >3.1.0-SNAPSHOT </version >
99 </parent >
1010
1111 <artifactId >kotlin-asyncapi-context</artifactId >
Original file line number Diff line number Diff line change 55 <parent >
66 <groupId >org.openfolder</groupId >
77 <artifactId >kotlin-asyncapi-parent</artifactId >
8- <version >3.0.4 </version >
8+ <version >3.1.0-SNAPSHOT </version >
99 </parent >
1010
1111 <artifactId >kotlin-asyncapi-core</artifactId >
Original file line number Diff line number Diff line change 77 <parent >
88 <artifactId >kotlin-asyncapi-examples</artifactId >
99 <groupId >org.openfolder</groupId >
10- <version >3.0.4 </version >
10+ <version >3.1.0-SNAPSHOT </version >
1111 </parent >
1212
1313 <artifactId >kotlin-asyncapi-ktor-example</artifactId >
1818
1919 <properties >
2020 <java .version>17</java .version>
21- <kotlin .version>1.9.10 </kotlin .version>
22- <ktor .version>2.3.12 </ktor .version>
21+ <kotlin .version>2.1.20 </kotlin .version>
22+ <ktor .version>3.1.2 </ktor .version>
2323 <logback .version>1.4.14</logback .version>
2424 <slf4j .version>2.0.9</slf4j .version>
2525 <main .class>com.asyncapi.kotlinasyncapi.example.ktor.ExampleApplicationKt</main .class>
Original file line number Diff line number Diff line change 66 <parent >
77 <artifactId >kotlin-asyncapi-examples</artifactId >
88 <groupId >org.openfolder</groupId >
9- <version >3.0.4 </version >
9+ <version >3.1.0-SNAPSHOT </version >
1010 </parent >
1111
1212 <artifactId >kotlin-asyncapi-spring-boot-example</artifactId >
1717
1818 <properties >
1919 <java .version>17</java .version>
20- <kotlin .version>1.9.10 </kotlin .version>
21- <spring-boot .version>3.2.0 </spring-boot .version>
20+ <kotlin .version>2.1.20 </kotlin .version>
21+ <spring-boot .version>3.4.4 </spring-boot .version>
2222 <main .class>com.asyncapi.kotlinasyncapi.example.spring.ExampleApplicationKt</main .class>
2323 </properties >
2424
Original file line number Diff line number Diff line change 66 <parent >
77 <artifactId >kotlin-asyncapi-parent</artifactId >
88 <groupId >org.openfolder</groupId >
9- <version >3.0.4 </version >
9+ <version >3.1.0-SNAPSHOT </version >
1010 </parent >
1111
1212 <artifactId >kotlin-asyncapi-examples</artifactId >
Original file line number Diff line number Diff line change 55 <parent >
66 <groupId >org.openfolder</groupId >
77 <artifactId >kotlin-asyncapi-parent</artifactId >
8- <version >3.0.4 </version >
8+ <version >3.1.0-SNAPSHOT </version >
99 </parent >
1010
1111 <artifactId >kotlin-asyncapi-ktor</artifactId >
1414 <name >Kotlin AsyncAPI Ktor</name >
1515 <description >The Ktor plugin for the Kotlin AsyncAPI framework</description >
1616
17+ <properties >
18+ <ktor-server .version>3.1.2</ktor-server .version>
19+ </properties >
20+
1721 <dependencies >
1822 <dependency >
1923 <groupId >org.openfolder</groupId >
2226 <dependency >
2327 <groupId >io.ktor</groupId >
2428 <artifactId >ktor-server-core-jvm</artifactId >
25- <version >2.3.12</version >
29+ <version >${ktor-server.version} </version >
30+ <scope >provided</scope >
2631 </dependency >
2732
2833 <dependency >
2934 <groupId >io.ktor</groupId >
3035 <artifactId >ktor-server-test-host-jvm</artifactId >
31- <version >2.3.12 </version >
36+ <version >${ktor-server.version} </version >
3237 <scope >test</scope >
3338 </dependency >
3439 <dependency >
Original file line number Diff line number Diff line change 44 <parent >
55 <artifactId >kotlin-asyncapi-parent</artifactId >
66 <groupId >org.openfolder</groupId >
7- <version >3.0.4 </version >
7+ <version >3.1.0-SNAPSHOT </version >
88 </parent >
99
1010 <artifactId >kotlin-asyncapi-maven-plugin</artifactId >
1313 <name >Kotlin AsyncAPI Maven Plugin</name >
1414 <description >Maven plugin for running AsyncAPI scripts</description >
1515
16+ <properties >
17+ <maven-plugin-api .version>3.9.9</maven-plugin-api .version>
18+ <maven-plugin-annotations .version>3.15.1</maven-plugin-annotations .version>
19+ <maven-core .version>3.9.9</maven-core .version>
20+ </properties >
21+
1622 <dependencies >
1723 <dependency >
1824 <groupId >org.openfolder</groupId >
3844 <dependency >
3945 <groupId >org.apache.maven</groupId >
4046 <artifactId >maven-plugin-api</artifactId >
41- <version >3.8.6 </version >
47+ <version >${maven-plugin-api.version} </version >
4248 <scope >provided</scope >
4349 </dependency >
4450 <dependency >
4551 <groupId >org.apache.maven.plugin-tools</groupId >
4652 <artifactId >maven-plugin-annotations</artifactId >
47- <version >3.6.4 </version >
53+ <version >${maven-plugin-annotations.version} </version >
4854 <scope >provided</scope >
4955 </dependency >
5056 <dependency >
5157 <groupId >org.apache.maven</groupId >
5258 <artifactId >maven-core</artifactId >
53- <version >3.8.6 </version >
59+ <version >${maven-core.version} </version >
5460 <scope >provided</scope >
5561 </dependency >
5662 <dependency >
Original file line number Diff line number Diff line change 44 <parent >
55 <artifactId >kotlin-asyncapi-parent</artifactId >
66 <groupId >org.openfolder</groupId >
7- <version >3.0.4 </version >
7+ <version >3.1.0-SNAPSHOT </version >
88 </parent >
99
1010 <artifactId >kotlin-asyncapi-script</artifactId >
You can’t perform that action at this time.
0 commit comments