Staging
v0.5.1
Raw File
dependency-reduced-pom.xml
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  <parent>
    <artifactId>snowdrop-deployers-parent</artifactId>
    <groupId>org.jboss.snowdrop</groupId>
    <version>2.0.0.CR1</version>
  </parent>
  <modelVersion>4.0.0</modelVersion>
  <artifactId>snowdrop-deployers</artifactId>
  <name>Snowdrop - Deployers Aggregator</name>
  <build>
    <plugins>
      <plugin>
        <artifactId>maven-shade-plugin</artifactId>
        <executions>
          <execution>
            <phase>package</phase>
            <goals>
              <goal>shade</goal>
            </goals>
            <configuration>
              <createSourcesJar>true</createSourcesJar>
              <artifactSet>
                <includes>
                  <include>org.jboss.snowdrop:snowdrop-deployers-core</include>
                  <include>org.jboss.snowdrop:snowdrop-deployers-vfs2</include>
                  <include>org.jboss.snowdrop:snowdrop-deployers-vfs3</include>
                </includes>
              </artifactSet>
            </configuration>
          </execution>
        </executions>
      </plugin>
    </plugins>
  </build>
</project>

back to top