gradle-plugin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.eclipse.jkube</groupId> <artifactId>gradle-plugin</artifactId> <version>1.18.1</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- Copyright (c) 2019 Red Hat, Inc. This program and the accompanying materials are made available under the terms of the Eclipse Public License 2.0 which is available at: https://www.eclipse.org/legal/epl-2.0/ SPDX-License-Identifier: EPL-2.0 Contributors: Red Hat, Inc. - initial API and implementation --> <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>org.eclipse.jkube</groupId> <artifactId>jkube</artifactId> <version>1.18.1</version> <relativePath>../pom.xml</relativePath> </parent> <artifactId>gradle-plugin</artifactId> <packaging>pom</packaging> <name>Gradle Plugin :: Parent</name> <description>Gradle plugin for getting your Java apps on to Kubernetes</description> <properties> <jkube.kit.version>${project.version}</jkube.kit.version> </properties> <modules> <module>kubernetes</module> <module>openshift</module> <module>doc</module> </modules> <dependencyManagement> <dependencies> <dependency> <groupId>org.eclipse.jkube</groupId> <artifactId>jkube-kit-parent</artifactId> <version>${jkube.kit.version}</version> <type>pom</type> <scope>import</scope> </dependency> <dependency> <groupId>org.asciidoctor</groupId> <artifactId>asciidoctorj</artifactId> <version>${version.asciidoctorj}</version> </dependency> <dependency> <groupId>org.codehaus.groovy</groupId> <artifactId>groovy-all</artifactId> <version>${version.groovy}</version> <type>pom</type> <scope>provided</scope> </dependency> </dependencies> </dependencyManagement> <build> <pluginManagement> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>${version.maven-compiler-plugin}</version> <configuration> <source>${jdk.version}</source> <target>${jdk.version}</target> <compilerArgument>-Xlint:deprecation</compilerArgument> <showWarnings>true</showWarnings> </configuration> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <groupId>com.marcnuri.plugins</groupId> <artifactId>gradle-api-maven-plugin</artifactId> </plugin> </plugins> </build> <profiles> <profile> <id>java-11</id> <activation> <jdk>[11,)</jdk> </activation> <modules> <module>it</module> </modules> </profile> </profiles> </project>