Skip to content

Commit 156cfcd

Browse files
authored
Fix/publish (#22)
* feat: add target folder * feat: update readme * fix publish
1 parent 4b17bcf commit 156cfcd

3 files changed

Lines changed: 7 additions & 7 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,11 @@ Add Structura to your project:
2525

2626
```gradle
2727
repository {
28-
maven { url = "https://jitpack.io" } // JitPack repository for Structura
28+
maven { url = "https://repo.groupez.dev/releases" } // Add Structura repository replace releases with snapshots if needed
2929
}
3030
3131
dependencies {
32-
implementation("com.github.Traqueur-dev:Structura:<VERSION>") // Replace <VERSION> with the latest release
32+
implementation("fr.traqueur:structura:<VERSION>") // Replace <VERSION> with the latest release
3333
implementation("org.yaml:snakeyaml:2.4") // Required for YAML parsing
3434
}
3535
```

build.gradle.kts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@ plugins {
99
group = "fr.traqueur"
1010
version = property("version")!!
1111

12-
rootProject.extra.properties["sha"]?.let { sha ->
13-
version = sha
14-
}
15-
1612
extra.set("targetFolder", file("target/"))
1713
extra.set("classifier", System.getProperty("archive.classifier"))
1814
extra.set("sha", System.getProperty("github.sha"))
1915

16+
rootProject.extra.properties["sha"]?.let { sha ->
17+
version = sha
18+
}
19+
2020
repositories {
2121
mavenCentral()
2222
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#Tue Mar 25 10:59:06 CET 2025
22
distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
4-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10-bin.zip
4+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14-bin.zip
55
zipStoreBase=GRADLE_USER_HOME
66
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)