All Downloads are FREE. Search and download functionalities are using the official Maven repository.

assemblies.classpath-assembly.xml Maven / Gradle / Ivy

There is a newer version: 10.2.1
Show newest version
<assembly xmlns="http://maven.apache.org/ASSEMBLY/2.2.0"
          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
          xsi:schemaLocation="http://maven.apache.org/ASSEMBLY/2.2.0 https://maven.apache.org/xsd/assembly-2.2.0.xsd">
    <id>classpath</id>
    <formats>
        <format>dir</format>
    </formats>
    <includeBaseDirectory>false</includeBaseDirectory>
    <!-- Avoid empty assembly error by including an empty folder -->
    <fileSets>
      <fileSet>
          <directory>${project.build.directory}</directory>
          <outputDirectory>ignored-empty-folder</outputDirectory>
          <excludes>
              <exclude>*/**</exclude>
          </excludes>
      </fileSet>
    </fileSets>
    <dependencySets>
        <dependencySet>
            <scope>runtime</scope>
            <useProjectArtifact>false</useProjectArtifact>
            <useTransitiveDependencies>true</useTransitiveDependencies>
            <useTransitiveFiltering>true</useTransitiveFiltering>
            <includes>
                <include>*:jar</include>
            </includes>
            <excludes>
                <exclude>*:zip</exclude>
                <exclude>org.bonitasoft.engine:bonita-common</exclude>
                <exclude>com.bonitasoft.engine:bonita-common-sp</exclude>
                <exclude>org.bonitasoft.engine:bonita-server</exclude>
                <exclude>com.bonitasoft.engine:bonita-server-sp</exclude>
            </excludes>
        </dependencySet>
    </dependencySets>
</assembly>




© 2015 - 2025 Weber Informatics LLC | Privacy Policy