Skip to content

Commit

Permalink
Issue eclipse-ee4j#23507 Moved resources plugin execution in rest-ser…
Browse files Browse the repository at this point in the history
…vice module

- to the phase process-classes, which is closer to the compilation.
  • Loading branch information
dmatej committed Jul 30, 2021
1 parent 1632336 commit f3849bd
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion nucleus/admin/rest/rest-service/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -141,17 +141,20 @@
<build>
<plugins>
<plugin>
<!-- The services directory must be processed after compilation,
it would be used in compilation otherwise and the build would fail -->
<artifactId>maven-resources-plugin</artifactId>
<executions>
<execution>
<id>default-resources</id>
<phase>test</phase>
<phase>process-classes</phase>
<goals>
<goal>resources</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- Test classes from this module are used elsewhere -->
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<executions>
Expand Down

0 comments on commit f3849bd

Please sign in to comment.