dib.swinglabs.swingx.swingx-all.1.6.5-1.source-code.pom.xml Maven / Gradle / Ivy
The newest version!
<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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <artifactId>swingx-project</artifactId> <groupId>org.bidib.jbidib.swinglabs.swingx</groupId> <version>1.6.5-1</version> <relativePath>../pom.xml</relativePath> </parent> <artifactId>swingx-all</artifactId> <packaging>jar</packaging> <name>SwingX Complete</name> <description>A Maven project to aggregate all modules into a single artifact.</description> <properties> <project.generatedDependencies>${project.generatedSourcesDirectoy}/dependencies</project.generatedDependencies> </properties> <!-- make the dependent swingx modules optional, since we're aggregating --> <dependencies> <dependency> <groupId>${project.groupId}</groupId> <artifactId>swingx-graphics</artifactId> <version>${project.version}</version> <type>jar</type> <scope>compile</scope> <optional>true</optional> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>swingx-core</artifactId> <version>${project.version}</version> <type>jar</type> <scope>compile</scope> <optional>true</optional> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>swingx-mavensupport</artifactId> <version>${project.version}</version> <type>jar</type> <scope>compile</scope> <optional>true</optional> </dependency> </dependencies> <profiles> <profile> <id>jvnet-release</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> <version>2.4</version> <executions> <execution> <id>src-dependencies</id> <phase>generate-sources</phase> <goals> <goal>unpack-dependencies</goal> </goals> <configuration> <classifier>sources</classifier> <includeGroupIds>${project.groupId}</includeGroupIds> <excludeArtifactIds>swingx-mavensupport</excludeArtifactIds> <failOnMissingClassifierArtifact>false</failOnMissingClassifierArtifact> <outputDirectory>${project.generatedDependencies}</outputDirectory> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId> <version>1.4</version> <executions> <execution> <id>add-dependencies-source</id> <phase>generate-sources</phase> <goals> <goal>add-source</goal> </goals> <configuration> <sources> <source>${project.generatedDependencies}</source> </sources> </configuration> </execution> <execution> <id>add-dependencies-resource</id> <phase>generate-resources</phase> <goals> <goal>add-resource</goal> </goals> <configuration> <resources> <resource> <directory>${project.generatedDependencies}</directory> <excludes> <exclude>**/*.java</exclude> </excludes> </resource> </resources> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <configuration> <archive> <manifestFile>${project.generatedAnnotations}/META-INF/MANIFEST.MF</manifestFile> </archive> </configuration> </plugin> </plugins> </build> </profile> </profiles> </project>