我创建了一个写入firebase的程序,当我在Netbeans IDE中运行它时,程序运行正常,但是当我将它构建到.JAR文件并运行所述jar文件时,我得到了这样的消息:
如果有帮助的话,请继承我的pom XML:
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.FUJCode</groupId>
<artifactId>climate2.0</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>jar</packaging>
<dependencies>
<dependency>
<groupId>com.google.firebase</groupId>
<artifactId>firebase-admin</artifactId>
<version>5.2.0</version>
</dependency>
</dependencies>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
</properties>
<name>UsageMoniter</name>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.4</version>
<configuration>
<archive>
<manifest>
<addClasspath>true</addClasspath>
<mainClass>Climate</mainClass>
</manifest>
</archive>
</configuration>
</plugin>
</plugins>
</build>
我相当确定我得到了所有的依赖关系所以我不知道可能出现什么问题。
如果您需要更多信息,请告诉我,我们将非常感谢您的帮助。 非常感谢,
汤姆
修改
编辑2
在项目文件夹中,它显示了依赖项文件夹中的所有firebase内容:
但是当你查看文件时,没有看到firebase业务,所以我不知道该说些什么......
答案 0 :(得分:0)
您需要将必要的第三方工件复制到项目中,例如:通过扩展你的pom.xml:
<build>
<plugins>
...
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<phase>install</phase>
<goals>
<goal>copy-dependencies</goal>
</goals>
<configuration>
<outputDirectory>${project.build.directory}/lib</outputDirectory>
</configuration>
</execution>
</executions>
</plugin>
...
</plugins>
</build>
然后,您需要在启动时将第三方依赖项添加到应用程序的类路径中,例如:
java.exe -cp "climate2.0-1.0-SNAPSHOT.jar;lib/*" -jar climate2.0-1.0-SNAPSHOT.jar
或在maven hade插件的帮助下创建一个uberjar,请参阅here
这将创建另一个jar,其中包含构建项目时的所有依赖项。