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 72
72
</execution >
73
73
</executions >
74
74
</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 >
75
97
</plugins >
76
98
</build >
77
99
</project >
Original file line number Diff line number Diff line change 75
75
<include >LICENSE.txt</include >
76
76
</includes >
77
77
</fileSet >
78
+
79
+ <fileSet >
80
+ <directory >${basedir}/target/classes</directory >
81
+ <outputDirectory >.</outputDirectory >
82
+ <includes >
83
+ <include >VERSION.txt</include >
84
+ </includes >
85
+ </fileSet >
78
86
</fileSets >
79
87
80
88
<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