| <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.eclipse.emf.ecp</groupId> | |
| <artifactId>q7tests</artifactId> | |
| <version>0.0.1-SNAPSHOT</version> | |
| <packaging>q7test</packaging> | |
| <pluginRepositories> | |
| <pluginRepository> | |
| <id>q7releases</id> | |
| <name>Q7 releases</name> | |
| <url>http://maven.xored.com/nexus/content/repositories/q7-releases/</url> | |
| </pluginRepository> | |
| <pluginRepository> | |
| <id>q7snapshots</id> | |
| <name>Q7 snapshots</name> | |
| <url>http://maven.xored.com/nexus/content/repositories/q7-snapshots/</url> | |
| </pluginRepository> | |
| </pluginRepositories> | |
| <properties> | |
| <q7-maven-version>1.2.14</q7-maven-version> | |
| <q7-runner-version>1.2.14</q7-runner-version> | |
| <q7-client-version>1.2.14</q7-client-version> | |
| <aut-base-path>${project.basedir}/../ECP2/org.eclipse.emf.ecp.products/target/products</aut-base-path> | |
| </properties> | |
| <profiles> | |
| <profile> | |
| <id>q7runner</id> | |
| <activation> | |
| <activeByDefault>true</activeByDefault> | |
| </activation> | |
| <build> | |
| <plugins> | |
| <plugin> | |
| <groupId>com.xored.q7</groupId> | |
| <artifactId>q7-maven-plugin</artifactId> | |
| <version>${q7-maven-version}</version> | |
| <extensions>true</extensions> | |
| <configuration> | |
| <aut> | |
| <explicit>${aut-base-path}/org.eclipse.emf.ecp.3x-[classifier].zip</explicit> | |
| </aut> | |
| <q7> | |
| <version>${q7-runner-version}</version> | |
| <licenseFile>${project.basedir}/q7.license</licenseFile> | |
| </q7> | |
| </configuration> | |
| </plugin> | |
| </plugins> | |
| </build> | |
| </profile> | |
| <profile> | |
| <id>q7cloud</id> | |
| <activation> | |
| <property> | |
| <name>useCloud</name> | |
| <value>true</value> | |
| </property> | |
| </activation> | |
| <build> | |
| <plugins> | |
| <plugin> | |
| <groupId>com.xored.q7</groupId> | |
| <artifactId>q7-server-maven-plugin</artifactId> | |
| <version>${q7-maven-version}</version> | |
| <extensions>true</extensions> | |
| <configuration> | |
| <metadata> | |
| <public>true</public> | |
| <projectName>EMF Client Platform</projectName> | |
| </metadata> | |
| <classifiers> | |
| <classifier>win32.win32.x86</classifier> | |
| </classifiers> | |
| <aut> | |
| <locations> | |
| <location> | |
| <classifier>win32.win32.x86</classifier> | |
| <path>${aut-base-path}/org.eclipse.emf.ecp.3x-win32.win32.x86.zip</path> | |
| </location> | |
| </locations> | |
| </aut> | |
| <testOptions> | |
| <execTimeout>3600</execTimeout> | |
| </testOptions> | |
| <q7client> | |
| <version>${q7-client-version}</version> | |
| </q7client> | |
| <q7server>cloud.xored.com</q7server> | |
| </configuration> | |
| </plugin> | |
| </plugins> | |
| </build> | |
| </profile> | |
| </profiles> | |
| </project> |