所以可以直接配置gradle依赖。对不同的语言通过classifier选择对应的model。其中models是其他语言models的基础,默认可以处理English,必须引入。我们需要处理中文,所以还需要:models-chinese。
然而models和models-chinese两个包很大,下载有点慢(对网速自信的童鞋可以无视“然而”)。所以我就用迅雷下载好通过本地文件引入。
// Apply the java plugin to add support for Java
apply plugin: 'java'
// In this section you declare where to find the dependencies of your project
repositories {
// Use 'jcenter' for resolving your dependencies.
// You can declare any Maven/Ivy/file repository here.
maven {
url "http://maven.aliyun.com/nexus/content/groups/public"
}
jcenter()
}
// In this section you declare the dependencies for your production and test code
dependencies {
// https://mvnrepository.com/artifact/edu.stanford.nlp/stanford-corenlp
compile group: 'edu.stanf