Skip to content

Commit

Permalink
Showing 2 changed files with 9 additions and 1 deletion.
4 changes: 3 additions & 1 deletion core/pom.rb
Original file line number Diff line number Diff line change
@@ -206,7 +206,9 @@
:id => 'default-clean',
:phase => 'clean',
'filesets' => [ { 'directory' => '${project.build.sourceDirectory}',
'includes' => [ '${Constants.java}' ] } ],
'includes' => [ '${Constants.java}' ] },
{ 'directory' => '${project.basedir}/..',
'includes' => [ 'bin/jruby' ] } ],
'failOnError' => 'false' )
end

6 changes: 6 additions & 0 deletions core/pom.xml
Original file line number Diff line number Diff line change
@@ -539,6 +539,12 @@ DO NOT MODIFIY - GENERATED CODE
<include>${Constants.java}</include>
</includes>
</fileset>
<fileset>
<directory>${project.basedir}/..</directory>
<includes>
<include>bin/jruby</include>
</includes>
</fileset>
</filesets>
<failOnError>false</failOnError>
</configuration>

1 comment on commit b01fe72

@nirvdrum
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks!

Sorry, something went wrong.

Please sign in to comment.