Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion terminal-emulator/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,14 @@ android {
testOptions {
unitTests.returnDefaultValues = true
}

publishing {
multipleVariants {
withSourcesJar()
withJavadocJar()
allVariants()
}
}
}

tasks.withType(Test) {
Expand All @@ -66,7 +74,7 @@ afterEvaluate {
publications {
// Creates a Maven publication called "release".
release(MavenPublication) {
from components.findByName('release')
from components.default
groupId = 'com.termux'
artifactId = 'terminal-emulator'
version = '0.118.0'
Expand Down
10 changes: 9 additions & 1 deletion terminal-view/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,14 @@ android {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}

publishing {
multipleVariants {
withSourcesJar()
withJavadocJar()
allVariants()
}
}
}

dependencies {
Expand All @@ -43,7 +51,7 @@ afterEvaluate {
publications {
// Creates a Maven publication called "release".
release(MavenPublication) {
from components.findByName('release')
from components.default
groupId = 'com.termux'
artifactId = 'terminal-view'
version = '0.118.0'
Expand Down
10 changes: 9 additions & 1 deletion termux-shared/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,14 @@ android {
path file('src/main/cpp/Android.mk')
}
}

publishing {
multipleVariants {
withSourcesJar()
withJavadocJar()
allVariants()
}
}
}

dependencies {
Expand All @@ -81,7 +89,7 @@ afterEvaluate {
publications {
// Creates a Maven publication called "release".
release(MavenPublication) {
from components.findByName('release')
from components.default
groupId = 'com.termux'
artifactId = 'termux-shared'
version = '0.118.0'
Expand Down