|
Akka/Scala example source code file (bin.xml)
The bin.xml Akka example source code<assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0 http://maven.apache.org/xsd/assembly-1.1.0.xsd"> <id>bin</id> <formats> <format>tar.gz</format> </formats> <includeBaseDirectory>true</includeBaseDirectory> <baseDirectory>akka-sample-osgi-dining-hakkers-${project.version}</baseDirectory> <fileSets> <!-- Copy over jar files --> <fileSet> <directory>${project.build.directory}/dependencies</directory> <includes> <include>*.jar</include> </includes> <outputDirectory>/lib/</outputDirectory> </fileSet> <fileSet> <directory>${project.basedir}/src/main/distribution</directory> <outputDirectory>/</outputDirectory> <directoryMode>0755</directoryMode> <fileMode>0644</fileMode> <filtered>true</filtered> <excludes> <exclude>lib/readme.txt</exclude> </excludes> </fileSet> <fileSet> <directory>${project.basedir}/src/main/bin</directory> <outputDirectory>/bin</outputDirectory> <directoryMode>0755</directoryMode> <fileMode>0755</fileMode> </fileSet> <fileSet> <directory>${project.build.directory}/classes/etc</directory> <outputDirectory>/etc/</outputDirectory> <lineEnding>unix</lineEnding> <directoryMode>0755</directoryMode> <fileMode>0644</fileMode> </fileSet> <fileSet> <directory>${project.build.directory}/generated-features-repo</directory> <outputDirectory>/system</outputDirectory> <directoryMode>0755</directoryMode> <fileMode>0644</fileMode> </fileSet> <!-- Expanded Karaf Standard Distribution, anything included above will not be overwritten here --> <fileSet> <directory>${project.build.directory}/dependencies/apache-karaf-${karaf.version}</directory> <outputDirectory>/</outputDirectory> <excludes> <exclude>**/demos/**</exclude> <exclude>bin/**</exclude> <exclude>etc/custom.properties</exclude> <exclude>etc/org.apache.karaf.features.cfg</exclude> <exclude>README</exclude> <exclude>RELEASE-NOTES</exclude> <exclude>karaf-manual*.html</exclude> <exclude>karaf-manual*.pdf</exclude> </excludes> </fileSet> <!-- Copy over karaf/bin/* separately to get the correct file mode --> <fileSet> <directory>${project.build.directory}/dependencies/apache-karaf-${karaf.version}</directory> <outputDirectory>/</outputDirectory> <includes> <include>bin/**</include> </includes> <lineEnding>unix</lineEnding> <fileMode>0755</fileMode> </fileSet> </fileSets> </assembly> Other Akka source code examplesHere is a short list of links related to this Akka bin.xml source code file: |
... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.
A percentage of advertising revenue from
pages under the /java/jwarehouse
URI on this website is
paid back to open source projects.