quarkiverse-github-api-parent
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.quarkiverse.githubapi</groupId>
<artifactId>quarkiverse-github-api-parent</artifactId>
<version>0.0.2</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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>io.quarkiverse</groupId>
<artifactId>quarkiverse-parent</artifactId>
<version>4</version>
</parent>
<groupId>io.quarkiverse.githubapi</groupId>
<artifactId>quarkiverse-github-api-parent</artifactId>
<version>0.0.2</version>
<name>Quarkiverse - GitHub API - Parent</name>
<packaging>pom</packaging>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<maven.compiler.parameters>true</maven.compiler.parameters>
<quarkus.version>1.10.5.Final</quarkus.version>
<compiler-plugin.version>3.8.1</compiler-plugin.version>
<resource-plugin.version>3.2.0</resource-plugin.version>
<surefire-plugin.version>3.0.0-M5</surefire-plugin.version>
<github-api.version>1.118</github-api.version>
<okhttp.version>4.9.0</okhttp.version>
</properties>
<modules>
<module>deployment</module>
<module>runtime</module>
<module>docs</module>
</modules>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-bom</artifactId>
<version>${quarkus.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>org.kohsuke</groupId>
<artifactId>github-api</artifactId>
<version>${github-api.version}</version>
</dependency>
<dependency>
<groupId>com.squareup.okhttp3</groupId>
<artifactId>okhttp</artifactId>
<version>${okhttp.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>${compiler-plugin.version}</version>
</plugin>
<plugin>
<artifactId>maven-resources-plugin</artifactId>
<version>${resource-plugin.version}</version>
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>${surefire-plugin.version}</version>
<configuration>
<systemPropertyVariables>
<java.util.logging.manager>org.jboss.logmanager.LogManager</java.util.logging.manager>
</systemPropertyVariables>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<id>gsmet</id>
<name>Guillaume Smet</name>
<email>guillaume.smet@gmail.com</email>
<organization>Red Hat</organization>
<organizationUrl>http://www.redhat.com/</organizationUrl>
</developer>
</developers>
<scm>
<url>https://github.com/quarkiverse/quarkiverse-github-api</url>
<connection>scm:git:git@github.com:quarkiverse/quarkiverse-github-api.git</connection>
<developerConnection>scm:git:git@github.com:quarkiverse/quarkiverse-github-api.git</developerConnection>
<tag>0.0.2</tag>
</scm>
<issueManagement>
<system>GitHub</system>
<url>https://github.com/quarkiverse/quarkiverse-github-api/issues/</url>
</issueManagement>
</project>