mirror of
https://github.com/keiyoushi/extensions-source.git
synced 2024-11-21 18:02:42 +01:00
rename lib projects to follow gradle convention (#291)
This commit is contained in:
parent
42e1db7f31
commit
ac10aa04a0
@ -35,7 +35,7 @@ dependencies {
|
||||
// Note that this does not mean that generated sources are going to
|
||||
// implement them too; this is just to be able to compile and generate sources.
|
||||
rootProject.subprojects
|
||||
.filter { it.path.startsWith(":lib") }
|
||||
.filter { it.path.startsWith(":lib:") }
|
||||
.forEach(::implementation)
|
||||
}
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
dependencies {
|
||||
implementation(project(":lib-cryptoaes"))
|
||||
implementation(project(":lib-randomua"))
|
||||
implementation(project(":lib:cryptoaes"))
|
||||
implementation(project(":lib:randomua"))
|
||||
}
|
||||
|
@ -1,3 +1,3 @@
|
||||
dependencies {
|
||||
implementation(project(":lib-synchrony"))
|
||||
implementation(project(":lib:synchrony"))
|
||||
}
|
||||
|
@ -1,3 +1,3 @@
|
||||
dependencies {
|
||||
implementation(project(":lib-randomua"))
|
||||
implementation(project(":lib:randomua"))
|
||||
}
|
||||
|
@ -1,3 +1,3 @@
|
||||
dependencies {
|
||||
implementation(project(":lib-randomua"))
|
||||
implementation(project(":lib:randomua"))
|
||||
}
|
||||
|
@ -1,4 +1,4 @@
|
||||
dependencies {
|
||||
implementation(project(":lib-synchrony"))
|
||||
implementation(project(":lib-cryptoaes"))
|
||||
}
|
||||
implementation(project(":lib:synchrony"))
|
||||
implementation(project(":lib:cryptoaes"))
|
||||
}
|
||||
|
@ -1,3 +1,3 @@
|
||||
dependencies {
|
||||
implementation project(':lib-unpacker')
|
||||
implementation project(':lib:unpacker')
|
||||
}
|
||||
|
@ -1,3 +1,3 @@
|
||||
dependencies {
|
||||
implementation(project(':lib-textinterceptor'))
|
||||
implementation(project(':lib:textinterceptor'))
|
||||
}
|
||||
|
@ -1,11 +1,7 @@
|
||||
include(":core")
|
||||
|
||||
// Load all modules under /lib
|
||||
File(rootDir, "lib").eachDir {
|
||||
val libName = it.name
|
||||
include(":lib-$libName")
|
||||
project(":lib-$libName").projectDir = File("lib/$libName")
|
||||
}
|
||||
File(rootDir, "lib").eachDir { include("lib:${it.name}") }
|
||||
|
||||
if (System.getenv("CI") == null || System.getenv("CI_MODULE_GEN") == "true") {
|
||||
// Local development (full project build)
|
||||
|
@ -8,5 +8,5 @@ ext {
|
||||
apply from: "$rootDir/common.gradle"
|
||||
|
||||
dependencies {
|
||||
implementation(project(':lib-cryptoaes'))
|
||||
implementation(project(':lib:cryptoaes'))
|
||||
}
|
||||
|
@ -8,5 +8,5 @@ ext {
|
||||
apply from: "$rootDir/common.gradle"
|
||||
|
||||
dependencies {
|
||||
implementation(project(':lib-textinterceptor'))
|
||||
implementation(project(':lib:textinterceptor'))
|
||||
}
|
||||
|
@ -8,5 +8,5 @@ ext {
|
||||
apply from: "$rootDir/common.gradle"
|
||||
|
||||
dependencies {
|
||||
implementation(project(":lib-i18n"))
|
||||
implementation(project(":lib:i18n"))
|
||||
}
|
||||
|
@ -8,5 +8,5 @@ ext {
|
||||
apply from: "$rootDir/common.gradle"
|
||||
|
||||
dependencies {
|
||||
implementation(project(':lib-cryptoaes'))
|
||||
implementation(project(':lib:cryptoaes'))
|
||||
}
|
||||
|
@ -8,5 +8,5 @@ ext {
|
||||
apply from: "$rootDir/common.gradle"
|
||||
|
||||
dependencies {
|
||||
implementation(project(":lib-i18n"))
|
||||
implementation(project(":lib:i18n"))
|
||||
}
|
||||
|
@ -7,5 +7,5 @@ ext {
|
||||
apply from: "$rootDir/common.gradle"
|
||||
|
||||
dependencies {
|
||||
implementation(project(":lib-i18n"))
|
||||
implementation(project(":lib:i18n"))
|
||||
}
|
||||
|
@ -8,5 +8,5 @@ ext {
|
||||
apply from: "$rootDir/common.gradle"
|
||||
|
||||
dependencies {
|
||||
implementation(project(":lib-randomua"))
|
||||
implementation(project(":lib:randomua"))
|
||||
}
|
||||
|
@ -7,5 +7,5 @@ ext {
|
||||
apply from: "$rootDir/common.gradle"
|
||||
|
||||
dependencies {
|
||||
implementation project(":lib-randomua")
|
||||
implementation project(":lib:randomua")
|
||||
}
|
||||
|
@ -7,5 +7,5 @@ ext {
|
||||
apply from: "$rootDir/common.gradle"
|
||||
|
||||
dependencies {
|
||||
implementation project(':lib-dataimage')
|
||||
implementation project(':lib:dataimage')
|
||||
}
|
||||
|
@ -7,5 +7,5 @@ ext {
|
||||
apply from: "$rootDir/common.gradle"
|
||||
|
||||
dependencies {
|
||||
implementation(project(':lib-textinterceptor'))
|
||||
implementation(project(':lib:textinterceptor'))
|
||||
}
|
||||
|
@ -8,5 +8,5 @@ ext {
|
||||
apply from: "$rootDir/common.gradle"
|
||||
|
||||
dependencies {
|
||||
implementation(project(':lib-cryptoaes'))
|
||||
implementation(project(':lib:cryptoaes'))
|
||||
}
|
||||
|
@ -7,5 +7,5 @@ ext {
|
||||
apply from: "$rootDir/common.gradle"
|
||||
|
||||
dependencies {
|
||||
implementation(project(':lib-textinterceptor'))
|
||||
implementation(project(':lib:textinterceptor'))
|
||||
}
|
||||
|
@ -7,5 +7,5 @@ ext {
|
||||
apply from: "$rootDir/common.gradle"
|
||||
|
||||
dependencies {
|
||||
implementation(project(":lib-synchrony"))
|
||||
implementation(project(":lib:synchrony"))
|
||||
}
|
||||
|
@ -8,5 +8,5 @@ ext {
|
||||
apply from: "$rootDir/common.gradle"
|
||||
|
||||
dependencies {
|
||||
implementation(project(':lib-textinterceptor'))
|
||||
implementation(project(':lib:textinterceptor'))
|
||||
}
|
||||
|
@ -7,5 +7,5 @@ ext {
|
||||
apply from: "$rootDir/common.gradle"
|
||||
|
||||
dependencies {
|
||||
implementation(project(":lib-synchrony"))
|
||||
implementation(project(":lib:synchrony"))
|
||||
}
|
||||
|
@ -8,5 +8,5 @@ ext {
|
||||
apply from: "$rootDir/common.gradle"
|
||||
|
||||
dependencies {
|
||||
implementation(project(":lib-randomua"))
|
||||
implementation(project(":lib:randomua"))
|
||||
}
|
||||
|
@ -7,6 +7,6 @@ ext {
|
||||
apply from: "$rootDir/common.gradle"
|
||||
|
||||
dependencies {
|
||||
implementation(project(':lib-cryptoaes'))
|
||||
implementation(project(':lib-unpacker'))
|
||||
implementation(project(':lib:cryptoaes'))
|
||||
implementation(project(':lib:unpacker'))
|
||||
}
|
||||
|
@ -7,5 +7,5 @@ ext {
|
||||
apply from: "$rootDir/common.gradle"
|
||||
|
||||
dependencies {
|
||||
implementation project(':lib-dataimage')
|
||||
implementation project(':lib:dataimage')
|
||||
}
|
||||
|
@ -7,5 +7,5 @@ ext {
|
||||
apply from: "$rootDir/common.gradle"
|
||||
|
||||
dependencies {
|
||||
implementation project(':lib-dataimage')
|
||||
implementation project(':lib:dataimage')
|
||||
}
|
||||
|
@ -8,5 +8,5 @@ ext {
|
||||
apply from: "$rootDir/common.gradle"
|
||||
|
||||
dependencies {
|
||||
implementation(project(":lib-randomua"))
|
||||
implementation(project(":lib:randomua"))
|
||||
}
|
||||
|
@ -7,5 +7,5 @@ ext {
|
||||
apply from: "$rootDir/common.gradle"
|
||||
|
||||
dependencies {
|
||||
implementation project(':lib-unpacker')
|
||||
implementation project(':lib:unpacker')
|
||||
}
|
||||
|
@ -7,5 +7,5 @@ ext {
|
||||
apply from: "$rootDir/common.gradle"
|
||||
|
||||
dependencies {
|
||||
implementation(project(":lib-synchrony"))
|
||||
implementation(project(":lib:synchrony"))
|
||||
}
|
||||
|
@ -7,5 +7,5 @@ ext {
|
||||
apply from: "$rootDir/common.gradle"
|
||||
|
||||
dependencies {
|
||||
implementation project(':lib-unpacker')
|
||||
implementation project(':lib:unpacker')
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user