我正在制作一个使用sparql端点服务的maven应用程序。我想有一个maven目标来下载sparql端点并启动服务,但似乎maven在配置类路径时遇到一些问题。
我在https://mvnrepository.com/artifact/com.blazegraph/bigdata-jar使用了blazegraph及其工件。
这是我在pom.xml中的插件配置:
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.6.0</version>
<executions>
<execution>
<goals>
<goal>java</goal>
</goals>
</execution>
</executions>
<configuration>
<mainClass>com.bigdata.rdf.sail.webapp.StandaloneNanoSparqlServer</mainClass>
<includePluginDependencies>true</includePluginDependencies>
<includeProjectDependencies>false</includeProjectDependencies>
<executableDependency>
<groupId>com.blazegraph</groupId>
<artifactId>blazegraph-jar</artifactId>
</executableDependency>
<addOutputToClasspath>false</addOutputToClasspath>
</configuration>
<dependencies>
<!-- https://mvnrepository.com/artifact/com.blazegraph/blazegraph-jar -->
<dependency>
<groupId>com.blazegraph</groupId>
<artifactId>blazegraph-jar</artifactId>
<version>2.1.4</version>
<scope>runtime</scope>
<type>jar</type>
</dependency>
</dependencies>
</plugin>
调试输出提示插件无法找到工件:
Caused by: java.lang.NullPointerException
at org.codehaus.mojo.exec.AbstractExecMojo.findExecutableArtifact(AbstractExecMojo.java:278)
at org.codehaus.mojo.exec.ExecJavaMojo.determineRelevantPluginDependencies(ExecJavaMojo.java:650)
at org.codehaus.mojo.exec.ExecJavaMojo.addRelevantPluginDependenciesToClasspath(ExecJavaMojo.java:568)
at org.codehaus.mojo.exec.ExecJavaMojo.getClassLoader(ExecJavaMojo.java:520)
at org.codehaus.mojo.exec.ExecJavaMojo.execute(ExecJavaMojo.java:301)
at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo(DefaultBuildPluginManager.java:134)
... 27 more
我错过了什么?
修改1 这个问题不是What is a NullPointerException, and how do I fix it?的重复,因为Maven抛出异常,因为它无法在依赖列表中找到正确的工件(但它应该)。
编辑2 感谢@Sean Patrick Floyd,我已经部分地解决了这个问题。我想,类路径配置中仍然存在一些问题。现在Maven找到了主类和jar,但是在执行之后我在编译代码中得到了另一个NPE。查看blazegraph的开源代码,似乎无法在可执行jar中打开资源。
以下是导致NPE的行:
System.setProperty("jetty.home",
jettyXml.getClass().getResource("/war").toExternalForm());
答案 0 :(得分:11)
<executableDependency>
机制用于二进制文件,而不用于JAR,see the usage page。删除该部分,这些设置应该足够了:
<mainClass>com.bigdata.rdf.sail.webapp.StandaloneNanoSparqlServer</mainClass>
<includePluginDependencies>true</includePluginDependencies>
答案 1 :(得分:1)
只想将其发布到此处,因为它解决了我的问题,没有做任何其他事情,将版本降级至1.5.0,在exec:java上对我有用,因为问题中发布的插件配置受问题{{3的启发}}