Skip to content

Commit

Permalink
[Test] Fixed migrations gradle
Browse files Browse the repository at this point in the history
  • Loading branch information
jeluchu committed Dec 21, 2022
1 parent 6876893 commit 3773321
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 11 deletions.
1 change: 1 addition & 0 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ dependencies {

implementation project(':jchucomponents-core')
implementation project(':jchucomponents-ui')

// JETPACK COMPOSE -----------------------------------------------------------------------------
implementation platform('androidx.compose:compose-bom:2022.11.00')
implementation 'androidx.compose.ui:ui'
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
*/

buildscript {

repositories {
google()
mavenCentral()
Expand All @@ -19,6 +18,7 @@ buildscript {

allprojects {
repositories {
gradlePluginPortal()
google()
mavenCentral()
maven { url 'https://jitpack.io' }
Expand Down
7 changes: 4 additions & 3 deletions jchucomponents-core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ android {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
namespace 'com.jeluchu.jchucomponents.core'

dokkaHtml.configure {

Expand All @@ -60,6 +59,8 @@ android {
}
}

namespace 'com.jeluchu.jchucomponents.core'

}

dependencies {
Expand Down Expand Up @@ -118,9 +119,9 @@ afterEvaluate {
publications {
release(MavenPublication) {
from components.release
groupId = "com.jeluchu"
groupId = "com.github.jeluchu"
artifactId = "jchucomponents-core"
version = "1.0.0-beta09"
version = "1.0.0-beta12"
}
}
}
Expand Down
9 changes: 5 additions & 4 deletions jchucomponents-ui/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,11 @@ android {
}

compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
sourceCompatibility JavaVersion.VERSION_11
targetCompatibility JavaVersion.VERSION_11
}


namespace 'com.jeluchu.jchucomponents.ui'

}
Expand Down Expand Up @@ -64,9 +65,9 @@ afterEvaluate {
publications {
release(MavenPublication) {
from components.release
groupId = "com.jeluchu"
groupId = "com.github.jeluchu"
artifactId = "jchucomponents-ui"
version = "1.0.0-beta09"
version = "1.0.0-beta12"
}
}
}
Expand Down
7 changes: 4 additions & 3 deletions settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
*/

rootProject.name = "JchuComponents"
include ':app'
include ':jchucomponents-core'
include ':jchucomponents-ui'

include ':jchucomponents-core',
':jchucomponents-ui',
'app'

0 comments on commit 3773321

Please sign in to comment.