assemblies.squirrelsql-plugin-assembly.xml Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of squirrelsql-plugins-assembly-descriptor Show documentation
Show all versions of squirrelsql-plugins-assembly-descriptor Show documentation
This project simply contains the assembly descriptor that is
shared by all of the plugins, which produces an assembly zip archive containing
the packaged plugin
The newest version!
<assembly xmlns="http://maven.apache.org/xsd/assembly-1.1.0.xsd"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/assembly-1.1.0.xsd">
<id>assembly</id>
<formats>
<format>zip</format>
</formats>
<includeBaseDirectory>false</includeBaseDirectory>
<files>
<file>
<source>${project.build.directory}/${artifact.artifactId}.jar
</source>
<outputDirectory>/</outputDirectory>
</file>
<file>
<source>${project.build.directory}/${artifact.artifactId}-sources.jar
</source>
<outputDirectory>${artifact.artifactId}</outputDirectory>
</file>
</files>
<fileSets>
<fileSet>
<directory>src/main/resources/doc</directory>
<outputDirectory>${artifact.artifactId}</outputDirectory>
<includes>
<include>**</include>
</includes>
</fileSet>
</fileSets>
</assembly> © 2015 - 2025 Weber Informatics LLC | Privacy Policy