-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
91 additions
and
39 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,24 @@ | ||
// Library version | ||
object Kotori { | ||
const val groupId = "com.github.wanasit.kotori" | ||
const val version = "0.0.1" | ||
const val version = "0.0.3" | ||
|
||
object Package { | ||
const val repo = "maven" | ||
const val name = "Kotori" | ||
const val desc = "A Japanese tokenizer and morphological analysis engine written in Kotlin" | ||
const val userOrg = "wanasit" | ||
const val url = "https://github.com/wanasit/kotori" | ||
const val scm = "[email protected]:wanasit/kotori.git" | ||
const val licenseName = "MIT License" | ||
} | ||
} | ||
|
||
object Kotlin { | ||
const val version = "1.3.70" | ||
object Dependencies { | ||
const val stdlib = "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$version" | ||
const val reflect = "org.jetbrains.kotlin:kotlin-reflect:$version" | ||
|
||
const val test = "org.jetbrains.kotlin:kotlin-test:$version" | ||
const val testJunit = "org.jetbrains.kotlin:kotlin-test-junit:$version" | ||
|
@@ -22,6 +33,17 @@ object Kuromoji { | |
} | ||
|
||
|
||
object Release { | ||
object MavenPublish { | ||
const val plugin = "maven-publish" | ||
} | ||
|
||
object Bintray { | ||
const val version = "1.8.4" | ||
const val plugin = "com.jfrog.bintray" | ||
} | ||
} | ||
|
||
object Data { | ||
|
||
const val SudachiDictVersion = "sudachi-dictionary-20200330" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,3 @@ | ||
rootProject.name = "kotori" | ||
|
||
include("kotori") | ||
include("kotori-benchmark") | ||
include("kotori-dictionary-builder") |