forked from ipfs-shipyard/java-ipfs-http-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
luoweb
committed
May 24, 2020
1 parent
b5f6b90
commit c917bd8
Showing
5 changed files
with
312 additions
and
269 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,67 +1,91 @@ | ||
<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"> | ||
<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>com.github.ipfs</groupId> | ||
<artifactId>java-ipfs-http-client</artifactId> | ||
<groupId>com.github.ipfs</groupId> | ||
<artifactId>java-ipfs-http-client</artifactId> | ||
<version>v1.2.3</version> | ||
<packaging>jar</packaging> | ||
|
||
<name>java-ipfs-http-client</name> | ||
<url>https://github.com/ipfs/java-ipfs-http-client</url> | ||
|
||
<issueManagement> | ||
<url>https://github.com/ipfs/java-ipfs-http-client/issues</url> | ||
<system>GitHub Issues</system> | ||
</issueManagement> | ||
<url>https://github.com/ipfs/java-ipfs-http-client/issues</url> | ||
<system>GitHub Issues</system> | ||
</issueManagement> | ||
|
||
<scm> | ||
<url>https://github.com/ipfs/java-ipfs-http-client</url> | ||
<connection>scm:git:git://github.com/ipfs/java-ipfs-http-client.git</connection> | ||
<developerConnection>scm:git:[email protected]:ipfs/java-ipfs-http-client.git</developerConnection> | ||
</scm> | ||
<scm> | ||
<url>https://github.com/ipfs/java-ipfs-http-client</url> | ||
<connection>scm:git:git://github.com/ipfs/java-ipfs-http-client.git</connection> | ||
<developerConnection>scm:git:[email protected]:ipfs/java-ipfs-http-client.git</developerConnection> | ||
</scm> | ||
|
||
<licenses> | ||
<license> | ||
<name>MIT License</name> | ||
<url>https://github.com/ipfs/java-ipfs-http-client/blob/master/LICENSE</url> | ||
<distribution>repo</distribution> | ||
</license> | ||
</licenses> | ||
<licenses> | ||
<license> | ||
<name>MIT License</name> | ||
<url>https://github.com/ipfs/java-ipfs-http-client/blob/master/LICENSE</url> | ||
<distribution>repo</distribution> | ||
</license> | ||
</licenses> | ||
|
||
<properties> | ||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | ||
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> | ||
<version.junit>4.12</version.junit> | ||
<version.hamcrest>1.3</version.hamcrest> | ||
<version.multiaddr>v1.3.1</version.multiaddr> | ||
<version.junit>4.12</version.junit> | ||
<version.hamcrest>1.3</version.hamcrest> | ||
<version.multiaddr>v1.3.1</version.multiaddr> | ||
</properties> | ||
|
||
<repositories> | ||
<repository> | ||
<id>jitpack.io</id> | ||
<url>https://jitpack.io</url> | ||
</repository> | ||
<repository> | ||
<id>maven-ali</id> | ||
<url>http://maven.aliyun.com/nexus/content/groups/public/</url> | ||
<releases> | ||
<enabled>true</enabled> | ||
</releases> | ||
<snapshots> | ||
<enabled>true</enabled> | ||
<updatePolicy>always</updatePolicy> | ||
<checksumPolicy>fail</checksumPolicy> | ||
</snapshots> | ||
</repository> | ||
</repositories> | ||
<pluginRepositories> | ||
<pluginRepository> | ||
<id>aliyun</id> | ||
<name>aliyun</name> | ||
<url>http://maven.aliyun.com/nexus/content/groups/public/</url> | ||
<releases> | ||
<enabled>true</enabled> | ||
</releases> | ||
<snapshots> | ||
<enabled>false</enabled> | ||
</snapshots> | ||
</pluginRepository> | ||
</pluginRepositories> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>com.github.multiformats</groupId> | ||
<artifactId>java-multiaddr</artifactId> | ||
<version>${version.multiaddr}</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>junit</groupId> | ||
<artifactId>junit</artifactId> | ||
<version>${version.junit}</version> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.hamcrest</groupId> | ||
<artifactId>hamcrest-core</artifactId> | ||
<version>${version.hamcrest}</version> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.github.multiformats</groupId> | ||
<artifactId>java-multiaddr</artifactId> | ||
<version>${version.multiaddr}</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>junit</groupId> | ||
<artifactId>junit</artifactId> | ||
<version>${version.junit}</version> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.hamcrest</groupId> | ||
<artifactId>hamcrest-core</artifactId> | ||
<version>${version.hamcrest}</version> | ||
<scope>test</scope> | ||
</dependency> | ||
</dependencies> | ||
|
||
<build> | ||
|
@@ -94,4 +118,4 @@ | |
</plugin> | ||
</plugins> | ||
</build> | ||
</project> | ||
</project> |
Oops, something went wrong.