gpt4 book ai didi

java - 在制作项目 jar 时包含一些 jar 并排除其他 jar 吗?

转载 作者:行者123 更新时间:2023-12-01 04:54:31 28 4
gpt4 key购买 nike

我正在使用 Maven 进行开发。我有一个要求,我想在我的项目 jar 中包含一些第三方 jar 并排除 pom.xml 文件中指定的其他 jar。下面是我的 pom.xml 文件。

<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.ckdm</groupId>
<artifactId>Exporter</artifactId>
<version>atlas2.1</version>
<packaging>jar</packaging>

<name>Exporter</name>
<url>http://maven.apache.org</url>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<aspectj.version>1.6.10</aspectj.version>
<org.springframework.version>3.0.5.RELEASE</org.springframework.version>
</properties>

<build>
<plugins>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.4</version>
<configuration>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
</configuration>
<executions>
<execution>
<id>make-assembly</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>

<dependencies>
<dependency>
<groupId>com.ckdm</groupId>
<artifactId>CubeCreator</artifactId>
<version>atlas2.1</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.guavus</groupId>
<artifactId>ConcurrentFlows</artifactId>
<version>atlas2.1</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>ps</groupId>
<artifactId>thriftGenerated</artifactId>
<version>atlas2.1</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>apache</groupId>
<artifactId>libthrift</artifactId>
<version>0.5.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.hadoop</groupId>
<artifactId>hadoop-core</artifactId>
<version>0.20.203.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>1.7.1</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>1.2.16</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.6.4</version>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-access</artifactId>
<version>1.0.1</version>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>1.0.1</version>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-core</artifactId>
<version>1.0.1</version>
</dependency>

</dependencies>

</project>

我在某处读到,指定所提供的范围不包括项目 jar 中的 jar。我在哪里出错了,它无法包含任何 jar ?

最佳答案

根据您的上述评论,我假设您有一个 jar ,其中包含您的主类。

在您的项目中添加 MANIFEST.MF 文件。其内容应如下所示:

Manifest-Version: 1.0
Class-path: YourMainJar.jar thirdparty1.jar thirdparty2.jar
Main-Class: com.test.mymainclass

YourMainJar.jar 是您的主类所在的文件,第三方 jar 需要位于放置 YourMainJar.jar 的同一位置。

当您双击 YourMainJar.jar 时,它将自动运行并从同一位置选择您的第三方 jar。

注意:当您将项目打包为 jar 时,需要包含此 MANIFEST.MF

关于java - 在制作项目 jar 时包含一些 jar 并排除其他 jar 吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14393939/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com