在pom.xml中包含maven项目中的所有资源

问题描述 投票:0回答:1

我需要在pom.xml中包括所有资源,但没有成功。确实,我正在尝试这段代码,但我认为它不适用于所有资源

            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-shade-plugin</artifactId>
                <version>2.4.1</version>
                <executions>
                    <execution>
                        <phase>package</phase>
                        <goals>
                            <goal>shade</goal>
                        </goals>
                        <configuration>
                            <shadedArtifactAttached>true</shadedArtifactAttached>
                            <shadedClassifierName>project/classifier</shadedClassifierName>
                            <outputFile>shade\${project.artifactId}.jar</outputFile>
                            <transformers>
                                <transformer
                                    implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
                                    <mainClass>fr.tse.fise2.pip.graphic.Main</mainClass>
                                </transformer>
                            </transformers>
                        </configuration>
                    </execution>
                </executions>
            </plugin>
java eclipse maven jar pom.xml
1个回答
0
投票

我需要在名为pip的项目中包含所有资源。

错误,这是正义的,因为我在pom.xml中包含的文件不包含src / main / resources,并且main无法访问此文件夹中的文件

enter image description here

© www.soinside.com 2019 - 2024. All rights reserved.