Commit 865564b8cb734a992749eab3270304fcb2dc7a68
1 parent
44ef2e24
Exists in
master
mvn ant: remove sun-jaxb.episode on phase.
Showing
1 changed file
with
19 additions
and
0 deletions
Show diff stats
pom.xml
@@ -84,6 +84,25 @@ | @@ -84,6 +84,25 @@ | ||
84 | <clearOutputDir>false</clearOutputDir> | 84 | <clearOutputDir>false</clearOutputDir> |
85 | </configuration> | 85 | </configuration> |
86 | </plugin> | 86 | </plugin> |
87 | + <plugin> | ||
88 | + <groupId>org.apache.maven.plugins</groupId> | ||
89 | + <artifactId>maven-antrun-plugin</artifactId> | ||
90 | + <version>1.7</version> | ||
91 | + <executions> | ||
92 | + <execution> | ||
93 | + <id>changeVersion</id> | ||
94 | + <phase>process-sources</phase> | ||
95 | + <goals> | ||
96 | + <goal>run</goal> | ||
97 | + </goals> | ||
98 | + <configuration> | ||
99 | + <target name="Removing src/main/java/META-INF/sun-jaxb.episode"> | ||
100 | + <delete file="${basedir}/src/main/java/META-INF/sun-jaxb.episode" /> | ||
101 | + </target> | ||
102 | + </configuration> | ||
103 | + </execution> | ||
104 | + </executions> | ||
105 | + </plugin> | ||
87 | </plugins> | 106 | </plugins> |
88 | </build> | 107 | </build> |
89 | <dependencies> | 108 | <dependencies> |