Skip to content

Commit d3bc773

Browse files
committed
fixing doc issues
1 parent f613c91 commit d3bc773

5 files changed

Lines changed: 97 additions & 8 deletions

File tree

.github/workflows/release.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,25 @@ on:
44
push:
55
tags:
66
- "v*"
7+
workflow_dispatch:
8+
9+
permissions:
10+
contents: write
711

812
jobs:
913
release:
1014
runs-on: ubuntu-latest
15+
env:
16+
JRELEASER_GITHUB_TOKEN: ${{ secrets.JRELEASER_GITHUB_TOKEN }}
17+
JRELEASER_GPG_PUBLIC_KEY: ${{ secrets.JRELEASER_GPG_PUBLIC_KEY }}
18+
JRELEASER_GPG_SECRET_KEY: ${{ secrets.JRELEASER_GPG_SECRET_KEY }}
19+
JRELEASER_GPG_PASSPHRASE: ${{ secrets.JRELEASER_GPG_PASSPHRASE }}
20+
JRELEASER_MAVENCENTRAL_USERNAME: ${{ secrets.JRELEASER_MAVENCENTRAL_USERNAME }}
21+
JRELEASER_MAVENCENTRAL_PASSWORD: ${{ secrets.JRELEASER_MAVENCENTRAL_PASSWORD }}
1122
steps:
1223
- uses: actions/checkout@v4
24+
with:
25+
fetch-depth: 0
1326
- uses: actions/setup-java@v4
1427
with:
1528
distribution: temurin

build.gradle.kts

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ plugins {
1313
alias(libs.plugins.spotless) apply false
1414
}
1515

16-
group = "io.promptspecj"
16+
group = "io.github.adwantg"
1717
version = providers.gradleProperty("projectVersion").getOrElse("0.1.0-SNAPSHOT")
1818

1919
allprojects {
@@ -69,17 +69,17 @@ subprojects {
6969
pom {
7070
name.set(project.name)
7171
description.set("PromptSpec-J module ${project.name}")
72-
url.set("https://github.com/promptspecj/promptspecj")
72+
url.set("https://github.com/adwantg/promptspecj")
7373
licenses {
7474
license {
7575
name.set("The Apache License, Version 2.0")
7676
url.set("https://www.apache.org/licenses/LICENSE-2.0.txt")
7777
}
7878
}
7979
scm {
80-
connection.set("scm:git:https://github.com/promptspecj/promptspecj.git")
81-
developerConnection.set("scm:git:ssh://git@github.com:promptspecj/promptspecj.git")
82-
url.set("https://github.com/promptspecj/promptspecj")
80+
connection.set("scm:git:https://github.com/adwantg/promptspecj.git")
81+
developerConnection.set("scm:git:ssh://git@github.com:adwantg/promptspecj.git")
82+
url.set("https://github.com/adwantg/promptspecj")
8383
}
8484
}
8585
}
@@ -103,7 +103,7 @@ jreleaser {
103103
project {
104104
name.set("PromptSpec-J")
105105
description.set("OpenAPI-style prompt contracts for Java and Spring AI.")
106-
website.set("https://github.com/promptspecj/promptspecj")
106+
website.set("https://github.com/adwantg/promptspecj")
107107
authors.set(listOf("PromptSpec-J contributors"))
108108
license.set("Apache-2.0")
109109
copyright.set("2026")
@@ -116,7 +116,7 @@ jreleaser {
116116
github {
117117
enabled.set(true)
118118
overwrite.set(false)
119-
repoOwner.set("promptspecj")
119+
repoOwner.set("adwantg")
120120
name.set("promptspecj")
121121
tagName.set("v{{projectVersion}}")
122122
skipTag.set(false)
534 KB
Loading
Lines changed: 76 additions & 0 deletions
Loading

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ org.gradle.jvmargs=-Xmx2g -Dfile.encoding=UTF-8
22
org.gradle.parallel=true
33
org.gradle.caching=true
44
org.gradle.configuration-cache=true
5-
projectVersion=0.1.0-SNAPSHOT
5+
projectVersion=0.1.0

0 commit comments

Comments
 (0)