Skip to content

Commit ad26dc0

Browse files
committed
chore: upgraded from repo.fruxz.dev to nexus.fruxz.dev
1 parent 95aa2a8 commit ad26dc0

File tree

4 files changed

+14
-22
lines changed

4 files changed

+14
-22
lines changed

.github/workflows/build-Stacked.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ jobs:
55
runs-on: macos-latest
66
steps:
77
- uses: actions/checkout@v4
8-
- name: Set up JDK 23
8+
- name: Set up JDK 21
99
uses: actions/setup-java@v4
1010
with:
11-
java-version: '23'
11+
java-version: '21'
1212
distribution: 'temurin'
1313
cache: 'gradle'
1414
- name: Grant execute permission for gradlew

.github/workflows/publish-Stacked.yml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
name: Publish Library
22
concurrency:
33
group: ${{ github.workflow }}
4-
on:
5-
workflow_dispatch:
4+
on: [workflow_dispatch]
65
jobs:
76
publish:
87
runs-on: macos-latest
@@ -14,7 +13,7 @@ jobs:
1413

1514
- uses: actions/setup-java@v4
1615
with:
17-
java-version: '23'
16+
java-version: '21'
1817
distribution: 'temurin'
1918
cache: 'gradle'
2019

@@ -24,15 +23,15 @@ jobs:
2423
- name: Setup Gradle
2524
uses: gradle/actions/setup-gradle@v4
2625

27-
- name: Set CalVer version
26+
- name: Configure version
2827
id: calver
2928
run: echo "VERSION=$(date -u +'%Y.%-m')-$(git rev-parse --short "$GITHUB_SHA")" >> $GITHUB_ENV
3029

3130
- name: Publish package
3231
run: ./gradlew publish --stacktrace
3332
env:
34-
FRUXZ_DEV_USER: ${{ secrets.FRUXZ_DEV_USER }}
35-
FRUXZ_DEV_SECRET: ${{ secrets.FRUXZ_DEV_SECRET }}
33+
FXZ_NEXUS_USER: ${{ secrets.FXZ_NEXUS_USER }}
34+
FXZ_NEXUS_SECRET: ${{ secrets.FXZ_NEXUS_SECRET }}
3635
GH_RELEASE_VERSION: ${{ env.VERSION }}
3736
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3837
GH_USERNAME: ${{ github.actor }}

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ We ourselves recommend that you use `Gradle Kotlin` in all your projects, but yo
2121

2222
#### Repository
2323
```kotlin
24-
maven("https://repo.fruxz.dev/releases/")
24+
maven("https://nexus.fruxz.dev/repository/public/")
2525
```
2626

2727
##### Dependency

build.gradle.kts

Lines changed: 6 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,14 @@ group = "dev.fruxz"
1616

1717
repositories {
1818
mavenCentral()
19-
maven("https://repo.fruxz.dev/releases")
19+
maven("https://nexus.fruxz.dev/repository/public/")
2020
}
2121

2222
dependencies {
2323

2424
testImplementation(kotlin("test"))
2525

26-
implementation("dev.fruxz:ascend:2025.3-c701147")
26+
implementation("dev.fruxz:ascend:2025.5-c701147")
2727

2828
implementation("net.kyori:adventure-api:4.17.0")
2929
implementation("net.kyori:adventure-text-serializer-legacy:4.17.0")
@@ -38,13 +38,14 @@ publishing {
3838

3939
repositories {
4040
mavenLocal()
41-
maven("https://repo.fruxz.dev/releases") {
41+
maven("https://nexus.fruxz.dev/repository/releases/") {
4242
name = "fruxz.dev"
4343
credentials {
44-
username = System.getenv("FRUXZ_DEV_USER")
45-
password = System.getenv("FRUXZ_DEV_SECRET")
44+
username = System.getenv("FXZ_NEXUS_USER")
45+
password = System.getenv("FXZ_NEXUS_SECRET")
4646
}
4747
}
48+
4849
}
4950

5051
}
@@ -57,14 +58,6 @@ tasks {
5758
}
5859
}
5960

60-
dokkaHtml.configure {
61-
outputDirectory.set(layout.projectDirectory.dir("docs"))
62-
}
63-
64-
}
65-
66-
tasks {
67-
6861
compileKotlin {
6962
compilerOptions {
7063
freeCompilerArgs.add("-opt-in=kotlinx.serialization.ExperimentalSerializationApi")

0 commit comments

Comments
 (0)