52 lines
1.4 KiB
XML
52 lines
1.4 KiB
XML
|
<?xml version="1.0" encoding="ISO-8859-1"?>
|
||
|
<assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2 http://maven.apache.org/xsd/assembly-1.1.2.xsd">
|
||
|
|
||
|
<id>sample-projects</id>
|
||
|
|
||
|
<formats>
|
||
|
<format>zip</format>
|
||
|
<format>tar.bz2</format>
|
||
|
</formats>
|
||
|
|
||
|
<includeBaseDirectory>false</includeBaseDirectory>
|
||
|
|
||
|
<fileSets>
|
||
|
<fileSet>
|
||
|
<directory>${project.basedir}/hapi-fhir-tutorial</directory>
|
||
|
<outputDirectory>/</outputDirectory>
|
||
|
<includes>
|
||
|
<include>simple-server/**</include>
|
||
|
<include>skeleton-project/**</include>
|
||
|
</includes>
|
||
|
<excludes>
|
||
|
<exclude>*/target/**</exclude>
|
||
|
<exclude>*/.classpath</exclude>
|
||
|
<exclude>*/.project</exclude>
|
||
|
<exclude>*/.settings/**</exclude>
|
||
|
</excludes>
|
||
|
</fileSet>
|
||
|
<!--
|
||
|
<fileSet>
|
||
|
<directory>${project.build.directory}</directory>
|
||
|
<outputDirectory>/lib</outputDirectory>
|
||
|
<includes>
|
||
|
<include>*.jar</include>
|
||
|
</includes>
|
||
|
</fileSet>
|
||
|
-->
|
||
|
</fileSets>
|
||
|
|
||
|
<!--
|
||
|
<dependencySets>
|
||
|
<dependencySet>
|
||
|
<outputDirectory>/lib/dependency</outputDirectory>
|
||
|
<useProjectArtifact>true</useProjectArtifact>
|
||
|
<unpack>false</unpack>
|
||
|
<scope>runtime</scope>
|
||
|
</dependencySet>
|
||
|
</dependencySets>
|
||
|
-->
|
||
|
|
||
|
|
||
|
</assembly>
|