dev5432
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.ljnelson</groupId> <artifactId>dev5432</artifactId> <version>0.0.4</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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>io.github.ljnelson</groupId> <artifactId>dev5432</artifactId> <version>0.0.4</version> <packaging>jar</packaging> <name>DEV5432</name> <description>DEV5432: Writing Kubernetes Controllers with Java SE and CDI 2.0</description> <inceptionYear>2018</inceptionYear> <url>https://github.com/ljnelson/${project.artifactId}</url> <organization> <name>Laird Nelson</name> <url>https://about.me/lairdnelson</url> </organization> <licenses> <license> <comments>The Apache License, Version 2.0</comments> <distribution>repo</distribution> <name>Apache License 2.0</name> <url>https://www.apache.org/licenses/LICENSE-2.0</url> </license> </licenses> <scm> <connection>scm:git:git@github.com:ljnelson/${project.artifactId}.git</connection> <developerConnection>scm:git:git@github.com:ljnelson/${project.artifactId}.git</developerConnection> <url>https://github.com/ljnelson/${project.artifactId}/</url> <tag>v0.0.4</tag> </scm> <distributionManagement> <site> <id>dev5432</id> <name>DEV5432</name> <url>staged-site</url> </site> <snapshotRepository> <id>sonatype-oss-repository-hosting</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> </distributionManagement> <developers> <developer> <id>ljnelson</id> <name>Laird Nelson</name> <email>ljnelson@gmail.com</email> <url>https://about.me/lairdnelson</url> <roles> <role>developer</role> </roles> <timezone>-8</timezone> </developer> </developers> <issueManagement> <system>Github</system> <url>https://github.com/ljnelson/${project.artifactId}/issues</url> </issueManagement> <dependencyManagement> <dependencies> <!-- Import-scoped dependencies. --> <dependency> <groupId>org.jboss.weld</groupId> <artifactId>weld-core-bom</artifactId> <version>3.0.5.Final</version> <type>pom</type> <scope>import</scope> </dependency> <!-- Normal dependencies. --> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-annotations</artifactId> <version>2.9.7</version> <type>jar</type> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-core</artifactId> <version>2.9.7</version> <type>jar</type> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <version>2.9.7</version> <type>jar</type> </dependency> <dependency> <groupId>com.fasterxml.jackson.dataformat</groupId> <artifactId>jackson-dataformat-yaml</artifactId> <version>2.9.7</version> <type>jar</type> </dependency> <dependency> <groupId>com.fasterxml.jackson.module</groupId> <artifactId>jackson-module-jaxb-annotations</artifactId> <version>2.9.7</version> <type>jar</type> </dependency> <dependency> <groupId>com.squareup.okhttp3</groupId> <artifactId>logging-interceptor</artifactId> <version>3.11.0</version> <type>jar</type> </dependency> <dependency> <groupId>com.squareup.okhttp3</groupId> <artifactId>okhttp</artifactId> <version>3.11.0</version> <type>jar</type> </dependency> <dependency> <groupId>io.fabric8</groupId> <artifactId>kubernetes-client</artifactId> <version>4.0.5</version> <type>jar</type> <exclusions> <exclusion> <groupId>org.slf4j</groupId> <artifactId>jul-to-slf4j</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>javax.annotation</groupId> <artifactId>javax.annotation-api</artifactId> <version>1.3</version> <type>jar</type> </dependency> <dependency> <groupId>javax.el</groupId> <artifactId>javax.el-api</artifactId> <version>3.0.1-b04</version> <type>jar</type> </dependency> <dependency> <groupId>javax.enterprise</groupId> <artifactId>cdi-api</artifactId> <version>2.0</version> <type>jar</type> </dependency> <dependency> <groupId>javax.inject</groupId> <artifactId>javax.inject</artifactId> <version>1</version> <type>jar</type> </dependency> <dependency> <groupId>javax.interceptor</groupId> <artifactId>javax.interceptor-api</artifactId> <version>1.2</version> <type>jar</type> </dependency> <dependency> <groupId>javax.validation</groupId> <artifactId>validation-api</artifactId> <version>2.0.1.Final</version> <type>jar</type> </dependency> <dependency> <groupId>org.glassfish</groupId> <artifactId>javax.el</artifactId> <version>3.0.1-b09</version> <type>jar</type> </dependency> <dependency> <groupId>org.jboss</groupId> <artifactId>jandex</artifactId> <version>2.0.5.Final</version> <type>jar</type> </dependency> <dependency> <groupId>org.microbean</groupId> <artifactId>microbean-configuration-cdi</artifactId> <version>0.4.2</version> <type>jar</type> </dependency> <dependency> <groupId>org.microbean</groupId> <artifactId>microbean-configuration</artifactId> <version>0.4.2</version> <type>jar</type> </dependency> <dependency> <groupId>org.microbean</groupId> <artifactId>microbean-kubernetes-client-cdi</artifactId> <version>0.3.3</version> <type>jar</type> </dependency> <dependency> <groupId>org.microbean</groupId> <artifactId>microbean-kubernetes-controller</artifactId> <version>0.2.2</version> <type>jar</type> </dependency> <dependency> <groupId>org.microbean</groupId> <artifactId>microbean-kubernetes-controller-cdi</artifactId> <version>0.2.2</version> <type>jar</type> </dependency> <dependency> <groupId>org.microbean</groupId> <artifactId>microbean-main</artifactId> <version>6</version> <type>jar</type> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-jdk14</artifactId> <version>1.7.25</version> <type>jar</type> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.12</version> </dependency> </dependencies> </dependencyManagement> <dependencies> <!-- Test-scoped dependencies. --> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <type>jar</type> <scope>test</scope> </dependency> <!-- Runtime-scoped dependencies. --> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-jdk14</artifactId> <scope>runtime</scope> <optional>true</optional> </dependency> <dependency> <groupId>org.jboss</groupId> <artifactId>jandex</artifactId> <type>jar</type> <scope>runtime</scope> <optional>true</optional> </dependency> <dependency> <groupId>org.jboss.weld.se</groupId> <artifactId>weld-se-core</artifactId> <type>jar</type> <scope>runtime</scope> <optional>true</optional> </dependency> <dependency> <groupId>org.microbean</groupId> <artifactId>microbean-configuration-cdi</artifactId> <type>jar</type> <scope>runtime</scope> </dependency> <dependency> <groupId>org.microbean</groupId> <artifactId>microbean-configuration</artifactId> <type>jar</type> <scope>runtime</scope> <optional>true</optional> </dependency> <dependency> <groupId>org.microbean</groupId> <artifactId>microbean-kubernetes-client-cdi</artifactId> <type>jar</type> <scope>runtime</scope> <optional>true</optional> </dependency> <dependency> <groupId>org.microbean</groupId> <artifactId>microbean-main</artifactId> <type>jar</type> <scope>runtime</scope> <optional>true</optional> </dependency> <dependency> <groupId>org.glassfish</groupId> <artifactId>javax.el</artifactId> <type>jar</type> <scope>runtime</scope> <optional>true</optional> </dependency> <!-- Compile-scoped dependencies. --> <dependency> <groupId>io.fabric8</groupId> <artifactId>kubernetes-client</artifactId> <type>jar</type> <scope>compile</scope> </dependency> <dependency> <groupId>org.microbean</groupId> <artifactId>microbean-kubernetes-controller-cdi</artifactId> <type>jar</type> <scope>compile</scope> </dependency> <dependency> <groupId>javax.enterprise</groupId> <artifactId>cdi-api</artifactId> <type>jar</type> <scope>compile</scope> <optional>true</optional> </dependency> </dependencies> <build> <pluginManagement> <plugins> <plugin> <artifactId>maven-antrun-plugin</artifactId> <version>1.8</version> </plugin> <plugin> <artifactId>maven-assembly-plugin</artifactId> <version>3.1.0</version> </plugin> <plugin> <artifactId>maven-clean-plugin</artifactId> <version>3.1.0</version> <configuration> <filesets> <fileset> <directory>${basedir}</directory> <includes> <include>src/**/*~</include> <include>*~</include> </includes> </fileset> </filesets> </configuration> </plugin> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>3.8.0</version> <configuration> <compilerArgs> <arg>-Xlint:all</arg> <arg>-parameters</arg> </compilerArgs> </configuration> </plugin> <plugin> <artifactId>maven-dependency-plugin</artifactId> <version>3.1.1</version> </plugin> <plugin> <artifactId>maven-deploy-plugin</artifactId> <version>3.0.0-M1</version> </plugin> <plugin> <artifactId>maven-gpg-plugin</artifactId> <version>1.6</version> </plugin> <plugin> <artifactId>maven-install-plugin</artifactId> <version>3.0.0-M1</version> </plugin> <plugin> <artifactId>maven-jar-plugin</artifactId> <version>3.1.0</version> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <version>3.0.0</version> <configuration> <additionalJOptions combine.children="append"> <additionalJOption>-J-Dhttp.agent=maven-javadoc-plugin</additionalJOption> </additionalJOptions> </configuration> </plugin> <plugin> <artifactId>maven-project-info-reports-plugin</artifactId> <version>2.9</version> </plugin> <plugin> <artifactId>maven-release-plugin</artifactId> <version>2.5.3</version> </plugin> <plugin> <artifactId>maven-resources-plugin</artifactId> <version>3.1.0</version> </plugin> <plugin> <artifactId>maven-site-plugin</artifactId> <version>3.7.1</version> </plugin> <plugin> <artifactId>maven-source-plugin</artifactId> <version>3.0.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <version>2.22.0</version> </plugin> <plugin> <groupId>com.github.github</groupId> <artifactId>site-maven-plugin</artifactId> <version>0.12</version> <dependencies> <dependency> <groupId>org.eclipse.mylyn.github</groupId> <artifactId>org.eclipse.egit.github.core</artifactId> <version>2.1.5</version> </dependency> </dependencies> <configuration> <message>Building site for ${project.artifactId} ${project.version}</message> </configuration> <executions> <execution> <id>Deploy site to Github</id> <goals> <goal>site</goal> </goals> <phase>site-deploy</phase> </execution> </executions> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>exec-maven-plugin</artifactId> <version>1.6.0</version> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>versions-maven-plugin</artifactId> <version>2.7</version> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.8</version> <extensions>true</extensions> <configuration> <serverId>sonatype-oss-repository-hosting</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <artifactId>maven-surefire-plugin</artifactId> <configuration> <systemPropertyVariables> <enableClusterTests>${enableClusterTests}</enableClusterTests> <java.util.logging.config.file>${basedir}/src/test/logging/logging.properties</java.util.logging.config.file> </systemPropertyVariables> </configuration> </plugin> <plugin> <groupId>com.github.github</groupId> <artifactId>site-maven-plugin</artifactId> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>exec-maven-plugin</artifactId> <configuration> <executable>java</executable> <arguments> <argument>-ea</argument> <argument>-Djava.util.logging.config.file=${basedir}/src/test/logging/logging.properties</argument> <argument>-classpath</argument> <classpath /> <argument>org.microbean.main.Main</argument> </arguments> </configuration> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> </plugin> </plugins> </build> <properties> <!-- maven-compiler-plugin properties --> <maven.compiler.showDeprecation>true</maven.compiler.showDeprecation> <maven.compiler.showWarnings>true</maven.compiler.showWarnings> <maven.compiler.source>1.8</maven.compiler.source> <maven.compiler.target>1.8</maven.compiler.target> <!-- maven-javadoc-plugin properties --> <bottom><![CDATA[Copyright © ${project.inceptionYear}–{currentYear}, <a href="${project.organization.url}" target="_parent">${project.organization.name}</a>. All rights reserved.]]></bottom> <detectLinks>false</detectLinks> <links>https://microbean.github.io/microbean-kubernetes-controller-cdi/apidocs,http://javax-inject.github.io/javax-inject/api,http://docs.jboss.org/cdi/api/2.0/,https://static.javadoc.io/io.fabric8/kubernetes-model/3.0.2,https://static.javadoc.io/io.fabric8/kubernetes-client/4.0.5</links> <show>private</show> <sourcetab>2</sourcetab> <!-- maven-project-info-reports-plugin properties; see https://maven.apache.org/plugins/maven-project-info-reports-plugin/ --> <dependency.locations.enabled>false</dependency.locations.enabled> <!-- maven-release-plugin properties; see http://maven.apache.org/maven-release/maven-release-plugin/perform-mojo.html --> <goals>deploy,site-deploy</goals> <!-- See http://central.sonatype.org/pages/apache-maven.html#performing-a-release-deployment-with-the-maven-release-plugin --> <releaseProfiles>release</releaseProfiles> <scmCommentPrefix>[maven-release-plugin] [skip ci]</scmCommentPrefix> <tagNameFormat>v@{project.version}</tagNameFormat> <useReleaseProfile>false</useReleaseProfile> <!-- maven-site-plugin properties --> <maven.site.deploy.skip>true</maven.site.deploy.skip> <relativizeDecorationLinks>false</relativizeDecorationLinks> <!-- maven-surefire-plugin properties --> <surefire.useFile>false</surefire.useFile> <trimStackTrace>false</trimStackTrace> <!-- site-github-plugin properties --> <github.global.server>github</github.global.server> <!-- Other properties --> <project.build.sourceEncoding>UTF8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF8</project.reporting.outputEncoding> <enableClusterTests>false</enableClusterTests> </properties> <reporting> <plugins> <plugin> <artifactId>maven-javadoc-plugin</artifactId> </plugin> </plugins> </reporting> <profiles> <profile> <id>release</id> <build> <plugins> <plugin> <artifactId>maven-gpg-plugin</artifactId> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-source-plugin</artifactId> </plugin> </plugins> </build> </profile> <profile> <id>toolchain</id> <activation> <file> <exists>${user.home}/.m2/toolchains.xml</exists> </file> </activation> <build> <pluginManagement> <plugins> <plugin> <artifactId>maven-toolchains-plugin</artifactId> <version>1.1</version> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <artifactId>maven-toolchains-plugin</artifactId> <executions> <execution> <goals> <goal>toolchain</goal> </goals> <configuration> <toolchains> <jdk> <version>${jdkToolchainVersion}</version> </jdk> </toolchains> </configuration> </execution> </executions> </plugin> </plugins> </build> <properties> <!-- Properties related to maven-toolchains-plugin --> <jdkToolchainVersion>${maven.compiler.target}</jdkToolchainVersion> </properties> </profile> </profiles> </project>