Skip to content

Commit 09c88ac

Browse files
authored
Merge pull request #110 from sourceplusplus/codegen-removal
refactor: remove codegen module
2 parents d683bb9 + 6665edb commit 09c88ac

File tree

6 files changed

+3
-60
lines changed

6 files changed

+3
-60
lines changed

build.gradle.kts

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -77,8 +77,8 @@ dependencies {
7777
testImplementation("io.vertx:vertx-junit5:$vertxVersion")
7878
testImplementation("io.vertx:vertx-core:$vertxVersion")
7979

80-
annotationProcessor("io.vertx:vertx-codegen:$vertxVersion:processor")
81-
kapt(findProject("codegen") ?: project(":protocol:codegen"))
80+
kapt("io.vertx:vertx-codegen:$vertxVersion:processor")
81+
compileOnly("io.vertx:vertx-codegen:$vertxVersion")
8282

8383
detektPlugins("io.gitlab.arturbosch.detekt:detekt-formatting:1.21.0")
8484
}
@@ -142,7 +142,3 @@ spotless {
142142
licenseHeader(formattedLicenseHeader)
143143
}
144144
}
145-
146-
kapt {
147-
annotationProcessor("spp.protocol.codegen.ProtocolCodeGenProcessor")
148-
}

codegen/build.gradle.kts

Lines changed: 0 additions & 15 deletions
This file was deleted.

codegen/src/main/kotlin/spp/protocol/codegen/ProtocolCodeGenProcessor.kt

Lines changed: 0 additions & 36 deletions
This file was deleted.

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ kotlin.code.style=official
33
projectVersion=0.7.1-SNAPSHOT
44

55
kotlinVersion=1.6.10
6-
vertxVersion=4.3.3
6+
vertxVersion=4.3.4
77
jacksonVersion=2.13.4
88
joorVersion=0.9.14
99
jupiterVersion=5.9.1

settings.gradle

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,3 @@ pluginManagement {
1010
}
1111

1212
rootProject.name = 'protocol'
13-
14-
include "codegen"

0 commit comments

Comments
 (0)