Include xml files in maven project

前端 未结 2 967
醉话见心
醉话见心 2020-12-18 14:37

I have a maven pom file to build from a structure like:

package1
--1.java
--2.java
--packageMetaInfo.xml

package2
--21.java
--22.java

2条回答
  •  醉话见心
    2020-12-18 15:29

    If you want the xml files to be included in your JAR file, then store them in the resources folder, instead of java.

    Presumably they're in src/main/java. Try moving them to src/main/resources. Anything in src/main/resources will be packaged into the JAR file along with the .class files.

提交回复
热议问题