summaryrefslogtreecommitdiffstats
path: root/branches/pre-spec-changes/runtime/standalone/smoketest/pom.xml
diff options
context:
space:
mode:
Diffstat (limited to 'branches/pre-spec-changes/runtime/standalone/smoketest/pom.xml')
-rw-r--r--branches/pre-spec-changes/runtime/standalone/smoketest/pom.xml99
1 files changed, 0 insertions, 99 deletions
diff --git a/branches/pre-spec-changes/runtime/standalone/smoketest/pom.xml b/branches/pre-spec-changes/runtime/standalone/smoketest/pom.xml
deleted file mode 100644
index 978f2389af..0000000000
--- a/branches/pre-spec-changes/runtime/standalone/smoketest/pom.xml
+++ /dev/null
@@ -1,99 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!--
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
--->
-<project>
- <parent>
- <groupId>org.apache.tuscany.sca.runtime.standalone</groupId>
- <artifactId>standalone</artifactId>
- <version>0.1-pre-spec-SNAPSHOT</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <artifactId>smoketest</artifactId>
- <name>Apache Tuscany SCA Standalone Smoketest</name>
- <description>Module to smoketest the standalone runtime.</description>
-
- <properties>
- <tuscany.installDir>${project.build.directory}/assembly</tuscany.installDir>
- </properties>
-
- <dependencies>
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- </dependency>
- </dependencies>
- <build>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-jar-plugin</artifactId>
- <configuration>
- <finalName>smoketest</finalName>
- <archive>
- <manifest>
- <mainClass>org.apache.tuscany.sca.runtime.standalone.smoketest.Main</mainClass>
- </manifest>
- </archive>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-dependency-plugin</artifactId>
- <executions>
- <execution>
- <phase>pre-integration-test</phase>
- <goals>
- <goal>unpack</goal>
- </goals>
- <configuration>
- <artifactItems>
- <artifactItem>
- <groupId>org.apache.tuscany.sca.runtime.standalone</groupId>
- <artifactId>assembly</artifactId>
- <version>${sca.version}</version>
- <classifier>bin</classifier>
- <type>zip</type>
- <overWrite>true</overWrite>
- <outputDirectory>${tuscany.installDir}</outputDirectory>
- </artifactItem>
- </artifactItems>
- </configuration>
- </execution>
- </executions>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-surefire-plugin</artifactId>
- <executions>
- <execution>
- <phase>integration-test</phase>
- <goals>
- <goal>test</goal>
- </goals>
- <configuration>
- <includes>
- <include>**/SmokeTest*.java</include>
- </includes>
- </configuration>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
-</project>