pado-deployment
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.netcrest.pado</groupId> <artifactId>pado-deployment</artifactId> <version>0.4.3-B1</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- Copyright (c) 2013-2017 Netcrest Technologies, LLC. All rights reserved. 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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>com.netcrest.pado</groupId> <artifactId>pado-parent</artifactId> <version>0.4.3-B1</version> </parent> <artifactId>pado-deployment</artifactId> <packaging>pom</packaging> <name>pado-deployment</name> <dependencies> <!-- Pado modules --> <dependency> <groupId>com.netcrest.pado</groupId> <artifactId>gemfire-dqueue</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>com.netcrest.pado</groupId> <artifactId>pado-common</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>com.netcrest.pado</groupId> <artifactId>pado-core</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>com.netcrest.pado</groupId> <artifactId>pado-biz</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>com.netcrest.pado</groupId> <artifactId>pado-gemfire</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>com.netcrest.pado</groupId> <artifactId>pado-gemfire-v7</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>com.netcrest.pado</groupId> <artifactId>pado-test</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>com.netcrest.pado</groupId> <artifactId>pado-tools</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>com.netcrest.pado</groupId> <artifactId>pado-rpc</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>com.netcrest.pado</groupId> <artifactId>pado-rpc-biz</artifactId> <version>${project.version}</version> </dependency> </dependencies> <build> <plugins> <!-- Pado plugins --> <plugin> <groupId>com.soebes.maven.plugins</groupId> <artifactId>iterator-maven-plugin</artifactId> <version>0.3</version> <executions> <execution> <id>pado-rpc</id> <phase>package</phase> <goals> <goal>iterator</goal> </goals> <configuration> <items> <item>pado-rpc-py</item> </items> <pluginExecutors> <pluginExecutor> <goal>single</goal> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-assembly-plugin</artifactId> <version>2.5.5</version> </plugin> <configuration> <descriptors> <descriptor>${project.basedir}/src/main/assembly/${item}.xml</descriptor> </descriptors> <finalName>${item}</finalName> <appendAssemblyId>false</appendAssemblyId> <outputDirectory>target/assembly</outputDirectory> <tarLongFileMode>gnu</tarLongFileMode> </configuration> </pluginExecutor> </pluginExecutors> </configuration> </execution> </executions> </plugin> <!-- Pado distribution --> <plugin> <artifactId>maven-assembly-plugin</artifactId> <version>2.5.5</version> <executions> <execution> <id>package shared config</id> <goals> <goal>attached</goal> </goals> <phase>package</phase> <configuration> <descriptors> <descriptor>src/main/assembly/assembly-descriptor.xml</descriptor> </descriptors> <finalName>pado_${project.version}</finalName> <appendAssemblyId>false</appendAssemblyId> <outputDirectory>target/assembly</outputDirectory> <tarLongFileMode>gnu</tarLongFileMode> </configuration> </execution> </executions> </plugin> <!-- Unzip the build in the deploy directory for testing --> <plugin> <artifactId>maven-antrun-plugin</artifactId> <version>1.8</version> <executions> <execution> <phase>install</phase> <configuration> <target> <untar compression="gzip" src="${project.basedir}/target/assembly/pado_${project.version}.tar.gz" dest="${project.basedir}/../deploy" overwrite="false" /> </target> </configuration> <goals> <goal>run</goal> </goals> </execution> </executions> </plugin> <!-- Do NOT deploy this module --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-deploy-plugin</artifactId> <version>3.0.0-M1</version> <configuration> <skip>true</skip> </configuration> </plugin> </plugins> </build> </project>