certmanager-annotations
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.dekorate</groupId>
<artifactId>certmanager-annotations</artifactId>
<version>4.1.7</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright 2018 The original authors.
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">
<parent>
<artifactId>annotations</artifactId>
<groupId>io.dekorate</groupId>
<version>4.1.7</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>certmanager-annotations</artifactId>
<name>Dekorate :: Annotations :: CertManager CRD</name>
<dependencies>
<dependency>
<groupId>io.dekorate</groupId>
<artifactId>dekorate-core</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>io.fabric8</groupId>
<artifactId>certmanager-model-v1</artifactId>
</dependency>
<dependency>
<groupId>io.sundr</groupId>
<artifactId>builder-annotations</artifactId>
<scope>compile</scope>
<optional>true</optional>
</dependency>
<dependency>
<groupId>io.dekorate</groupId>
<artifactId>dekorate-templates</artifactId>
<version>${project.version}</version>
<scope>compile</scope>
<optional>true</optional>
</dependency>
<dependency>
<groupId>io.sundr</groupId>
<artifactId>transform-annotations</artifactId>
<scope>compile</scope>
<optional>true</optional>
</dependency>
<dependency>
<groupId>io.sundr</groupId>
<artifactId>sundr-codegen-velocity</artifactId>
<scope>compile</scope>
<optional>true</optional>
</dependency>
<!-- Integration Test
These are used to force the order in the reactor. Thus test scoped and optional.
-->
<dependency>
<groupId>io.dekorate</groupId>
<artifactId>kubernetes-spring-starter</artifactId>
<version>${project.version}</version>
<optional>true</optional>
<scope>test</scope>
</dependency>
<!-- Testing -->
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>${version.junit-jupiter}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>${version.junit-jupiter}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<version>${version.assertj}</version>
<scope>test</scope>
</dependency>
<!-- Integration Testing -->
<!-- These are internal dependencies used in integration tests via invoker plugin.
We need to somehow let the reactor know that the integration tests depend on them. -->
<dependency>
<groupId>io.dekorate</groupId>
<artifactId>dekorate-spring-boot</artifactId>
<version>${project.version}</version>
<scope>compile</scope>
<optional>true</optional>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>${version.maven-compiler-plugin}</version>
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
<release>${java.release}</release>
<annotationProcessors>
<processor>io.sundr.builder.internal.processor.BuildableProcessor</processor>
<processor>io.sundr.transform.internal.TemplateTransformationProcessor</processor>
</annotationProcessors>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>${version.maven-shade-plugin}</version>
<executions>
<execution>
<id>annotation</id>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<shadedArtifactAttached>true</shadedArtifactAttached>
<shadedClassifierName>annotations</shadedClassifierName>
<filters>
<filter>
<artifact>*:*</artifact>
<includes>
<include>io/dekorate/certmanager/annotation/**</include>
<include>io/dekorate/certmanager/model/**</include>
<include>META-INF/MANIFEST.MF</include>
</includes>
</filter>
</filters>
</configuration>
</execution>
<execution>
<id>processor</id>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<shadedArtifactAttached>true</shadedArtifactAttached>
<shadedClassifierName>processors</shadedClassifierName>
<filters>
<filter>
<artifact>*:*</artifact>
<includes>
<include>io/dekorate/certmanager/adapter/**</include>
<include>io/dekorate/certmanager/apt/**</include>
<include>io/dekorate/certmanager/config/**</include>
<include>io/dekorate/certmanager/configurator/**</include>
<include>io/dekorate/certmanager/decorator/**</include>
<include>io/dekorate/certmanager/generator/**</include>
<include>io/dekorate/certmanager/manifest/**</include>
<include>io/dekorate/certmanager/model/**</include>
<include>META-INF/services/*</include>
<include>META-INF/MANIFEST.MF</include>
</includes>
</filter>
</filters>
</configuration>
</execution>
<execution>
<id>noapt</id>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<shadedArtifactAttached>true</shadedArtifactAttached>
<shadedClassifierName>noapt</shadedClassifierName>
<filters>
<filter>
<artifact>*:*</artifact>
<includes>
<include>io/dekorate/certmanager/adapter/**</include>
<include>io/dekorate/certmanager/annotation/**</include>
<include>io/dekorate/certmanager/config/*</include>
<include>io/dekorate/certmanager/configurator/**</include>
<include>io/dekorate/certmanager/decorator/**</include>
<include>io/dekorate/certmanager/manifest/**</include>
<include>io/dekorate/certmanager/model/**</include>
<include>io/dekorate/certmanager/processor/**</include>
<include>META-INF/services/io.dekorate.*</include>
<include>META-INF/services/io.fabric8.kubernetes.api.model.KubernetesResource</include>
<include>META-INF/MANIFEST.MF</include>
</includes>
</filter>
</filters>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>