Skip to content

Commit

Permalink
fix: remove jitpack
Browse files Browse the repository at this point in the history
  • Loading branch information
rhenwinch committed Feb 11, 2024
1 parent d31c10d commit 300a977
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 62 deletions.
11 changes: 0 additions & 11 deletions .github/workflows/jitpack.yml

This file was deleted.

8 changes: 0 additions & 8 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,6 @@ plugins {
id("com.osacky.doctor") version "0.9.1"
}

subprojects {
val moduleGroup = if (group.toString().contains(rootProject.name, true).not()) {
path.substringBeforeLast(":").replace(":", ".")
} else ""

group = "$group$moduleGroup"
}

// Generate a mf FAT AHH JAR!
tasks.register<Jar>("fatJar") {
archiveBaseName.set("fat")
Expand Down
21 changes: 0 additions & 21 deletions core/util/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ plugins {
alias(libs.plugins.flixclusive.library)
alias(libs.plugins.flixclusive.hilt)
alias(libs.plugins.flixclusive.compose)
`maven-publish`
}

android {
Expand All @@ -18,24 +17,4 @@ dependencies {
implementation(libs.jsoup)
implementation(libs.okhttp.dnsoverhttps)
implementation(libs.retrofit)
}

afterEvaluate {
publishing {
repositories {
mavenLocal()

val token = project.findProperty("gpr.key") as String? ?: System.getenv("GITHUB_TOKEN")

if (token != null) {
maven {
credentials {
username = "rhenwinch"
password = token
}
setUrl("https://maven.pkg.github.com/rhenwinch/Flixclusive")
}
}
}
}
}
23 changes: 1 addition & 22 deletions provider/base/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
plugins {
alias(libs.plugins.flixclusive.library)
alias(libs.plugins.flixclusive.testing)
`maven-publish`
}

android {
Expand All @@ -18,24 +17,4 @@ dependencies {
implementation(libs.coroutines.test)
implementation(libs.junit)
implementation(libs.mockk)
}

afterEvaluate {
publishing {
repositories {
mavenLocal()

val token = project.findProperty("gpr.key") as String? ?: System.getenv("GITHUB_TOKEN")

if (token != null) {
maven {
credentials {
username = "rhenwinch"
password = token
}
setUrl("https://maven.pkg.github.com/rhenwinch/Flixclusive")
}
}
}
}
}
}

0 comments on commit 300a977

Please sign in to comment.