mirror of
https://github.com/jlengrand/github-api.git
synced 2026-03-10 08:21:21 +00:00
676 lines
24 KiB
XML
676 lines
24 KiB
XML
<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>org.kohsuke</groupId>
|
|
<artifactId>github-api</artifactId>
|
|
<version>1.111-SNAPSHOT</version>
|
|
<name>GitHub API for Java</name>
|
|
<url>https://github-api.kohsuke.org/</url>
|
|
<description>GitHub API for Java</description>
|
|
|
|
<scm>
|
|
<connection>scm:git:git@github.com/github-api/${project.artifactId}.git</connection>
|
|
<developerConnection>scm:git:ssh://git@github.com/github-api/${project.artifactId}.git</developerConnection>
|
|
<url>https://github.com/github-api/github-api/</url>
|
|
<tag>HEAD</tag>
|
|
</scm>
|
|
|
|
<distributionManagement>
|
|
<snapshotRepository>
|
|
<id>sonatype-nexus-snapshots</id>
|
|
<name>Sonatype Nexus Snapshots</name>
|
|
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
|
|
</snapshotRepository>
|
|
<repository>
|
|
<id>sonatype-nexus-staging</id>
|
|
<name>Nexus Release Repository</name>
|
|
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
|
|
</repository>
|
|
<site>
|
|
<id>github-pages</id>
|
|
<url>gitsite:git@github.com/github-api/${project.artifactId}.git</url>
|
|
</site>
|
|
</distributionManagement>
|
|
|
|
<properties>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<spotbugs-maven-plugin.version>4.0.0</spotbugs-maven-plugin.version>
|
|
<spotbugs.version>4.0.1</spotbugs.version>
|
|
<spotbugs-maven-plugin.failOnError>true</spotbugs-maven-plugin.failOnError>
|
|
<hamcrest.version>2.2</hamcrest.version>
|
|
<okhttp3.version>4.4.1</okhttp3.version>
|
|
<okio.version>2.5.0</okio.version>
|
|
<formatter-maven-plugin.goal>format</formatter-maven-plugin.goal>
|
|
<impsort-maven-plugin.goal>sort</impsort-maven-plugin.goal>
|
|
<!-- Using this as the minimum bar for code coverage. Adding methods without covering them will fail this. -->
|
|
<jacoco.coverage.target.bundle.method>0.60</jacoco.coverage.target.bundle.method>
|
|
<jacoco.coverage.target.class.method>0.25</jacoco.coverage.target.class.method>
|
|
<!-- For non-ci builds we'd like the build to still complete if jacoco metrics aren't met. -->
|
|
<jacoco.haltOnFailure>false</jacoco.haltOnFailure>
|
|
</properties>
|
|
|
|
<build>
|
|
<extensions>
|
|
<extension>
|
|
<groupId>org.apache.maven.scm</groupId>
|
|
<artifactId>maven-scm-provider-gitexe</artifactId>
|
|
<version>1.11.2</version>
|
|
</extension>
|
|
<extension>
|
|
<groupId>org.apache.maven.scm</groupId>
|
|
<artifactId>maven-scm-manager-plexus</artifactId>
|
|
<version>1.11.2</version>
|
|
</extension>
|
|
<!-- Doing site publishing manually for now -->
|
|
<!--
|
|
<extension>
|
|
<groupId>org.kohsuke</groupId>
|
|
<artifactId>wagon-gitsite</artifactId>
|
|
<version>0.3.5</version>
|
|
</extension>
|
|
-->
|
|
</extensions>
|
|
<testResources>
|
|
<testResource>
|
|
<directory>src/test/resources</directory>
|
|
<excludes>
|
|
<exclude>**/wiremock/**</exclude>
|
|
</excludes>
|
|
</testResource>
|
|
</testResources>
|
|
<pluginManagement>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-source-plugin</artifactId>
|
|
<version>3.2.1</version>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-gpg-plugin</artifactId>
|
|
<version>1.6</version>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.jacoco</groupId>
|
|
<artifactId>jacoco-maven-plugin</artifactId>
|
|
<version>0.8.5</version>
|
|
<executions>
|
|
<execution>
|
|
<goals>
|
|
<goal>prepare-agent</goal>
|
|
</goals>
|
|
</execution>
|
|
<!-- attached to Maven test phase -->
|
|
<execution>
|
|
<id>report</id>
|
|
<phase>test</phase>
|
|
<goals>
|
|
<goal>report</goal>
|
|
</goals>
|
|
</execution>
|
|
<execution>
|
|
<id>check</id>
|
|
<phase>test</phase>
|
|
<goals>
|
|
<goal>check</goal>
|
|
</goals>
|
|
<configuration>
|
|
<rules>
|
|
<rule>
|
|
<element>BUNDLE</element>
|
|
<limits>
|
|
<limit>
|
|
<counter>METHOD</counter>
|
|
<value>COVEREDRATIO</value>
|
|
<minimum>${jacoco.coverage.target.bundle.method}</minimum>
|
|
</limit>
|
|
</limits>
|
|
</rule>
|
|
<rule>
|
|
<!--We end up with chatty logs, but it shows us which particular classes -->
|
|
<!--are lacking in coverage. If this is too much, just remove the -->
|
|
<!--<element>CLASS</element> tag below. -->
|
|
<element>CLASS</element>
|
|
<limits>
|
|
<limit>
|
|
<counter>METHOD</counter>
|
|
<value>COVEREDRATIO</value>
|
|
<minimum>${jacoco.coverage.target.class.method}</minimum>
|
|
</limit>
|
|
</limits>
|
|
<excludes>
|
|
<!-- Code implemented externally -->
|
|
<exclude>org.kohsuke.github.extras.okhttp3.ObsoleteUrlFactory.**</exclude>
|
|
<exclude>org.kohsuke.github.extras.okhttp3.ObsoleteUrlFactory</exclude>
|
|
|
|
<!-- Sample only -->
|
|
<exclude>org.kohsuke.github.example.*</exclude>
|
|
|
|
<!-- No methods -->
|
|
<exclude>org.kohsuke.github.Previews</exclude>
|
|
|
|
<!-- Deprecated -->
|
|
<exclude>org.kohsuke.github.extras.OkHttp3Connector</exclude>
|
|
<exclude>org.kohsuke.github.EnforcementLevel</exclude>
|
|
<exclude>org.kohsuke.github.GHPerson.1</exclude>
|
|
|
|
<!-- These fail coverage on windows because tests are disabled -->
|
|
<exclude>org.kohsuke.github.GHAsset</exclude>
|
|
<exclude>org.kohsuke.github.GHReleaseBuilder</exclude>
|
|
<exclude>org.kohsuke.github.GHRelease</exclude>
|
|
|
|
<!-- TODO: These still need test coverage -->
|
|
<exclude>org.kohsuke.github.GHBranchProtection.RequiredSignatures</exclude>
|
|
<exclude>org.kohsuke.github.GHBranchProtectionBuilder.Restrictions</exclude>
|
|
<exclude>org.kohsuke.github.GHBranchProtection.Restrictions</exclude>
|
|
<exclude>org.kohsuke.github.GHCommentAuthorAssociation</exclude>
|
|
<exclude>org.kohsuke.github.GHCommitBuilder.UserInfo</exclude>
|
|
<exclude>org.kohsuke.github.GHCommitState</exclude>
|
|
<exclude>org.kohsuke.github.GHCompare.Commit</exclude>
|
|
<exclude>org.kohsuke.github.GHCompare.InnerCommit</exclude>
|
|
<exclude>org.kohsuke.github.GHCompare.Status</exclude>
|
|
<exclude>org.kohsuke.github.GHCompare.Tree</exclude>
|
|
<exclude>org.kohsuke.github.GHCompare.User</exclude>
|
|
<exclude>org.kohsuke.github.GHCompare</exclude>
|
|
<exclude>org.kohsuke.github.GHDeployKey</exclude>
|
|
<exclude>org.kohsuke.github.GHDeploymentStatusBuilder</exclude>
|
|
<exclude>org.kohsuke.github.GHDirection</exclude>
|
|
<exclude>org.kohsuke.github.GHEmail</exclude>
|
|
<exclude>org.kohsuke.github.GHEventPayload.Ping</exclude>
|
|
<exclude>org.kohsuke.github.GHEventPayload.Release</exclude>
|
|
<exclude>org.kohsuke.github.GHException</exclude>
|
|
<exclude>org.kohsuke.github.GHHook</exclude>
|
|
<exclude>org.kohsuke.github.GHHooks.OrgContext</exclude>
|
|
<exclude>org.kohsuke.github.GHInvitation</exclude>
|
|
<exclude>org.kohsuke.github.GHMilestoneState</exclude>
|
|
<exclude>org.kohsuke.github.GHOrgHook</exclude>
|
|
<exclude>org.kohsuke.github.GHProject.ProjectStateFilter</exclude>
|
|
<exclude>org.kohsuke.github.GHPullRequestCommitDetail.Authorship</exclude>
|
|
<exclude>org.kohsuke.github.GHPullRequestCommitDetail.Commit</exclude>
|
|
<exclude>org.kohsuke.github.GHPullRequestCommitDetail.CommitPointer</exclude>
|
|
<exclude>org.kohsuke.github.GHPullRequestCommitDetail.Tree</exclude>
|
|
<exclude>org.kohsuke.github.GHPullRequestCommitDetail</exclude>
|
|
<exclude>org.kohsuke.github.GHPullRequestFileDetail</exclude>
|
|
<exclude>org.kohsuke.github.GHPullRequestQueryBuilder.Sort</exclude>
|
|
<exclude>org.kohsuke.github.GHReleaseUpdater</exclude>
|
|
<exclude>org.kohsuke.github.GHRepository.ForkSort</exclude>
|
|
<exclude>org.kohsuke.github.GHRequestedAction</exclude>
|
|
<exclude>org.kohsuke.github.GHStargazer</exclude>
|
|
<exclude>org.kohsuke.github.GHTagObject</exclude>
|
|
<exclude>org.kohsuke.github.GHTeam.Role</exclude>
|
|
<exclude>org.kohsuke.github.GHUserSearchBuilder.Sort</exclude>
|
|
<exclude>org.kohsuke.github.GHVerifiedKey</exclude>
|
|
</excludes>
|
|
</rule>
|
|
</rules>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
<version>3.2.0</version>
|
|
<configuration>
|
|
<source>8</source>
|
|
<failOnWarnings>true</failOnWarnings>
|
|
<doclint>all</doclint>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.sonatype.plugins</groupId>
|
|
<artifactId>nexus-staging-maven-plugin</artifactId>
|
|
<version>1.6.8</version>
|
|
<extensions>true</extensions>
|
|
<configuration>
|
|
<serverId>sonatype-nexus-staging</serverId>
|
|
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
|
|
<autoReleaseAfterClose>true</autoReleaseAfterClose>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</pluginManagement>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-site-plugin</artifactId>
|
|
<version>3.9.0</version>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-release-plugin</artifactId>
|
|
<version>2.5.3</version>
|
|
<configuration>
|
|
<autoVersionSubmodules>true</autoVersionSubmodules>
|
|
<useReleaseProfile>false</useReleaseProfile>
|
|
<releaseProfiles>release</releaseProfiles>
|
|
<goals>deploy</goals>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.sonatype.plugins</groupId>
|
|
<artifactId>nexus-staging-maven-plugin</artifactId>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-project-info-reports-plugin</artifactId>
|
|
<version>3.0.0</version>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.apache.bcel</groupId>
|
|
<artifactId>bcel</artifactId>
|
|
<version>6.4.1</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</plugin>
|
|
<plugin>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>3.8.1</version>
|
|
<configuration>
|
|
<source>1.8</source>
|
|
<target>1.8</target>
|
|
<annotationProcessorPaths>
|
|
<annotationProcessorPath>
|
|
<groupId>org.jenkins-ci</groupId>
|
|
<artifactId>annotation-indexer</artifactId>
|
|
<version>1.12</version>
|
|
</annotationProcessorPath>
|
|
</annotationProcessorPaths>
|
|
</configuration>
|
|
</plugin>
|
|
|
|
<plugin>
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
<version>2.22.2</version>
|
|
<configuration>
|
|
<!-- SUREFIRE-1226 workaround -->
|
|
<trimStackTrace>false</trimStackTrace>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
<artifactId>animal-sniffer-maven-plugin</artifactId>
|
|
<version>1.18</version>
|
|
<configuration>
|
|
<signature>
|
|
<groupId>org.codehaus.mojo.signature</groupId>
|
|
<artifactId>java18</artifactId>
|
|
<version>1.0</version>
|
|
</signature>
|
|
</configuration>
|
|
<executions>
|
|
<execution>
|
|
<id>ensure-java-1.8-class-library</id>
|
|
<phase>test</phase>
|
|
<goals>
|
|
<goal>check</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>com.infradna.tool</groupId>
|
|
<artifactId>bridge-method-injector</artifactId>
|
|
<version>1.18</version>
|
|
<executions>
|
|
<execution>
|
|
<goals>
|
|
<goal>process</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>net.revelc.code.formatter</groupId>
|
|
<artifactId>formatter-maven-plugin</artifactId>
|
|
<version>2.11.0</version>
|
|
<executions>
|
|
<execution>
|
|
<goals>
|
|
<goal>${formatter-maven-plugin.goal}</goal>
|
|
</goals>
|
|
<configuration>
|
|
<configFile>src/main/resources/eclipse/formatter.xml</configFile>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>net.revelc.code</groupId>
|
|
<artifactId>impsort-maven-plugin</artifactId>
|
|
<version>1.3.2</version>
|
|
<configuration>
|
|
<groups>*,java.,javax.</groups>
|
|
<removeUnused>true</removeUnused>
|
|
<staticAfter>true</staticAfter>
|
|
</configuration>
|
|
<executions>
|
|
<execution>
|
|
<goals>
|
|
<goal>${impsort-maven-plugin.goal}</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>com.github.spotbugs</groupId>
|
|
<artifactId>spotbugs-maven-plugin</artifactId>
|
|
<version>${spotbugs-maven-plugin.version}</version>
|
|
<configuration>
|
|
<xmlOutput>true</xmlOutput>
|
|
<failOnError>${spotbugs-maven-plugin.failOnError}</failOnError>
|
|
</configuration>
|
|
<executions>
|
|
<execution>
|
|
<id>run-spotbugs</id>
|
|
<phase>verify</phase>
|
|
<goals>
|
|
<goal>check</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
<dependencies>
|
|
<!-- overwrite dependency on spotbugs if you want to specify the version of spotbugs -->
|
|
<dependency>
|
|
<groupId>com.github.spotbugs</groupId>
|
|
<artifactId>spotbugs</artifactId>
|
|
<version>${spotbugs.version}</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.apache.commons</groupId>
|
|
<artifactId>commons-lang3</artifactId>
|
|
<version>3.9</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.hamcrest</groupId>
|
|
<artifactId>hamcrest</artifactId>
|
|
<version>${hamcrest.version}</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<!-- This is needed in order to force junit4 and JTH tests to use newer hamcrest version -->
|
|
<dependency>
|
|
<groupId>org.hamcrest</groupId>
|
|
<artifactId>hamcrest-core</artifactId>
|
|
<version>${hamcrest.version}</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.hamcrest</groupId>
|
|
<artifactId>hamcrest-library</artifactId>
|
|
<version>${hamcrest.version}</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<version>4.13</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
<artifactId>jackson-databind</artifactId>
|
|
<version>2.10.2</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>commons-io</groupId>
|
|
<artifactId>commons-io</artifactId>
|
|
<version>2.4</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.infradna.tool</groupId>
|
|
<artifactId>bridge-method-annotation</artifactId>
|
|
<version>1.18</version>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
<!-- for stapler-jetty -->
|
|
<dependency>
|
|
<groupId>commons-fileupload</groupId>
|
|
<artifactId>commons-fileupload</artifactId>
|
|
<version>1.4</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<!-- for stapler-jetty -->
|
|
<dependency>
|
|
<groupId>commons-discovery</groupId>
|
|
<artifactId>commons-discovery</artifactId>
|
|
<version>0.5</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<!-- for stapler-jetty -->
|
|
<dependency>
|
|
<groupId>org.kohsuke.stapler</groupId>
|
|
<artifactId>stapler</artifactId>
|
|
<version>1.259</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.kohsuke.stapler</groupId>
|
|
<artifactId>stapler-jetty</artifactId>
|
|
<version>1.1</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclipse.jgit</groupId>
|
|
<artifactId>org.eclipse.jgit</artifactId>
|
|
<version>5.7.0.202003110725-r</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.squareup.okio</groupId>
|
|
<artifactId>okio</artifactId>
|
|
<version>${okio.version}</version>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.squareup.okhttp3</groupId>
|
|
<artifactId>okhttp</artifactId>
|
|
<version>${okhttp3.version}</version>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
<!-- This is the last version of okhttp3 that support UrlConnection -->
|
|
<!-- The class using this has been deprecated, this dependency can be remove when that class is. -->
|
|
<dependency>
|
|
<groupId>com.squareup.okhttp3</groupId>
|
|
<artifactId>okhttp-urlconnection</artifactId>
|
|
<version>3.12.3</version>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.squareup.okhttp</groupId>
|
|
<artifactId>okhttp-urlconnection</artifactId>
|
|
<version>2.7.5</version>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.kohsuke</groupId>
|
|
<artifactId>wordnet-random-name</artifactId>
|
|
<version>1.3</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.mockito</groupId>
|
|
<artifactId>mockito-core</artifactId>
|
|
<version>3.3.3</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.github.spotbugs</groupId>
|
|
<artifactId>spotbugs-annotations</artifactId>
|
|
<version>${spotbugs.version}</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.github.tomakehurst</groupId>
|
|
<artifactId>wiremock-jre8-standalone</artifactId>
|
|
<version>2.26.3</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.google.code.gson</groupId>
|
|
<artifactId>gson</artifactId>
|
|
<version>2.8.6</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
<repositories>
|
|
<repository>
|
|
<id>repo.jenkins-ci.org</id>
|
|
<url>https://repo.jenkins-ci.org/public/</url>
|
|
</repository>
|
|
</repositories>
|
|
<pluginRepositories>
|
|
<pluginRepository>
|
|
<id>repo.jenkins-ci.org</id>
|
|
<url>https://repo.jenkins-ci.org/public/</url>
|
|
</pluginRepository>
|
|
</pluginRepositories>
|
|
<profiles>
|
|
<profile>
|
|
<id>ci-non-windows</id>
|
|
<activation>
|
|
<property>
|
|
<name>enable-ci</name>
|
|
</property>
|
|
<os>
|
|
<family>!windows</family>
|
|
</os>
|
|
</activation>
|
|
<properties>
|
|
<formatter-maven-plugin.goal>validate</formatter-maven-plugin.goal>
|
|
<impsort-maven-plugin.goal>check</impsort-maven-plugin.goal>
|
|
</properties>
|
|
</profile>
|
|
<profile>
|
|
<id>ci-all</id>
|
|
<activation>
|
|
<property>
|
|
<name>enable-ci</name>
|
|
</property>
|
|
</activation>
|
|
<properties>
|
|
<jacoco.haltOnFailure>true</jacoco.haltOnFailure>
|
|
</properties>
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.jacoco</groupId>
|
|
<artifactId>jacoco-maven-plugin</artifactId>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</profile>
|
|
<profile>
|
|
<id>release</id>
|
|
<properties>
|
|
<formatter-maven-plugin.goal>validate</formatter-maven-plugin.goal>
|
|
<impsort-maven-plugin.goal>check</impsort-maven-plugin.goal>
|
|
</properties>
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.jacoco</groupId>
|
|
<artifactId>jacoco-maven-plugin</artifactId>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-gpg-plugin</artifactId>
|
|
<executions>
|
|
<execution>
|
|
<id>sign-artifacts</id>
|
|
<phase>verify</phase>
|
|
<goals>
|
|
<goal>sign</goal>
|
|
</goals>
|
|
<configuration>
|
|
<gpgArguments>
|
|
<arg>--pinentry-mode</arg>
|
|
<arg>loopback</arg>
|
|
</gpgArguments>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-source-plugin</artifactId>
|
|
<executions>
|
|
<execution>
|
|
<id>attach-sources</id>
|
|
<goals>
|
|
<goal>jar-no-fork</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
<executions>
|
|
<execution>
|
|
<id>attach-javadocs</id>
|
|
<goals>
|
|
<goal>jar</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</profile>
|
|
</profiles>
|
|
<reporting>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.jacoco</groupId>
|
|
<artifactId>jacoco-maven-plugin</artifactId>
|
|
<reportSets>
|
|
<reportSet>
|
|
<reports>
|
|
<!-- select non-aggregate reports -->
|
|
<report>report</report>
|
|
</reports>
|
|
</reportSet>
|
|
</reportSets>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-project-info-reports-plugin</artifactId>
|
|
</plugin>
|
|
</plugins>
|
|
</reporting>
|
|
|
|
<licenses>
|
|
<license>
|
|
<name>The MIT license</name>
|
|
<url>https://www.opensource.org/licenses/mit-license.php</url>
|
|
<distribution>repo</distribution>
|
|
</license>
|
|
</licenses>
|
|
|
|
<mailingLists>
|
|
<mailingList>
|
|
<name>User List</name>
|
|
<post>github-api@googlegroups.com</post>
|
|
<archive>https://groups.google.com/forum/#!forum/github-api</archive>
|
|
</mailingList>
|
|
</mailingLists>
|
|
|
|
<developers>
|
|
<developer>
|
|
<name>Kohsuke Kawaguchi</name>
|
|
<id>kohsuke</id>
|
|
<email>kk@kohsuke.org</email>
|
|
</developer>
|
|
</developers>
|
|
|
|
</project>
|