组织ID: |
org.eclipse.mylyn.github |
项目ID: |
org.eclipse.egit.github.core |
版本: |
1.2.0 |
最后修改时间: |
2018-08-27 10:06:47 |
包类型: |
jar |
标题: |
Eclipse EGit GitHub API Core |
大小: |
157.34KB |
|
Maven引入代码: |
<dependency>
<groupId>org.eclipse.mylyn.github</groupId>
<artifactId>org.eclipse.egit.github.core</artifactId>
<version>1.2.0</version>
</dependency>
|
Gradle引入代码: |
org.eclipse.mylyn.github:org.eclipse.egit.github.core:1.2.0
|
下载Jar包: |
|
POM文件内容: |
<?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>
<parent>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>7</version>
</parent>
<groupId>org.eclipse.mylyn.github</groupId>
<artifactId>org.eclipse.egit.github.core</artifactId>
<version>1.2.0</version>
<packaging>jar</packaging>
<name>Eclipse EGit GitHub API Core</name>
<licenses>
<license>
<name>Eclipse Public License</name>
<url>http://www.eclipse.org/legal/epl-v10.html</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<connection>scm:git:git://egit.eclipse.org/egit-github.git</connection>
</scm>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<target-manifest-path>${project.build.directory}/META-INF/SOURCE-MANIFEST.MF</target-manifest-path>
</properties>
<build>
<sourceDirectory>src/</sourceDirectory>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<executions>
<execution>
<phase>generate-resources</phase>
<configuration>
<tasks>
<copy file="META-INF/SOURCE-MANIFEST.MF" tofile="${target-manifest-path}"
overwrite="true" />
<replace file="${target-manifest-path}">
<replacefilter token=".qualifier" value=".${maven.build.timestamp}" />
</replace>
</tasks>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<inherited>true</inherited>
<executions>
<execution>
<phase>process-classes</phase>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<archive>
<manifestFile>${target-manifest-path}</manifestFile>
</archive>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<manifestFile>${target-manifest-path}</manifestFile>
</archive>
</configuration>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>shade</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>1.4</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>android-shade</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>1.4</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<relocations>
<relocation>
<!-- Apache classes are relocated since Android ships with a specific
version of some of them and won't load bundled ones unless they have a different
package name -->
<pattern>org.apache</pattern>
<shadedPattern>shade.org.apache</shadedPattern>
</relocation>
</relocations>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>sign</id>
<build>
<plugins>
<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>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<dependencies>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<version>4.1.2</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpcore</artifactId>
<version>4.1.3</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpmime</artifactId>
<version>4.1.2</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>1.7.2</version>
<scope>compile</scope>
</dependency>
</dependencies>
</project>
|
Jar包内容: |
META-INF/MANIFEST.MF
org.eclipse.egit.github.core.GistRevision.class
org.eclipse.egit.github.core.TreeEntry.class
org.eclipse.egit.github.core.CommitStats.class
org.eclipse.egit.github.core.Comment.class
org.eclipse.egit.github.core.MergeStatus.class
org.eclipse.egit.github.core.IRepositoryIdProvider.class
org.eclipse.egit.github.core.client.NoSuchPageException.class
org.eclipse.egit.github.core.client.PageLinks.class
org.eclipse.egit.github.core.client.PageIterator.class
org.eclipse.egit.github.core.client.GitHubRequest.class
org.eclipse.egit.github.core.client.AuthInterceptor.class
org.eclipse.egit.github.core.client.DateFormatter.class
org.eclipse.egit.github.core.client.PagedRequest.class
org.eclipse.egit.github.core.client.GitHubResponse.class
org.eclipse.egit.github.core.client.GitHubClient.class
org.eclipse.egit.github.core.client.OAuth2Scheme.class
org.eclipse.egit.github.core.client.IGitHubConstants.class
org.eclipse.egit.github.core.client.EntityDeleteMethod.class
org.eclipse.egit.github.core.client.RequestException.class
org.eclipse.egit.github.core.client.GsonUtils.class
org.eclipse.egit.github.core.Key.class
org.eclipse.egit.github.core.Repository.class
org.eclipse.egit.github.core.Team.class
org.eclipse.egit.github.core.ShaResource.class
org.eclipse.egit.github.core.IssueEvent.class
org.eclipse.egit.github.core.UserPlan.class
org.eclipse.egit.github.core.RepositoryHook.class
org.eclipse.egit.github.core.CommitUser.class
org.eclipse.egit.github.core.Tag.class
org.eclipse.egit.github.core.Tree.class
org.eclipse.egit.github.core.Reference.class
org.eclipse.egit.github.core.service.RepositoryService$6.class
org.eclipse.egit.github.core.service.OAuthService$1.class
org.eclipse.egit.github.core.service.RepositoryService$3.class
org.eclipse.egit.github.core.service.UserService$1.class
org.eclipse.egit.github.core.service.RepositoryService$9.class
org.eclipse.egit.github.core.service.DeployKeyService.class
org.eclipse.egit.github.core.service.RepositoryService$1.class
org.eclipse.egit.github.core.service.RepositoryService.class
org.eclipse.egit.github.core.service.LabelService$2.class
org.eclipse.egit.github.core.service.UserService$3.class
org.eclipse.egit.github.core.service.IssueService$4.class
org.eclipse.egit.github.core.service.TeamService$1.class
org.eclipse.egit.github.core.service.RepositoryService$8.class
org.eclipse.egit.github.core.service.DataService$1.class
org.eclipse.egit.github.core.service.IssueService.class
org.eclipse.egit.github.core.service.PullRequestService.class
org.eclipse.egit.github.core.service.PullRequestService$4.class
org.eclipse.egit.github.core.service.DownloadService.class
org.eclipse.egit.github.core.service.OrganizationService$3.class
org.eclipse.egit.github.core.service.UserService$2.class
org.eclipse.egit.github.core.service.IssueService$5.class
org.eclipse.egit.github.core.service.PullRequestService$1.class
org.eclipse.egit.github.core.service.OrganizationService$2.class
org.eclipse.egit.github.core.service.GistService.class
org.eclipse.egit.github.core.service.CollaboratorService.class
org.eclipse.egit.github.core.service.CommitService$2.class
org.eclipse.egit.github.core.service.RepositoryService$5.class
org.eclipse.egit.github.core.service.RepositoryService$7.class
org.eclipse.egit.github.core.service.DeployKeyService$1.class
org.eclipse.egit.github.core.service.OrganizationService$1.class
org.eclipse.egit.github.core.service.RepositoryService$RepositoryContainer.class
org.eclipse.egit.github.core.service.WatcherService$2.class
org.eclipse.egit.github.core.service.CollaboratorService$1.class
org.eclipse.egit.github.core.service.CommitService$1.class
org.eclipse.egit.github.core.service.DownloadService$SizedInputStreamBody.class
org.eclipse.egit.github.core.service.TeamService$3.class
org.eclipse.egit.github.core.service.TeamService$4.class
org.eclipse.egit.github.core.service.GistService$2.class
org.eclipse.egit.github.core.service.WatcherService.class
org.eclipse.egit.github.core.service.OrganizationService.class
org.eclipse.egit.github.core.service.DataService.class
org.eclipse.egit.github.core.service.GistService$1.class
org.eclipse.egit.github.core.service.IssueService$3.class
org.eclipse.egit.github.core.service.WatcherService$3.class
org.eclipse.egit.github.core.service.OAuthService.class
org.eclipse.egit.github.core.service.IssueService$1.class
org.eclipse.egit.github.core.service.UserService.class
org.eclipse.egit.github.core.service.MilestoneService$1.class
org.eclipse.egit.github.core.service.LabelService$1.class
org.eclipse.egit.github.core.service.GistService$4.class
org.eclipse.egit.github.core.service.UserService$4.class
org.eclipse.egit.github.core.service.PullRequestService$2.class
org.eclipse.egit.github.core.service.DownloadService$1.class
org.eclipse.egit.github.core.service.GitHubService.class
org.eclipse.egit.github.core.service.TeamService.class
org.eclipse.egit.github.core.service.LabelService.class
org.eclipse.egit.github.core.service.TeamService$2.class
org.eclipse.egit.github.core.service.PullRequestService$3.class
org.eclipse.egit.github.core.service.CommitService.class
org.eclipse.egit.github.core.service.IssueService$2.class
org.eclipse.egit.github.core.service.MilestoneService.class
org.eclipse.egit.github.core.service.WatcherService$1.class
org.eclipse.egit.github.core.service.RepositoryService$4.class
org.eclipse.egit.github.core.service.RepositoryService$2.class
org.eclipse.egit.github.core.service.GistService$3.class
org.eclipse.egit.github.core.PullRequestMarker.class
org.eclipse.egit.github.core.Id.class
org.eclipse.egit.github.core.SearchRepository.class
org.eclipse.egit.github.core.User.class
org.eclipse.egit.github.core.GistChangeStatus.class
org.eclipse.egit.github.core.RequestError.class
org.eclipse.egit.github.core.Commit.class
org.eclipse.egit.github.core.TypedResource.class
#内容未全部加载,请点击展开加载全部代码(NowJava.com)
|
依赖Jar: |
httpclient-4.1.2.jar
/org.apache.httpcomponents/httpclient/4.1.2
查看httpclient所有版本文件
httpcore-4.1.3.jar
/org.apache.httpcomponents/httpcore/4.1.3
查看httpcore所有版本文件
httpmime-4.1.2.jar
/org.apache.httpcomponents/httpmime/4.1.2
查看httpmime所有版本文件
gson-1.7.2.jar
/com.google.code.gson/gson/1.7.2
查看gson所有版本文件
|