Skip to content

Commit

Permalink
refactor: rename projects
Browse files Browse the repository at this point in the history
  • Loading branch information
outadoc committed May 6, 2022
1 parent b08a4b1 commit a9547bf
Show file tree
Hide file tree
Showing 44 changed files with 23 additions and 23 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ dependencies {
// Remove this:
// kapt("com.github.stephanenicolas.toothpick:toothpick-compiler:...")

ksp("fr.outadoc.toothpick-compiler-ksp:toothpick-compiler-ksp:0.0.3")
ksp("fr.outadoc.toothpick-ksp:compiler:0.0.3")
}

ksp {
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
POM_ARTIFACT_ID=toothpick-compiler-ksp-core
POM_ARTIFACT_ID=compiler-core
POM_NAME=Toothpick KSP Compiler (Base)
POM_DESCRIPTION=Base classes for the Toothpick KSP compiler.
POM_PACKAGING=JAR
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ dependencies {
implementation(libs.ksp)
implementation(libs.kotlinpoet.core)
implementation(libs.kotlinpoet.ksp)
implementation(projects.toothpickCompilerKspCore)
implementation(projects.compilerCore)

testImplementation(libs.junit4)
testImplementation(libs.compiletesting.kt)
testImplementation(projects.toothpickCompilerTest)
testImplementation(projects.compilerTest)
}
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
POM_ARTIFACT_ID=toothpick-compiler-ksp-factory
POM_ARTIFACT_ID=compiler-factory
POM_NAME=Toothpick KSP Compiler (Factory)
POM_DESCRIPTION=KSP-based Factory symbol processory for Toothpick.
POM_PACKAGING=JAR
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ dependencies {
implementation(libs.ksp)
implementation(libs.kotlinpoet.core)
implementation(libs.kotlinpoet.ksp)
implementation(projects.toothpickCompilerKspCore)
implementation(projects.compilerCore)

testImplementation(libs.junit4)
testImplementation(libs.compiletesting.kt)
testImplementation(projects.toothpickCompilerTest)
testImplementation(projects.compilerTest)
}
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
POM_ARTIFACT_ID=toothpick-compiler-ksp-memberinjector
POM_ARTIFACT_ID=compiler-memberinjector
POM_NAME=Toothpick KSP Compiler (MemberInjector)
POM_DESCRIPTION=KSP-based MemberInjector symbol processory for Toothpick.
POM_PACKAGING=JAR
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ tasks.withType<KotlinCompile> {

dependencies {
implementation(libs.ksp)
implementation(projects.toothpickCompilerKspFactory)
implementation(projects.toothpickCompilerKspMemberinjector)
implementation(projects.compilerFactory)
implementation(projects.compilerMemberinjector)

testImplementation(libs.junit4)
testImplementation(libs.compiletesting.kt)
testImplementation(projects.toothpickCompilerTest)
testImplementation(projects.compilerTest)
}
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
POM_ARTIFACT_ID=toothpick-compiler-ksp
POM_ARTIFACT_ID=compiler
POM_NAME=Toothpick KSP Compiler
POM_DESCRIPTION=KSP-based compiler for Toothpick.
POM_PACKAGING=JAR
10 changes: 5 additions & 5 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
GROUP=fr.outadoc.toothpick-compiler-ksp
GROUP=fr.outadoc.toothpick-ksp
VERSION_NAME=0.0.3

POM_PACKAGING=JAR

POM_URL=https://github.com/outadoc/toothpick-compiler-ksp.git
POM_SCM_URL=https://github.com/outadoc/toothpick-compiler-ksp.git
POM_SCM_CONNECTION=scm:git:git://github.com/outadoc/toothpick-compiler-ksp.git
POM_SCM_DEV_CONNECTION=scm:git:ssh://[email protected]/outadoc/toothpick-compiler-ksp.git
POM_URL=https://github.com/outadoc/toothpick-ksp.git
POM_SCM_URL=https://github.com/outadoc/toothpick-ksp.git
POM_SCM_CONNECTION=scm:git:git://github.com/outadoc/toothpick-ksp.git
POM_SCM_DEV_CONNECTION=scm:git:ssh://[email protected]/outadoc/toothpick-ksp.git

POM_LICENCE_NAME=The Apache Software License, Version 2.0
POM_LICENCE_URL=http://www.apache.org/licenses/LICENSE-2.0.txt
Expand Down
12 changes: 6 additions & 6 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
rootProject.name = "toothpick-compiler-ksp-parent"
rootProject.name = "toothpick-ksp"

include(":toothpick-compiler-ksp")
include(":toothpick-compiler-ksp-core")
include(":toothpick-compiler-ksp-factory")
include(":toothpick-compiler-ksp-memberinjector")
include(":toothpick-compiler-test")
include(":compiler")
include(":compiler-core")
include(":compiler-factory")
include(":compiler-memberinjector")
include(":compiler-test")

enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")

Expand Down

0 comments on commit a9547bf

Please sign in to comment.