我创建了一个简单的Java应用程序,并使用maven构建jar。
主要内容:
public class App {
public static void main(String[] args) {
System.out.println("come in");
CommandLine commandLine = new CommandLine(new RootCommand());
int executed = commandLine.execute(args);
System.exit(executed);
}
}
字符串
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>org.rakib</groupId>
<artifactId>test_jpackage</artifactId>
<version>0.0.1</version>
<properties>
<maven.compiler.source>21</maven.compiler.source>
<maven.compiler.target>21</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<dependency>
<groupId>info.picocli</groupId>
<artifactId>picocli</artifactId>
<version>4.7.5</version>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents.client5</groupId>
<artifactId>httpclient5</artifactId>
<version>5.2.1</version>
</dependency>
<dependency>
<groupId>org.json</groupId>
<artifactId>json</artifactId>
<version>20230618</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.9.0</version>
<configuration>
<annotationProcessorPaths>
<path>
<groupId>info.picocli</groupId>
<artifactId>picocli-codegen</artifactId>
<version>4.7.5</version>
</path>
</annotationProcessorPaths>
<compilerArgs>
<arg>-Aproject=${project.groupId}/${project.artifactId}</arg>
</compilerArgs>
</configuration>
</plugin>
</plugins>
</build>
</project>
型
然后我使用Jpackage为ubuntudeb格式创建一个本地可执行包和安装程序。
命令:jpackage --type deb --input . --name rakib --main-class org.rakib.App --main-jar target/test_jpackage-0.0.1.jar
当在我的机器上安装这个.deb
软件包时,它已安装(sudo dpkg -i rakib_1.0_amd64.deb
).
在终端rakib
中运行命令时无法识别。
的
如何使用jpackage
使此应用程序像Linux命令一样?
1条答案
按热度按时间zqdjd7g91#
默认情况下,您的软件包将安装在
/opt
中的一个文件夹中。因此,在您的情况下,您应该有一个名为/opt/rakib
的目录,其中包含一个bin
目录。要检查您的软件包将被安装在哪里,只需键入:
字符串
使用Jpackage,虽然它是一个有效的DEB文件,但你的可执行文件并没有直接链接到
/usr/bin
。所以它不在你的PATH上。我建议创建一个链接到你的~/bin
目录,它应该在你的PATH中。如果你想自定义目标目录,使用
--install-dir
。