| Group ID: |
org.sourcelab |
| Artifact ID: |
github-rest-api |
| Version: |
0.0.4 |
| Last modified: |
08.02.2023 22:41 |
| Packaging: |
jar |
| Name: |
Github REST API Client |
| Description: |
A for Github's rest API |
| URL: |
https://github.com/SourceLabOrg/github-Rest-API |
|
|
| Size: |
127.0 KB |
| Download: |
https://repo.maven.apache.org/maven2/org/sourcelab/github-rest-api/0.0.4/github-rest-api-0.0.4.jar |
| POM: |
Show
hide
<?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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.sourcelab</groupId>
<artifactId>github-rest-api</artifactId>
<version>0.0.4</version>
<packaging>jar</packaging>
<!-- Require Maven 3.3.9 -->
<prerequisites>
<maven>3.3.9</maven>
</prerequisites>
<!-- Module Description and Ownership -->
<name>Github REST API Client</name>
<description>A for Github's rest API</description>
<url>https://github.com/SourceLabOrg/github-Rest-API</url>
<developers>
<developer>
<name>Stephen Powis</name>
<email>stephen.powis@gmail.com</email>
<organization>SourceLab.org</organization>
<organizationUrl>https://www.sourcelab.org/</organizationUrl>
</developer>
</developers>
<!-- MIT License -->
<licenses>
<license>
<name>MIT License</name>
<url>http://www.opensource.org/licenses/mit-license.php</url>
</license>
</licenses>
<!-- Source Control -->
<scm>
<connection>scm:git:git://github.com/SourceLabOrg/github-Rest-API.git</connection>
<developerConnection>scm:git:ssh://github.com:sourcelaborg/github-Rest-API.git</developerConnection>
<url>https://github.com/SourceLabOrg/github-Rest-API/tree/master</url>
</scm>
<!-- Module Properties -->
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<!-- Http Components version -->
<http-components.version>5.2.1</http-components.version>
<!-- Jackson version -->
<jackson.version>2.14.2</jackson.version>
<!-- Define which version of junit you'll be running -->
<junit.version>5.9.2</junit.version>
<!-- Specify which Checkstyle ruleset to use -->
<checkstyle.ruleset>build/checkstyle-v1.5.xml</checkstyle.ruleset>
<checkstyle.plugin.version>3.1.1</checkstyle.plugin.version>
<checkstyle.version>8.32</checkstyle.version>
<!-- Log4J Version -->
<log4j2.version>2.19.0</log4j2.version>
<slf4j.version>2.0.6</slf4j.version>
<!-- test toggling -->
<skipTests>false</skipTests>
<skipCodeCoverage>true</skipCodeCoverage>
<skipCheckStyle>false</skipCheckStyle>
<!-- By default exclude Integration/End-to-End tests -->
<excludeTests>IntegrationTest</excludeTests>
</properties>
<!-- Project Dependencies -->
<dependencies>
<!-- Http Client -->
<dependency>
<groupId>org.apache.httpcomponents.client5</groupId>
<artifactId>httpclient5</artifactId>
<version>${http-components.version}</version>
</dependency>
<!-- For parsing XML responses to POJOs -->
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
<version>${jackson.version}</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>${jackson.version}</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.datatype</groupId>
<artifactId>jackson-datatype-jsr310</artifactId>
<version>${jackson.version}</version>
</dependency>
<!-- Logging Interface -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-reload4j</artifactId>
<version>${slf4j.version}</version>
<scope>test</scope>
</dependency>
<!-- Testing Tools -->
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<!-- Mocks in tests -->
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>5.0.0</version>
<scope>test</scope>
</dependency>
<!-- Used in tests for reading files -->
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.11.0</version>
<scope>test</scope>
</dependency>
<!-- Logging in tests -->
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-api</artifactId>
<version>${log4j2.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
<version>${log4j2.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-slf4j-impl</artifactId>
<version>${log4j2.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<!-- Set Source & Target JRE Version -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<!-- Generates test results -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.0.0-M7</version>
<configuration>
<argLine>-Xmx128M</argLine>
<skipTests>${skipTests}</skipTests>
<runOrder>alphabetical</runOrder>
<!-- By default exclude Integration Tests -->
<excludedGroups>
${excludeTests}
</excludedGroups>
</configuration>
</plugin>
<!-- Enforce check styles validation -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<version>${checkstyle.plugin.version}</version>
<executions>
<execution>
<id>checkstyle-validate</id>
<phase>validate</phase><!-- when we need to run checkstyle::check -->
<configuration>
<configLocation>${checkstyle.ruleset}</configLocation>
<encoding>utf-8</encoding>
<consoleOutput>true</consoleOutput>
<violationSeverity>warning</violationSeverity>
<failsOnError>true</failsOnError>
<enableRSS>false</enableRSS>
<!-- By default we run checkstyle validation-->
<skip>${skipCheckStyle}</skip>
</configuration>
<goals>
<!-- Generate site/html report -->
<goal>checkstyle</goal>
<!-- Enforce failing build on checkstyle failure -->
<goal>check</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- Release plugin -->
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.13</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</plugin>
</plugins>
<pluginManagement>
<plugins>
<!-- Use a current version of checkstyle -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<version>${checkstyle.plugin.version}</version>
<dependencies>
<dependency>
<groupId>com.puppycrawl.tools</groupId>
<artifactId>checkstyle</artifactId>
<version>${checkstyle.version}</version>
</dependency>
</dependencies>
</plugin>
</plugins>
</pluginManagement>
</build>
<reporting>
<plugins>
<!-- Generate Checkstyle html results during reporting phase -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<version>${checkstyle.plugin.version}</version>
<configuration>
<configLocation>${checkstyle.ruleset}</configLocation>
</configuration>
</plugin>
</plugins>
</reporting>
<!-- For deploying to maven central -->
<distributionManagement>
<!-- Snapshot repository -->
<snapshotRepository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
</distributionManagement>
<!-- release profile for deploying -->
<profiles>
<profile>
<id>release</id>
<build>
<plugins>
<!-- Build Sources Jar -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.2.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- Build Javadoc Jar -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.4.1</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<source>8</source>
</configuration>
</execution>
</executions>
</plugin>
<!-- GPG Signing of Artifacts -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.6</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
<configuration>
<keyname>SourceLab.org</keyname>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>
|
| Maven: |
<dependency>
<groupId>org.sourcelab</groupId>
<artifactId>github-rest-api</artifactId>
<version>0.0.4</version>
</dependency>
|
| Gradle: |
org.sourcelab:github-rest-api:0.0.4 |
|
Contained classes:
|
Show all
|
|
Contained classes:
|
|
| Dependencies: |
-
[JAR]
commons-io-2.11.0.jar
in commons-io/commons-io/2.11.0
-
[JAR]
httpclient5-${http-components.version}.jar
in org/apache/httpcomponents/client5/httpclient5/${http-components.version}
-
[JAR]
jackson-core-${jackson.version}.jar
in com/fasterxml/jackson/core/jackson-core/${jackson.version}
-
[JAR]
jackson-databind-${jackson.version}.jar
in com/fasterxml/jackson/core/jackson-databind/${jackson.version}
-
[JAR]
jackson-datatype-jsr310-${jackson.version}.jar
in com/fasterxml/jackson/datatype/jackson-datatype-jsr310/${jackson.version}
-
[JAR]
junit-jupiter-${junit.version}.jar
in org/junit/jupiter/junit-jupiter/${junit.version}
-
[JAR]
log4j-api-${log4j2.version}.jar
in org/apache/logging/log4j/log4j-api/${log4j2.version}
-
[JAR]
log4j-core-${log4j2.version}.jar
in org/apache/logging/log4j/log4j-core/${log4j2.version}
-
[JAR]
log4j-slf4j-impl-${log4j2.version}.jar
in org/apache/logging/log4j/log4j-slf4j-impl/${log4j2.version}
-
[JAR]
mockito-core-5.0.0.jar
in org/mockito/mockito-core/5.0.0
-
[JAR]
slf4j-reload4j-${slf4j.version}.jar
in org/slf4j/slf4j-reload4j/${slf4j.version}
|
| Dependency Graph: |
Show
Less
More
|