process-exec-maven-plugin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>de.eitco.cicd.exec</groupId> <artifactId>process-exec-maven-plugin</artifactId> <version>1.0.2</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> <parent> <groupId>de.eitco.cicd</groupId> <artifactId>eitco-oss-parent</artifactId> <version>0.0.18</version> </parent> <groupId>de.eitco.cicd.exec</groupId> <artifactId>process-exec-maven-plugin</artifactId> <version>1.0.2</version> <packaging>maven-plugin</packaging> <name>Process execution maven plugin</name> <description>Start multiple processes in pre-integration-test phase and stop same processes in post-integration-test phase </description> <url>https://github.com/chonton/process-exec-maven-plugin</url> <inceptionYear>2017</inceptionYear> <licenses> <license> <name>Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>maven central</distribution> </license> </licenses> <developers> <developer> <name>chas honton</name> <email>chas@honton.org</email> <url>https://www.linkedin.com/in/chonton</url> </developer> <developer> <name>bazaarvoice</name> <url>http://www.bazaarvoice.com/</url> </developer> <developer> <organization>eitco</organization> <organizationUrl>https://www.eitco.de</organizationUrl> </developer> </developers> <scm> <url>https://github.com/eitco/process-exec-maven-plugin</url> <connection>scm:git:https://github.com/eitco/process-exec-maven-plugin.git</connection> <developerConnection>scm:git:https://github.com/eitco/process-exec-maven-plugin.git</developerConnection> <tag>1.0.2</tag> </scm> <properties> <java.language.version>1.8</java.language.version> <maven.model.version>3.0</maven.model.version> </properties> <dependencies> <dependency> <groupId>commons-net</groupId> <artifactId>commons-net</artifactId> <version>3.5</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.12</version> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-core</artifactId> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-model</artifactId> <version>${maven.model.version}</version> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-plugin-api</artifactId> </dependency> <dependency> <groupId>org.apache.maven.plugin-testing</groupId> <artifactId>maven-plugin-testing-harness</artifactId> <version>2.1</version> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.maven.plugin-tools</groupId> <artifactId>maven-plugin-annotations</artifactId> <version>${maven.model.version}</version> </dependency> </dependencies> <build> <plugins> <plugin> <artifactId>maven-invoker-plugin</artifactId> <configuration> <addTestClassPath>true</addTestClassPath> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-plugin-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> </plugin> <plugin> <artifactId>maven-release-plugin</artifactId> <configuration> <goals>deploy site site:stage scm-publish:publish-scm</goals> </configuration> </plugin> <plugin> <artifactId>maven-resources-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-plugin-plugin</artifactId> </plugin> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> </plugin> <plugin> <artifactId>maven-invoker-plugin</artifactId> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>license-maven-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-site-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-scm-publish-plugin</artifactId> </plugin> </plugins> </build> <reporting> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-plugin-plugin</artifactId> </plugin> <plugin> <artifactId>maven-project-info-reports-plugin</artifactId> <reportSets> <reportSet> <reports> <report>index</report> <report>project-team</report> <report>license</report> <report>dependency-info</report> <report>dependency-management</report> <report>distribution-management</report> <report>plugin-management</report> <report>cim</report> <report>scm</report> <report>summary</report> </reports> </reportSet> </reportSets> </plugin> </plugins> </reporting> </project>