Skip to content
This repository was archived by the owner on Nov 26, 2020. It is now read-only.

Commit

Permalink
Rename modules
Browse files Browse the repository at this point in the history
  • Loading branch information
Pozo committed Jun 3, 2019
1 parent 1c55003 commit 5fc25a1
Show file tree
Hide file tree
Showing 10 changed files with 6 additions and 18 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,6 @@ dependencies {
publishing {
publications {
maven(MavenPublication) {
groupId = group
artifactId = 'kotlin-builder-annotation'
version = version

from components.java
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ dependencies {
implementation "org.jetbrains.kotlinx:kotlinx-metadata-jvm:${kotlinxMetadataVersion}"
implementation "com.google.auto.service:auto-service:${autoServiceVersion}"
implementation "com.squareup:javapoet:${javaPoetVersion}"
implementation(project(':annotation'))
implementation(project(':kotlin-builder-annotation'))

kapt "com.google.auto.service:auto-service:${autoServiceVersion}"

Expand All @@ -29,10 +29,6 @@ dependencies {
publishing {
publications {
maven(MavenPublication) {
groupId = group
artifactId = 'kotlin-builder-processor'
version = version

from components.java
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ repositories {
}

dependencies {
implementation("org.mapstruct:mapstruct-jdk8:${mapstructVersion}")
implementation("org.mapstruct:mapstruct:${mapstructVersion}")
implementation "org.mapstruct:mapstruct-processor:${mapstructVersion}"

testImplementation 'junit:junit:4.12'
Expand All @@ -19,10 +19,6 @@ dependencies {
publishing {
publications {
maven(MavenPublication) {
groupId = group
artifactId = 'mapstruct-kotlin-builder-processor'
version = version

from components.java
}
}
Expand Down
6 changes: 3 additions & 3 deletions settings.gradle
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
rootProject.name = 'mapstruct-kotlin'
include 'annotation'
include 'processor'
include 'builder-processor'
include 'kotlin-builder-annotation'
include 'kotlin-builder-processor'
include 'mapstruct-kotlin-builder-processor'
2 changes: 1 addition & 1 deletion test/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ repositories {
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
implementation("com.github.pozo:kotlin-builder-annotation:${kotlinBuilderAnnotationVersion}")
implementation("org.mapstruct:mapstruct-jdk8:${mapstructVersion}")
implementation("org.mapstruct:mapstruct:${mapstructVersion}")

kapt("com.github.pozo:kotlin-builder-processor:${kotlinBuilderProcessorVersion}")
kapt("com.github.pozo:mapstruct-kotlin-builder-processor:${kotlinMapstructProcessorVersion}")
Expand Down

0 comments on commit 5fc25a1

Please sign in to comment.