Skip to content
This repository has been archived by the owner on Feb 5, 2019. It is now read-only.

Commit

Permalink
do not fail the build if sth does not exist
Browse files Browse the repository at this point in the history
Signed-off-by: Lukas Jungmann <lukas.jungmann@oracle.com>
  • Loading branch information
lukasj committed Jan 19, 2017
1 parent 3c17c1f commit 53a1e12
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -34,3 +34,4 @@ java_pid*
# gradle
.gradle/
/build
/jaxws-ri/bundles/jaxws-ri-jdk/filelist
4 changes: 2 additions & 2 deletions jaxws-ri/bundles/jaxws-ri-jdk-utility/anttasks/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -229,12 +229,12 @@
</goals>
<configuration>
<target>
<move todir="${project.build.directory}/generated-sources" overwrite="true">
<move todir="${project.build.directory}/generated-sources" overwrite="true" failonerror="false">
<fileset dir="${project.build.directory}/generated-sources/META-INF/versions/9">
<include name="**/*.java"/>
</fileset>
</move>
<delete dir="${project.build.directory}/generated-sources/META-INF/versions" verbose="true"/>
<delete dir="${project.build.directory}/generated-sources/META-INF/versions" verbose="true" failonerror="false"/>
</target>
</configuration>
</execution>
Expand Down
4 changes: 2 additions & 2 deletions jaxws-ri/bundles/jaxws-ri-jdk/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -247,12 +247,12 @@
</goals>
<configuration>
<target>
<move todir="${project.build.directory}/unpacked-sources" overwrite="true">
<move todir="${project.build.directory}/unpacked-sources" overwrite="true" failonerror="false">
<fileset dir="${project.build.directory}/unpacked-sources/META-INF/versions/9">
<include name="**/*.java"/>
</fileset>
</move>
<delete dir="${project.build.directory}/unpacked-sources/META-INF/versions" verbose="true"/>
<delete dir="${project.build.directory}/unpacked-sources/META-INF/versions" verbose="true" failonerror="false"/>
</target>
</configuration>
</execution>
Expand Down

0 comments on commit 53a1e12

Please sign in to comment.