fabric8-maven-plugin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.fabric8</groupId> <artifactId>fabric8-maven-plugin</artifactId> <version>4.4.2</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- Copyright 2016 Red Hat, Inc. Red Hat 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 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"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>io.fabric8</groupId> <artifactId>fabric8-maven-plugin-parent</artifactId> <version>4.4.2</version> <relativePath>../parent/pom.xml</relativePath> </parent> <artifactId>fabric8-maven-plugin</artifactId> <version>4.4.2</version> <packaging>maven-plugin</packaging> <name>Fabric8 Maven :: Plugin</name> <dependencies> <!-- == docker-maven-plugin ========================= --> <dependency> <groupId>io.fabric8</groupId> <artifactId>docker-maven-plugin</artifactId> </dependency> <!-- == Core ===================================== --> <dependency> <groupId>io.fabric8</groupId> <artifactId>fabric8-maven-plugin-core</artifactId> </dependency> <!-- == Enricher ===================================== --> <dependency> <groupId>io.fabric8</groupId> <artifactId>fabric8-maven-plugin-enricher-api</artifactId> </dependency> <dependency> <groupId>io.fabric8</groupId> <artifactId>fabric8-maven-plugin-enricher-standard</artifactId> </dependency> <dependency> <groupId>io.fabric8</groupId> <artifactId>fabric8-maven-plugin-enricher-fabric8</artifactId> </dependency> <dependency> <groupId>io.fabric8</groupId> <artifactId>fabric8-maven-plugin-generator-api</artifactId> </dependency> <dependency> <groupId>io.fabric8</groupId> <artifactId>fabric8-maven-plugin-generator-java-exec</artifactId> </dependency> <dependency> <groupId>io.fabric8</groupId> <artifactId>fabric8-maven-plugin-generator-spring-boot</artifactId> </dependency> <dependency> <groupId>io.fabric8</groupId> <artifactId>fabric8-maven-plugin-generator-vertx</artifactId> </dependency> <dependency> <groupId>io.fabric8</groupId> <artifactId>fabric8-maven-plugin-generator-karaf</artifactId> </dependency> <dependency> <groupId>io.fabric8</groupId> <artifactId>fabric8-maven-plugin-generator-wildfly-swarm</artifactId> </dependency> <dependency> <groupId>io.fabric8</groupId> <artifactId>fabric8-maven-plugin-generator-quarkus</artifactId> </dependency> <dependency> <groupId>io.fabric8</groupId> <artifactId>fabric8-maven-plugin-generator-thorntail-v2</artifactId> </dependency> <dependency> <groupId>io.fabric8</groupId> <artifactId>fabric8-maven-plugin-generator-webapp</artifactId> </dependency> <dependency> <groupId>io.fabric8</groupId> <artifactId>fabric8-maven-plugin-generator-openliberty</artifactId> </dependency> <dependency> <groupId>io.fabric8</groupId> <artifactId>fabric8-maven-plugin-watcher-api</artifactId> </dependency> <dependency> <groupId>io.fabric8</groupId> <artifactId>fabric8-maven-plugin-watcher-standard</artifactId> </dependency> <!-- == Fabric8 ===================================== --> <dependency> <groupId>io.fabric8</groupId> <artifactId>kubernetes-client</artifactId> </dependency> <!-- == Maven Plugin API ============================ --> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-plugin-api</artifactId> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-core</artifactId> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-model</artifactId> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-artifact</artifactId> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-compat</artifactId> </dependency> <dependency> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-utils</artifactId> </dependency> <dependency> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-component-annotations</artifactId> </dependency> <dependency> <groupId>org.apache.maven.plugin-tools</groupId> <artifactId>maven-plugin-annotations</artifactId> </dependency> <dependency> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-interactivity-api</artifactId> </dependency> <!-- == Libs =============================================== --> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> </dependency> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> </dependency> <dependency> <groupId>com.google.code.gson</groupId> <artifactId>gson</artifactId> </dependency> <!-- == Test =============================================== --> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> </dependency> <dependency> <groupId>org.assertj</groupId> <artifactId>assertj-core</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-all</artifactId> </dependency> <dependency> <groupId>org.jmockit</groupId> <artifactId>jmockit</artifactId> </dependency> <dependency> <groupId>com.jayway.jsonpath</groupId> <artifactId>json-path-assert</artifactId> </dependency> <dependency> <groupId>org.apache.maven.plugin-testing</groupId> <artifactId>maven-plugin-testing-harness</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-plugin-plugin</artifactId> <version>3.6.0</version> <configuration> <skipErrorNoDescriptorsFound>true</skipErrorNoDescriptorsFound> </configuration> <executions> <execution> <id>mojo-descriptor</id> <phase>process-classes</phase> <goals> <goal>descriptor</goal> </goals> </execution> <execution> <id>help-goal</id> <goals> <goal>helpmojo</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <reporting> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-plugin-plugin</artifactId> <version>3.6.0</version> </plugin> </plugins> </reporting> </project>