quarkiverse-github-app-parent
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.quarkiverse.githubapp</groupId>
<artifactId>quarkiverse-github-app-parent</artifactId>
<version>0.0.1</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.githubapp</groupId>
<artifactId>quarkiverse-github-app-parent</artifactId>
<version>0.0.1</version>
<name>Quarkiverse - GitHub Application - 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>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
<maven.compiler.parameters>true</maven.compiler.parameters>
<quarkus.version>1.10.2.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>
<jandex-plugin.version>1.0.8</jandex-plugin.version>
<quarkiverse-github-api.version>0.0.1</quarkiverse-github-api.version>
<quarkiverse-jjwt-jackson.version>0.0.2</quarkiverse-jjwt-jackson.version>
<okhttp.version>4.9.0</okhttp.version>
<okhttp-eventsource.version>2.3.1</okhttp-eventsource.version>
<github-api.version>1.117</github-api.version>
<jjwt.version>0.11.2</jjwt.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>io.quarkiverse.githubapi</groupId>
<artifactId>quarkiverse-github-api</artifactId>
<version>${quarkiverse-github-api.version}</version>
</dependency>
<dependency>
<groupId>io.quarkiverse.githubapi</groupId>
<artifactId>quarkiverse-github-api-deployment</artifactId>
<version>${quarkiverse-github-api.version}</version>
</dependency>
<dependency>
<groupId>io.quarkiverse.jjwtjackson</groupId>
<artifactId>quarkiverse-jjwt-jackson</artifactId>
<version>${quarkiverse-jjwt-jackson.version}</version>
</dependency>
<dependency>
<groupId>io.quarkiverse.jjwtjackson</groupId>
<artifactId>quarkiverse-jjwt-jackson-deployment</artifactId>
<version>${quarkiverse-jjwt-jackson.version}</version>
</dependency>
<dependency>
<groupId>com.squareup.okhttp3</groupId>
<artifactId>okhttp</artifactId>
<version>${okhttp.version}</version>
</dependency>
<dependency>
<groupId>com.launchdarkly</groupId>
<artifactId>okhttp-eventsource</artifactId>
<version>${okhttp-eventsource.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>
<plugin>
<groupId>org.jboss.jandex</groupId>
<artifactId>jandex-maven-plugin</artifactId>
<version>${jandex-plugin.version}</version>
<executions>
<execution>
<id>make-index</id>
<goals>
<goal>jandex</goal>
</goals>
</execution>
</executions>
</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-app</url>
<connection>scm:git:git@github.com:quarkiverse/quarkiverse-github-app.git</connection>
<developerConnection>scm:git:git@github.com:quarkiverse/quarkiverse-github-app.git</developerConnection>
<tag>0.0.1</tag>
</scm>
<issueManagement>
<system>GitHub</system>
<url>https://github.com/quarkiverse/quarkiverse-github-app/issues/</url>
</issueManagement>
</project>