Skip to content

Commit

Permalink
the bug with ipfs/kubo/pull/7097
Browse files Browse the repository at this point in the history
  • Loading branch information
luoweb committed May 24, 2020
1 parent b5f6b90 commit c917bd8
Show file tree
Hide file tree
Showing 5 changed files with 312 additions and 269 deletions.
104 changes: 64 additions & 40 deletions pom.xml
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>
Expand Down Expand Up @@ -94,4 +118,4 @@
</plugin>
</plugins>
</build>
</project>
</project>
Loading

0 comments on commit c917bd8

Please sign in to comment.