File tree Expand file tree Collapse file tree 3 files changed +31
-0
lines changed Expand file tree Collapse file tree 3 files changed +31
-0
lines changed Original file line number Diff line number Diff line change 7272 </execution >
7373 </executions >
7474 </plugin >
75+ <plugin >
76+ <artifactId >maven-resources-plugin</artifactId >
77+ <executions >
78+ <execution >
79+ <id >copy-resources</id >
80+ <!-- here the phase you need -->
81+ <phase >prepare-package</phase >
82+ <goals >
83+ <goal >copy-resources</goal >
84+ </goals >
85+ <configuration >
86+ <outputDirectory >${basedir} /target/classes</outputDirectory >
87+ <resources >
88+ <resource >
89+ <directory >src/main/resources</directory >
90+ <filtering >true</filtering >
91+ </resource >
92+ </resources >
93+ </configuration >
94+ </execution >
95+ </executions >
96+ </plugin >
7597 </plugins >
7698 </build >
7799</project >
Original file line number Diff line number Diff line change 7575 <include >LICENSE.txt</include >
7676 </includes >
7777 </fileSet >
78+
79+ <fileSet >
80+ <directory >${basedir}/target/classes</directory >
81+ <outputDirectory >.</outputDirectory >
82+ <includes >
83+ <include >VERSION.txt</include >
84+ </includes >
85+ </fileSet >
7886 </fileSets >
7987
8088 <dependencySets >
Original file line number Diff line number Diff line change 1+ WebLogic Deploy Tooling ${project.version}
You can’t perform that action at this time.
0 commit comments