Skip to content

Commit

Permalink
build.gradle tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
AoElite committed Mar 21, 2024
1 parent 0639b2d commit 5859063
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,22 +7,25 @@ group = 'com.aoelite.claude'
version = '1.0-SNAPSHOT'

publishing {
publications {
mavenJava(MavenPublication) {
from components.java
}
}
repositories {
mavenLocal()
maven {
name = "GitHubPackages"
url = "https://maven.pkg.github.com/aoelite/claude4j"
url = uri("https://maven.pkg.github.com/aoelite/claude4j")
credentials {
username = System.getenv("GITHUB_ACTOR")
password = System.getenv("GITHUB_TOKEN")
}
}
}
publications {
gpr(MavenPublication) {
groupId = 'com.aoelite.claude'
artifactId = 'claude4j'
version = '1.0-SNAPSHOT'
from components.java
}
}
}

repositories {
Expand Down

0 comments on commit 5859063

Please sign in to comment.