Skip to content

Commit

Permalink
[refactor] Fix source paths for dist and installer
Browse files Browse the repository at this point in the history
  • Loading branch information
adamretter committed Feb 16, 2019
1 parent 029a891 commit e688377
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 2 deletions.
4 changes: 3 additions & 1 deletion build/scripts/dist.xml
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,9 @@
<fileset dir="bin"/>
</copy>
<copy todir="${dist.dir}/src">
<fileset dir="src"/>
<fileset dir="${module.exist-core}/src"/>
<fileset dir="${module.exist-start}/src"/>
<fileset dir="${module.exist-testkit}/src"/>
</copy>
<copy todir="${dist.dir}/lib">
<fileset dir="lib"/>
Expand Down
14 changes: 13 additions & 1 deletion installer/install.xml.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,19 @@
<packs>
<pack name="Sources" required="no" installGroups="Group1">
<description>Java source files and build scripts. Install this package if you want to customize the build, create extensions or contribute to eXist-db.</description>
<fileset targetdir="$INSTALL_PATH/src" dir="src">
<fileset targetdir="$INSTALL_PATH/src/exist-core" dir="exist-core/src">
<exclude name="**/*~"/>
<exclude name="**/.*"/>
<exclude name="**/CVS/"/>
<exclude name=".*"/>
</fileset>
<fileset targetdir="$INSTALL_PATH/src/exist-start" dir="exist-start/src">
<exclude name="**/*~"/>
<exclude name="**/.*"/>
<exclude name="**/CVS/"/>
<exclude name=".*"/>
</fileset>
<fileset targetdir="$INSTALL_PATH/src/exist-testkit" dir="exist-testkit/src">
<exclude name="**/*~"/>
<exclude name="**/.*"/>
<exclude name="**/CVS/"/>
Expand Down

0 comments on commit e688377

Please sign in to comment.