Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
src/main/resourcesディレクトリ内のリソースのみをmavenによって公開されたjarにパッケージ化したい。それを行う方法はありますか?
src/main/resources
次のことを試してください。
<build> <resources> <resource> <directory>src/main/resources</directory> <filtering>false</filtering> </resource> </resources> <plugins> <plugin> ... </plugin> </plugins> ... </build>
私が理解できる限り、それはあなたが求めていたものかもしれません。