Skip to content

Commit 676fd03

Browse files
authored
Merge pull request #25840 from arjantijms/8.0
Add copy class command for Krazo jar
2 parents da1eb95 + 5fdebb8 commit 676fd03

1 file changed

Lines changed: 18 additions & 0 deletions

File tree

  • appserver/distributions/glassfish

appserver/distributions/glassfish/pom.xml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,24 @@
8282
<plugin>
8383
<artifactId>maven-antrun-plugin</artifactId>
8484
<executions>
85+
<execution>
86+
<id>copy-krazo-annotatedtypeprocessor</id>
87+
<phase>test</phase>
88+
<goals>
89+
<goal>run</goal>
90+
</goals>
91+
<configuration>
92+
<target>
93+
<mkdir
94+
dir="${project.basedir}/src/main/patches/krazo-core/org/eclipse/krazo/cdi/types" />
95+
96+
<copy
97+
file="${project.build.directory}/dependency/org/eclipse/krazo/cdi/types/AnnotatedTypeProcessor.class"
98+
tofile="${project.basedir}/src/main/patches/krazo-core/org/eclipse/krazo/cdi/types/AnnotatedTypeProcessor.class"
99+
overwrite="true" />
100+
</target>
101+
</configuration>
102+
</execution>
85103
<execution>
86104
<id>apply-patches</id>
87105
</execution>

0 commit comments

Comments
 (0)