switchyard-tools-dist
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.switchyard</groupId>
<artifactId>switchyard-tools-dist</artifactId>
<version>2.0.1.redhat-621222</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<!--
- Copyright 2015 Red Hat Inc. and/or its affiliates and other contributors.
-
- Licensed 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 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.switchyard</groupId>
<artifactId>switchyard-release</artifactId>
<version>2.0.1.redhat-621222</version>
<relativePath>../../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>switchyard-tools-dist</artifactId>
<packaging>pom</packaging>
<name>SwitchYard: Tools Distribution</name>
<description>SwitchYard Tools Distribution</description>
<properties>
<bundle.dir>${project.build.directory}/bundle</bundle.dir>
<tools.root.dir>switchyard-tools-${version.distro}</tools.root.dir>
</properties>
<dependencies>
<dependency>
<groupId>org.switchyard.console</groupId>
<artifactId>switchyard-console-application</artifactId>
<classifier>resources</classifier>
</dependency>
<dependency>
<groupId>org.riftsaw.console</groupId>
<artifactId>switchyard-bpel-console-server</artifactId>
<type>war</type>
</dependency>
<dependency>
<groupId>org.riftsaw.console</groupId>
<artifactId>switchyard-bpel-console</artifactId>
<type>war</type>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<executions>
<execution>
<id>make-assembly</id>
<phase>generate-test-resources</phase>
<goals>
<goal>single</goal>
</goals>
<configuration>
<appendAssemblyId>false</appendAssemblyId>
<finalName>switchyard-tools</finalName>
<descriptors>
<descriptor>${basedir}/assembly.xml</descriptor>
</descriptors>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>