23 lines
714 B
XML
23 lines
714 B
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>hfql-jdbc-driver</id>
|
|
|
|
<formats>
|
|
<format>zip</format>
|
|
</formats>
|
|
|
|
<includeBaseDirectory>false</includeBaseDirectory>
|
|
|
|
<fileSets>
|
|
<fileSet>
|
|
<directory>${project.basedir}/../hapi-fhir-jpaserver-hfql/target/</directory>
|
|
<outputDirectory>/</outputDirectory>
|
|
<includes>
|
|
<include>hapi-fhir-hfql-jdbc-*.jar</include>
|
|
</includes>
|
|
</fileSet>
|
|
</fileSets>
|
|
|
|
</assembly>
|