Skip to content

Commit

Permalink
Merge pull request #179 from lfoppiano/grobid-0.8.1
Browse files Browse the repository at this point in the history
Update to grobid 0.8.1
  • Loading branch information
lfoppiano authored Sep 14, 2024
2 parents 111d9ef + 4002064 commit 0aafad3
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 3 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,13 @@ All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

## [0.8.1]

### Changed

+ Updated to Grobid version 0.8.1


## [0.8.0]

### Added
Expand Down
8 changes: 5 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -90,16 +90,17 @@ dependencies {
testImplementation "io.mockk:mockk:1.13.9"

//GROBID
implementation 'org.grobid:grobid-core:0.8.0'
implementation 'org.grobid:grobid-trainer:0.8.0'
implementation 'org.grobid:grobid-service:0.8.0'
implementation 'org.grobid:grobid-core:0.8.1'
implementation 'org.grobid:grobid-trainer:0.8.1'
implementation 'org.grobid:grobid-service:0.8.1'
implementation "xerces:xercesImpl:2.12.0"
implementation "net.arnx:jsonic:1.3.10"
implementation "net.sf.saxon:Saxon-HE:9.6.0-9"
implementation "xom:xom:1.3.2"
implementation 'javax.xml.bind:jaxb-api:2.3.0'
implementation 'org.apache.opennlp:opennlp-tools:1.9.1'
implementation 'black.ninia:jep:4.0.2'
implementation "org.apache.httpcomponents:httpclient:4.5.13"
implementation "org.apache.lucene:lucene-analyzers-common:4.5.1"
implementation group: 'org.jruby', name: 'jruby-complete', version: '9.2.13.0'

Expand All @@ -109,6 +110,7 @@ dependencies {
implementation 'commons-logging:commons-logging:1.2'
implementation 'commons-io:commons-io:2.11.0'
implementation 'commons-pool:commons-pool:1.6'
implementation 'commons-codec:commons-codec:1.14'

//Json
implementation 'com.fasterxml.jackson.core:jackson-core:2.14.3'
Expand Down
Binary file not shown.
Binary file not shown.
Binary file not shown.
5 changes: 5 additions & 0 deletions src/main/java/org/grobid/core/analyzers/QuantityAnalyzer.java
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,11 @@ public List<LayoutToken> tokenizeWithLayoutToken(String text) {
return result;
}

@Override
public List<LayoutToken> retokenizeFromLayoutToken(List<LayoutToken> tokens) {
throw new NotImplementedException("This method has not implemented yet");
}

@Override
public List<String> retokenizeSubdigits(List<String> list) {
throw new NotImplementedException("Not yet implemented");
Expand Down

0 comments on commit 0aafad3

Please sign in to comment.