-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Issue #8895 - Introduce jetty-home-<ver>-with-docs.zip
Signed-off-by: Joakim Erdfelt <[email protected]>
- Loading branch information
Showing
5 changed files
with
114 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
<assembly> | ||
<id>with-docs</id> | ||
<formats> | ||
<format>tar.gz</format> | ||
<format>zip</format> | ||
</formats> | ||
<fileSets> | ||
<fileSet> | ||
<directory>${assembly-directory}</directory> | ||
<outputDirectory></outputDirectory> | ||
<includes> | ||
<include>**</include> | ||
</includes> | ||
<excludes> | ||
<exclude>**/META-INF/**</exclude> | ||
<exclude>*-config.jar</exclude> | ||
<!-- we'll build up shell scripts with execute in separate file-set --> | ||
<exclude>bin/*.sh</exclude> | ||
</excludes> | ||
<!-- The archive is generated with the uid / gid of the user that | ||
built the jetty release. which is highly unlikely to | ||
exist on the target machines that unpack this tarball. | ||
We set the user / group / other to have read-only access | ||
to files, and read-execute access to directories | ||
in the unpacked contents. --> | ||
<fileMode>0444</fileMode> | ||
<directoryMode>0755</directoryMode> | ||
</fileSet> | ||
<fileSet> | ||
<directory>${assembly-directory}</directory> | ||
<outputDirectory></outputDirectory> | ||
<includes> | ||
<include>bin/*.sh</include> | ||
</includes> | ||
<!-- Set read-execute for shell scripts --> | ||
<fileMode>0555</fileMode> | ||
</fileSet> | ||
<fileSet> | ||
<directory>${docs-assembly-directory}</directory> | ||
<outputDirectory></outputDirectory> | ||
<includes> | ||
<include>**</include> | ||
</includes> | ||
</fileSet> | ||
</fileSets> | ||
</assembly> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters