Skip to content

Commit eaf536d

Browse files
chore: move domain (#77)
* feat: Implement message model annotations (#43) * feat - Implement message model annotations * chore - Remove unused dependencies * feat: Process message and schema annotations (#44) * feat - Implement Message annotation processing * feat - Merge annotation components * feat - Add schema annotation processor * refactor - Make annotation processor context dynamic test - Add annotation provider integration test * chore - ktlint format * refactor - Refactor dependency management --------- Co-authored-by: lorenzsimon <[email protected]> * feat: Channel annotation processing (#45) * feat - Add Channel and Operation annotations * feat - Add Channel processing * refactor - Annotation keys to values * chore - Fix confusing test values * refactor: Annotation mapping (#47) * refactor - Annotation mapping improvements * refactor - Add option for inline messages and schemas * refactor - Use classname for channel component keys if autogenerated * fix - Typo * test - Fix Schemas test * feat: Add Kotlin module to model resolver (#48) feat - Add Kotlin module to model resolver * feat: Bind channels to annotation components (#49) * refactor - Context providers * feat - Bind channels to annotation components * refactor - Annotation components binding * chore - Format * chore: Add Spring Boot example application (#63) * chore: Add Spring Boot example application * fix: Java version * fix: Test * chore: Bump dependencies (#65) * chore: Bump dependencies * chore: Bump dependencies * chore: Set Java version in GH actions * fix: Autoconfig migration * fix: Migrate Jakarta * chore: Refactor data objects (#67) * chore: Revert * release: 3.0.3 * pre-release: 3.0.4 * feat: Add Ktor integration (#72) * docs: Update Spring support * pre-release: 3.0.4 (#70) * docs: Link Spring Boot example * Add Ktor integration * Fix content type * Fix test * Fix test * Add Script extension * Add Script extension * Refactor * Add plugin integration test * Add docs for ktor integration * Move to new domain namespace * Fix kts example usage * Move domain * Bump dependencies --------- Co-authored-by: Lorenz Simon <[email protected]>
1 parent d72b79f commit eaf536d

File tree

140 files changed

+637
-637
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

140 files changed

+637
-637
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
![Logo](.github/assets/kotlin_asyncapi_logo.png)
22
[![Apache License 2](https://img.shields.io/badge/license-ASF2-blue.svg)](https://www.apache.org/licenses/LICENSE-2.0.txt)
3-
[![Build status](https://github.com/OpenFolder/kotlin-asyncapi/actions/workflows/build.yml/badge.svg?branch=master)](https://github.com/OpenFolder/kotlin-asyncapi/actions/workflows/build.yml)
4-
[![Qodana](https://github.com/OpenFolder/kotlin-asyncapi/actions/workflows/qodana.yml/badge.svg?branch=master)](https://openfolder.github.io/kotlin-asyncapi/qodana/report)
5-
[![Maven Central status](https://img.shields.io/maven-central/v/org.openfolder/kotlin-asyncapi-parent.svg)](https://search.maven.org/#search%7Cga%7C1%7Corg.openfolder%20kotlin-asyncapi)
3+
[![Build status](https://github.com/asyncapi/kotlin-asyncapi/actions/workflows/build.yml/badge.svg?branch=master)](https://github.com/asyncapi/kotlin-asyncapi/actions/workflows/build.yml)
4+
[![Qodana](https://github.com/asyncapi/kotlin-asyncapi/actions/workflows/qodana.yml/badge.svg?branch=master)](https://asyncapi.github.io/kotlin-asyncapi/qodana/report)
5+
[![Maven Central status](https://img.shields.io/maven-central/v/com.asyncapi/kotlin-asyncapi-parent.svg)](https://search.maven.org/#search%7Cga%7C1%7Ccom.asyncapi%20kotlin-asyncapi)
66

77
> [!NOTE]
88
> Spring Framework 6 / Spring Boot 3 is supported since `6.0.14` / `3.1.6`
@@ -165,7 +165,7 @@ data class ChatMessage(
165165
```
166166
```xml
167167
<dependency>
168-
<groupId>org.openfolder</groupId>
168+
<groupId>com.asyncapi</groupId>
169169
<artifactId>kotlin-asyncapi-spring-web</artifactId>
170170
<version>${kotlin-asyncapi.version}</version>
171171
</dependency>
@@ -225,7 +225,7 @@ data class ChatMessage(
225225
```
226226
```xml
227227
<dependency>
228-
<groupId>org.openfolder</groupId>
228+
<groupId>com.asyncapi</groupId>
229229
<artifactId>kotlin-asyncapi-ktor</artifactId>
230230
<version>${kotlin-asyncapi.version}</version>
231231
</dependency>
@@ -275,7 +275,7 @@ servers {
275275
```
276276
```xml
277277
<plugin>
278-
<groupId>org.openfolder</groupId>
278+
<groupId>com.asyncapi</groupId>
279279
<artifactId>kotlin-asyncapi-maven-plugin</artifactId>
280280
<version>${kotlin-asyncapi.version}</version>
281281
<executions>

kotlin-asyncapi-annotation/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<modelVersion>4.0.0</modelVersion>
44

55
<parent>
6-
<groupId>org.openfolder</groupId>
6+
<groupId>com.asyncapi</groupId>
77
<artifactId>kotlin-asyncapi-parent</artifactId>
88
<version>3.0.4-SNAPSHOT</version>
99
</parent>
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package org.openfolder.kotlinasyncapi.annotation
1+
package com.asyncapi.kotlinasyncapi.annotation
22

33
@Target(AnnotationTarget.ANNOTATION_CLASS)
44
annotation class AsyncApiAnnotation
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package org.openfolder.kotlinasyncapi.annotation
1+
package com.asyncapi.kotlinasyncapi.annotation
22

33
annotation class CorrelationID(
44
val isDefault: kotlin.Boolean = false,
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package org.openfolder.kotlinasyncapi.annotation
1+
package com.asyncapi.kotlinasyncapi.annotation
22

33
annotation class ExternalDocumentation(
44
val isDefault: kotlin.Boolean = false,

kotlin-asyncapi-annotation/src/main/kotlin/org/openfolder/kotlinasyncapi/annotation/Primitive.kt renamed to kotlin-asyncapi-annotation/src/main/kotlin/com/asyncapi/kotlinasyncapi/annotation/Primitive.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package org.openfolder.kotlinasyncapi.annotation
1+
package com.asyncapi.kotlinasyncapi.annotation
22

33
annotation class Int(
44
val value: kotlin.Int = 0,

kotlin-asyncapi-annotation/src/main/kotlin/org/openfolder/kotlinasyncapi/annotation/Schema.kt renamed to kotlin-asyncapi-annotation/src/main/kotlin/com/asyncapi/kotlinasyncapi/annotation/Schema.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package org.openfolder.kotlinasyncapi.annotation
1+
package com.asyncapi.kotlinasyncapi.annotation
22

33
import kotlin.reflect.KClass
44

kotlin-asyncapi-annotation/src/main/kotlin/org/openfolder/kotlinasyncapi/annotation/Tag.kt renamed to kotlin-asyncapi-annotation/src/main/kotlin/com/asyncapi/kotlinasyncapi/annotation/Tag.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package org.openfolder.kotlinasyncapi.annotation
1+
package com.asyncapi.kotlinasyncapi.annotation
22

33
annotation class Tag(
44
val isDefault: kotlin.Boolean = false,
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
package org.openfolder.kotlinasyncapi.annotation.channel
1+
package com.asyncapi.kotlinasyncapi.annotation.channel
22

3-
import org.openfolder.kotlinasyncapi.annotation.AsyncApiAnnotation
3+
import com.asyncapi.kotlinasyncapi.annotation.AsyncApiAnnotation
44

55
@Target(
66
AnnotationTarget.CLASS,
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
package org.openfolder.kotlinasyncapi.annotation.channel
1+
package com.asyncapi.kotlinasyncapi.annotation.channel
22

3-
import org.openfolder.kotlinasyncapi.annotation.Boolean
4-
import org.openfolder.kotlinasyncapi.annotation.Int
5-
import org.openfolder.kotlinasyncapi.annotation.Schema
3+
import com.asyncapi.kotlinasyncapi.annotation.Boolean
4+
import com.asyncapi.kotlinasyncapi.annotation.Int
5+
import com.asyncapi.kotlinasyncapi.annotation.Schema
66

77
annotation class ChannelBindings(
88
val isDefault: kotlin.Boolean = false,

0 commit comments

Comments
 (0)