Skip to content

Commit

Permalink
meta: project metadata updates
Browse files Browse the repository at this point in the history
  • Loading branch information
null8626 committed Jul 8, 2024
1 parent e771bff commit 00cbf0d
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ jobs:
- name: Test
run: |
chmod +x ./gradlew
./gradlew test javadoc --warning-mode all -DDECANCER_TESTING=1
./gradlew test javadoc -DDECANCER_TESTING=1
working-directory: bindings/java
shell: bash
native:
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ Windows:
git clone https://github.com/null8626/decancer.git --depth 1
cd .\decancer\bindings\java
powershell -NoLogo -NoProfile -NonInteractive -Command "Expand-Archive -Path .\bin\bindings.zip -DestinationPath .\bin -Force"
gradle build --warning-mode all
gradle build -x test
```

macOS/Linux:
Expand All @@ -144,7 +144,7 @@ git clone https://github.com/null8626/decancer.git --depth 1
cd ./decancer/bindings/java
unzip ./bin/bindings.zip -d ./bin
chmod +x ./gradlew
./gradlew build --warning-mode all
./gradlew build -x test
```

Tip: You can shrink the size of the resulting jar file by removing binaries in the `bin` directory for the platforms you don't want to support.
Expand Down
14 changes: 12 additions & 2 deletions bindings/java/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ plugins {

group 'io.github.null8626'
version '3.2.3'
description 'A tiny package that removes common unicode confusables/homoglyphs from strings.'
description 'A library that removes common unicode confusables/homoglyphs from strings.'

repositories {
mavenCentral()
Expand Down Expand Up @@ -35,7 +35,7 @@ publishing {

pom {
name = 'decancer'
description = 'A tiny package that removes common unicode confusables/homoglyphs from strings.'
description = 'A library that removes common unicode confusables/homoglyphs from strings.'
url = 'https://github.com/null8626/decancer'
inceptionYear = '2021'

Expand Down Expand Up @@ -83,6 +83,16 @@ publishing {
}

jreleaser {
project {
name = 'decancer'
version = '3.2.3'
description = 'A library that removes common unicode confusables/homoglyphs from strings.'
longDescription = 'A library that removes common unicode confusables/homoglyphs from strings.'
license = 'MIT'
inceptionYear = '2021'
copyright = 'Copyright (c) 2021-2024 null8626'
}

signing {
active = 'ALWAYS'
armored = true
Expand Down

0 comments on commit 00cbf0d

Please sign in to comment.