我需要使用https://
库来解析eclipse中的nxParser
文件。
显然,完全有效的唯一来源是this github code,但这只是源代码,我需要一个内置的jar库。
有谁可以帮助我如何将源代码用作内置jar文件?
答案 0 :(得分:6)
如果你需要一个jar文件而不是添加pom.xml,请点击下面的链接下载jar文件http://central.maven.org/maven2/org/semanticweb/yars/nxparser-parsers/2.3.3/nxparser-parsers-2.3.3.jar
如果你想从github创建jar文件,请按照以下步骤进行操作,
在Linux / Mac中
1.克隆存储库
git clone https://github.com/nxparser/nxparser.git
cd nxparser
2.建立项目
./gradlew build
3.查找jar文件
`nxparser-parsers/build/libs/nxparser-parsers-2.3.4-SNAPSHOT.jar`
答案 1 :(得分:1)
Maven Central提供编译。 groupId is org.semanticweb.yars and the artifactId nxparser。
例如,使用maven,您可以添加到pom.xml
依赖项:
<!-- https://mvnrepository.com/artifact/org.semanticweb.yars/nxparser-parsers -->
<dependency>
<groupId>org.semanticweb.yars</groupId>
<artifactId>nxparser-parsers</artifactId>
<version>2.3.3</version>
</dependency>
答案 2 :(得分:1)
你知道,这是开源的。它附带构建文件,也可以通过maven。
所以“最糟糕的”情况下,你可以自己获得完整的git克隆和构建这个JAR;然后将其导入您的eclipse项目。