Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rename the project #32

Merged
merged 2 commits into from
May 9, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# uke-anonymizer
# uke-pseudonymize

[![.github/workflows/build.yml](https://github.com/bw-company/uke-anonymizer/actions/workflows/build.yml/badge.svg)](https://github.com/bw-company/uke-anonymizer/actions/workflows/build.yml)
[![.github/workflows/build.yml](https://github.com/bw-company/uke-pseudonymize/actions/workflows/build.yml/badge.svg)](https://github.com/bw-company/uke-pseudonymize/actions/workflows/build.yml)

UKEファイルを仮名加工情報に変換するツールです。

Expand Down
2 changes: 1 addition & 1 deletion app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ testing {

application {
mainClass.set("jp.henry.uke.mask.AppKt")
applicationName = "uke-anonymizer"
applicationName = "uke-pseudonymize"
}

spotless {
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/kotlin/jp/henry/uke/mask/App.kt
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import java.security.SecureRandom
import java.util.concurrent.Callable
import kotlin.system.exitProcess

@Command(name = "uke-anonymizer", mixinStandardHelpOptions = true, version = ["v2022.12.19"], description = ["UKEファイルを匿名化"])
@Command(name = "uke-pseudonymize", mixinStandardHelpOptions = true, version = ["v2022.12.19"], description = ["UKEファイルを匿名化"])
KengoTODA marked this conversation as resolved.
Show resolved Hide resolved
class App : Callable<Int> {
@Parameters(index = "0", description = ["マスクするUKEファイル"])
lateinit var input: File
Expand Down
2 changes: 1 addition & 1 deletion settings.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
rootProject.name = "uke-anonymizer"
rootProject.name = "uke-pseudonymize"
include("app")