关于本体自动构建goldminner的bug心得

一.项目地址
https://github.com/dfleischha…
该项目的fork量只有2,能不用的尽量别用,太费劲了。
二.marven踩坑
1.Could not resolve dependencies for project de.uni-mannheim.informatik.dws.goldminer:1.1-Snpshot,failure to find net.sourceforge.owlapi:owlapi:jar:3.2.4 in https://breda.informatik.uni-… was cached in the local repository,resolution will not be reattemped until the update interval of lski has elspsed or updated are forced

解决办法:这个问题在于在pom.xml中给的仓库https://breda.informatik.uni-…,而且3.2.4包根本没有,我这里的解决办法是修改pom.xml文件,将owlapi改为owlapi-api,版本改为3.2.5,具体如下,同时增加一个owlapi-apibinding的depency,否则在后面会报错。
<dependency>

<groupId>net.sourceforge.owlapi</groupId>
<artifactId>owlapi-api</artifactId>
<version>3.2.5-SNAPSHOT</version>

</dependency>

<dependency>

        <groupId>net.sourceforge.owlapi</groupId>
        <artifactId>owlapi-apibinding</artifactId>
        <version>3.2.5-SNAPSHOT</version>
    </dependency>

总结:类似于问题1的解决办法网上会有很多,但基本都是clean、install,实话告诉你,基本没什么用,maven在执行pom时会去仓库down相应的包,如果仓库里都没有,install是完全没用的。

2.unable to find javadoc command
该问题解决方式如下:
<properties>

    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    <javadocExecutable>C:\Program        Files\Java\jdk1.8.0_201\bin\javadoc.exe</javadocExecutable>

</properties>

3.javadoc 的Failed to execute goal org.apache.maven.plugins,
这个解决来自https://blog.csdn.net/m1043/a…,需要注意的是在maven3以上的版本,additionalparam需要替换成additionalJOption。

4.jre与jdk的error:解决办法是在pom里加和setting.xml 里加java变量,这个网上很多,就不赘述。

二.使用
1.配置GoldMiner
使用genconfig命令java -jar goldminer.jar genconfig调用gold miner,它在当前目录中生成配置文件miner.properties和axioms.properties。使miner.properties适应您的环境,并通过在axioms.properties中将它们设置为true来选择要生成的公理类型。不生成的公理类型必须设置为false。

这个地方会报too few argument,需要minner和axio两个配置文件,在classs里面可以找到。

三.那个。。。,实际上执行到后面链接数据库,你会发现mysql数据库已经不能用了,所以到这步就放弃了。

    原文作者:胡杨
    原文地址: https://segmentfault.com/a/1190000019175784
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞