Staging
v0.5.0
https://repo1.maven.org/maven2/org/jboss/snowdrop/snowdrop
Raw File
pom.xml
<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>
    <groupId>org.jboss.snowdrop</groupId>
    <artifactId>snowdrop-parent</artifactId>
    <version>2.0.0-M1-SP1</version>
  </parent>
  <modelVersion>4.0.0</modelVersion>
  <groupId>org.jboss.snowdrop</groupId>
  <artifactId>snowdrop</artifactId>
  <packaging>pom</packaging>
  <name>Snowdrop Distribution</name>
  <url>http://www.jboss.com/products/jbossmc</url>
  <description>Snowdrop Distribution</description>


    <profiles>
      <profile>
        <id>dist</id>
        <activation>
          <property>
            <name>!nojars</name>
          </property>
        </activation>
        <build>
          <plugins>
            <plugin>
              <groupId>org.apache.maven.plugins</groupId>
              <artifactId>maven-assembly-plugin</artifactId>
              <version>2.2-beta-3</version>
              <executions>
                <execution>
                  <id>make-assembly</id>
                  <phase>package</phase>
                  <goals>
                    <goal>single</goal>
                  </goals>
                  <configuration>
                    <finalName>snowdrop-${project.version}</finalName>
                    <descriptors>
                      <descriptor>${basedir}/src/assembly/libs-with-deps.xml</descriptor>
                      <descriptor>${basedir}/src/assembly/src.xml</descriptor>
                    </descriptors>
                  </configuration>
                </execution>
                  <execution>
                    <id>make-assembly-no-deps</id>
                    <phase>package</phase>
                    <goals>
                      <goal>single</goal>
                    </goals>
                    <configuration>
                      <finalName>snowdrop-${project.version}</finalName>
                      <descriptors>
                        <descriptor>${basedir}/src/assembly/libs.xml</descriptor>
                      </descriptors>
                    </configuration>
                  </execution>
              </executions>
            </plugin>
          </plugins>
        </build>
      </profile>
    </profiles>
    <dependencies>
      <dependency>
        <groupId>org.jboss.snowdrop</groupId>
        <artifactId>snowdrop-vfs</artifactId>
      </dependency>
      <dependency>
        <groupId>org.jboss.snowdrop</groupId>
        <artifactId>snowdrop-deployers</artifactId>
      </dependency>
      <dependency>
        <groupId>org.jboss.snowdrop</groupId>
        <artifactId>snowdrop-weaving</artifactId>
      </dependency>
    </dependencies>

  </project>
 
back to top