qooxdoo-sdk
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.qooxdoo</groupId> <artifactId>qooxdoo-sdk</artifactId> <version>5.0</version> </dependency>
<?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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>org.qooxdoo</groupId> <artifactId>qooxdoo-sdk</artifactId> <version>5.0</version> <name>qooxdoo SDK maven integration</name> <description>qooxdoo-sdk is used to create a JAR of the qooxdoo SDK and provide it at Maven Central.</description> <url>http://qooxdoo.org</url> <inceptionYear>2005</inceptionYear> <parent> <groupId>org.qooxdoo</groupId> <artifactId>qooxdoo-maven-parent</artifactId> <version>1.6</version> </parent> <licenses> <license> <name>LGPL</name> <url>http://www.gnu.org/licenses/lgpl.html</url> <distribution>repo</distribution> </license> <license> <name>EPL</name> <url>http://www.eclipse.org/org/documents/epl-v10.php</url> <distribution>repo</distribution> </license> </licenses> <organization> <name>1&1 Internet AG</name> <url>http://1and1.org</url> </organization> <developers> <developer> <name>Alexander Steitz</name> <email>maven at qooxdoo.org</email> <organization>1&1 Internet AG</organization> <organizationUrl>http://qooxdoo.org</organizationUrl> <roles> <role>Developer</role> </roles> <timezone>+2</timezone> </developer> <developer> <name>Daniel Wagner</name> <email>maven at qooxdoo.org</email> <organization>1&1 Internet AG</organization> <organizationUrl>http://qooxdoo.org</organizationUrl> <roles> <role>Developer</role> </roles> <timezone>+2</timezone> </developer> </developers> <issueManagement> <system>Bugzilla</system> <url>http://bugzilla.qooxdoo.org/</url> </issueManagement> <scm> <connection>scm:git:git://github.com/qooxdoo/qooxdoo.git</connection> <developerConnection>scm:git:git@github.com:qooxdoo/qooxdoo.git</developerConnection> <url>https://github.com/qooxdoo/qooxdoo</url> </scm> <profiles> <!-- Download the sdk from the scm --> <profile> <id>get-sdk-from-scm</id> <activation> <file> <missing>target/classes/qooxdoo-sdk/version.txt</missing> </file> </activation> <build> <plugins> <!-- Download the sdk from sourceforge --> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>wagon-maven-plugin</artifactId> <version>1.0-beta-3</version> <executions> <execution> <id>download-sdk-release</id> <phase>generate-resources</phase> <goals> <goal>download-single</goal> </goals> <configuration> <url>http://downloads.sourceforge.net/qooxdoo</url> <fromFile>qooxdoo-${project.version}-sdk.zip</fromFile> <toDir>${project.build.directory}/downloads</toDir> </configuration> </execution> </executions> </plugin> <!-- Unpack the downloaded sdk --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-antrun-plugin</artifactId> <version>1.2</version> <executions> <execution> <id>prepare</id> <phase>process-resources</phase> <configuration> <tasks> <unzip src="${project.build.directory}/downloads/qooxdoo-${project.version}-sdk.zip" dest="target/classes" /> <move file="target/classes/qooxdoo-${project.version}-sdk" tofile="target/classes/qooxdoo-sdk" /> </tasks> </configuration> <goals> <goal>run</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> <!-- Run integration tests --> <profile> <id>run-its</id> <activation> <property> <name>skipTests</name> <value>!true</value> </property> </activation> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-invoker-plugin</artifactId> <version>1.3</version> <configuration> <debug>true</debug> <projectsDirectory>src/it</projectsDirectory> <pomIncludes> <pomInclude>unpack-sdk/pom.xml</pomInclude> </pomIncludes> <postBuildHookScript>verify</postBuildHookScript> <localRepositoryPath>${project.build.directory}/local-repo</localRepositoryPath> <goals> <goal>clean</goal> <goal>integration-test</goal> </goals> <settingsFile>src/it/settings.xml</settingsFile> <cloneProjectsTo>${project.build.directory}/it</cloneProjectsTo> </configuration> <executions> <execution> <id>integration-test</id> <goals> <goal>install</goal> <goal>run</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>