provisio-maven-plugin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.takari.maven.plugins</groupId> <artifactId>provisio-maven-plugin</artifactId> <version>0.1.56</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- Copyright (c) 2016 Takari, Inc. All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 which accompanies this distribution, and is available at http://www.eclipse.org/legal/epl-v10.html --> <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>io.provis</groupId> <artifactId>provisio</artifactId> <version>0.1.56</version> </parent> <groupId>io.takari.maven.plugins</groupId> <artifactId>provisio-maven-plugin</artifactId> <packaging>takari-maven-plugin</packaging> <name>Provisio :: Maven Plugin</name> <properties> <incrementalbuild.version>0.7.0</incrementalbuild.version> <takariLifecyclePluginVersion>1.11.12</takariLifecyclePluginVersion> </properties> <dependencies> <dependency> <groupId>io.provis</groupId> <artifactId>provisio-model</artifactId> </dependency> <dependency> <groupId>io.provis</groupId> <artifactId>provisio-core</artifactId> </dependency> <dependency> <groupId>io.provis</groupId> <artifactId>provisio-jenkins</artifactId> </dependency> <dependency> <groupId>io.takari</groupId> <artifactId>takari-archiver</artifactId> </dependency> <dependency> <groupId>io.takari</groupId> <artifactId>incrementalbuild</artifactId> <version>${incrementalbuild.version}</version> </dependency> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> </dependency> <dependency> <groupId>org.apache.maven.plugin-tools</groupId> <artifactId>maven-plugin-annotations</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>javax.inject</groupId> <artifactId>javax.inject</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-utils</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-core</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-plugin-api</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-model</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-artifact</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-classworlds</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.eclipse.aether</groupId> <artifactId>aether-api</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.eclipse.aether</groupId> <artifactId>aether-spi</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.eclipse.aether</groupId> <artifactId>aether-impl</artifactId> <scope>provided</scope> </dependency> <!-- Test --> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> </dependency> </dependencies> </project>