Remove jbArchiva plugin and switch to Gitea maven.
Some checks failed
Ssg Check, Publish, and Release / ci (push) Failing after 2m55s

This commit is contained in:
Jesse Brault 2025-06-30 08:04:54 -05:00
parent aa44f0550d
commit 90a2769fb7

View File

@ -1,6 +1,6 @@
plugins {
id 'com.jessebrault.jbarchiva'
id 'java'
id 'maven-publish'
}
group 'com.jessebrault.ssg'
@ -47,3 +47,21 @@ testing {
}
}
}
publishing {
repositories {
maven {
name = 'Gitea'
url = uri('https://git.jessebrault.com/api/packages/jessebrault/maven')
credentials(HttpHeaderCredentials) {
name = "Authorization"
value = "token ${System.getenv("GITEA_ACCESS_TOKEN")}"
}
authentication {
header(HttpHeaderAuthentication)
}
}
}
}