Skip to content
This repository has been archived by the owner on Sep 6, 2023. It is now read-only.

Use kuromoji from maven repository. #58

Merged
merged 1 commit into from
Nov 18, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ It is horizontally-scalable on top of distributed system, since apache beam can
mvn clean package

# Run bigquery-to-datastore via the compiled JAR file
java -jar $(pwd)/target/kuromoji-for-bigquery-bundled-0.4.0.jar \
java -jar $(pwd)/target/kuromoji-for-bigquery-bundled-0.4.1.jar \
--project=test-project-id \
--schema=id:integer \
--inputDataset=test_input_dataset \
Expand Down
Binary file removed lib/kuromoji-0.7.7.jar
Binary file not shown.
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

<groupId>com.github.yuiskw</groupId>
<artifactId>kuromoji-for-bigquery</artifactId>
<version>0.4.0</version>
<version>0.4.1</version>

<packaging>jar</packaging>

Expand Down Expand Up @@ -361,8 +361,8 @@
<groupId>org.atilika.kuromoji</groupId>
<artifactId>kuromoji</artifactId>
<version>0.7.7</version>
<scope>system</scope>
<systemPath>${project.basedir}/lib/kuromoji-0.7.7.jar</systemPath>
<type>jar</type>
<scope>compile</scope>
</dependency>

</dependencies>
Expand Down