mirror of
https://github.com/ACINQ/eclair.git
synced 2025-03-15 12:20:13 +01:00
60 lines
1.9 KiB
XML
60 lines
1.9 KiB
XML
|
<assembly xmlns="http://maven.apache.org/ASSEMBLY/2.0.0"
|
||
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||
|
xsi:schemaLocation="http://maven.apache.org/ASSEMBLY/2.0.0 http://maven.apache.org/xsd/assembly-2.0.0.xsd">
|
||
|
<id>${git.commit.id.abbrev}-awseb_bundle</id>
|
||
|
<formats>
|
||
|
<format>zip</format>
|
||
|
</formats>
|
||
|
<includeBaseDirectory>false</includeBaseDirectory>
|
||
|
<dependencySets> <!-- include dependencies -->
|
||
|
<dependencySet>
|
||
|
<outputDirectory>lib</outputDirectory>
|
||
|
<useProjectArtifact>true</useProjectArtifact> <!-- include eclair-core -->
|
||
|
<unpack>false</unpack>
|
||
|
<scope>runtime</scope>
|
||
|
</dependencySet>
|
||
|
</dependencySets>
|
||
|
<fileSets> <!-- Include readme and license -->
|
||
|
<fileSet>
|
||
|
<directory>../</directory>
|
||
|
<includes>
|
||
|
<include>README.md</include>
|
||
|
<include>LICENSE*</include>
|
||
|
</includes>
|
||
|
</fileSet>
|
||
|
<fileSet>
|
||
|
<directory>${project.basedir}/modules/awseb</directory>
|
||
|
<outputDirectory>.</outputDirectory>
|
||
|
<includes>
|
||
|
<include>Procfile</include>
|
||
|
</includes>
|
||
|
<lineEnding>unix</lineEnding>
|
||
|
</fileSet>
|
||
|
<!-- uncomment if you want to include a keystore in the awseb package for TLS -->
|
||
|
<!--fileSet>
|
||
|
<directory>${project.basedir}/modules/awseb</directory>
|
||
|
<outputDirectory>.</outputDirectory>
|
||
|
<includes>
|
||
|
<include>*.jks</include>
|
||
|
</includes>
|
||
|
<fileMode>0400</fileMode>
|
||
|
<lineEnding>keep</lineEnding>
|
||
|
</fileSet-->
|
||
|
<fileSet>
|
||
|
<directory>${project.basedir}/modules/awseb</directory>
|
||
|
<outputDirectory>.</outputDirectory>
|
||
|
<includes>
|
||
|
<include>run.sh</include>
|
||
|
</includes>
|
||
|
<fileMode>0755</fileMode>
|
||
|
<lineEnding>unix</lineEnding>
|
||
|
</fileSet>
|
||
|
<fileSet>
|
||
|
<directory>${project.build.directory}</directory>
|
||
|
<outputDirectory>.</outputDirectory>
|
||
|
<includes>
|
||
|
<include>application.jar</include>
|
||
|
</includes>
|
||
|
</fileSet>
|
||
|
</fileSets>
|
||
|
</assembly>
|