2

我需要在最终的 JAR 中包含自定义文件 (/com/app/log4.properties)。

使用 jar-with-dependencies 时如何将一个文件添加到我的 JAR?

现在该 JAR 中只有类文件。我在用着:

mvn assembly:assembly

我的 pom.xml:

<build>
    <plugins>
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-compiler-plugin</artifactId>
            <version>3.0</version>
            <configuration>
                <encoding>UTF-8</encoding>
                <source>1.6</source>
                <target>1.6</target>
            </configuration>
        </plugin>
        <plugin>
            <artifactId>maven-assembly-plugin</artifactId>
            <configuration>
                <archive>
                    <manifest>
                        <mainClass>com.app.Start</mainClass>
                    </manifest>
                </archive>
                <descriptorRefs>
                    <descriptorRef>jar-with-dependencies</descriptorRef>
                </descriptorRefs>
            </configuration>
            <executions>
                <execution>
                    <id>make-assembly</id> <!-- this is used for inheritance merges -->
                    <phase>package</phase> <!-- bind to the packaging phase -->
                    <goals>
                        <goal>single</goal>
                    </goals>
                </execution>
            </executions>
        </plugin>
    </plugins>
</build>

谢谢你。

4

1 回答 1

7

将需要在最终工件中的非 Java 文件放在 中src/main/resources,在这种情况下:

src/main/resources/com/app/log4j.properties
于 2013-03-23T20:35:03.850 回答