Skip to content

Commit

Permalink
Replaced CompletableFuture in PathRef. Bumped version to 0.2.5
Browse files Browse the repository at this point in the history
  • Loading branch information
ChronosXYZ committed May 10, 2019
1 parent e590767 commit 2617e8b
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 2 deletions.
20 changes: 19 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ plugins {
}

group 'io.github.chronosx88'
version '0.2.4'
version '0.2.5'

sourceCompatibility = 1.8

Expand All @@ -19,3 +19,21 @@ dependencies {

testCompile group: 'junit', name: 'junit', version: '4.12'
}


task sourcesJar(type: Jar, dependsOn: classes) {
classifier = 'sources'
from sourceSets.main.allSource
}

task javadocJar(type: Jar, dependsOn: javadoc) {
classifier = 'javadoc'
from javadoc.destinationDir
}

artifacts {
archives sourcesJar
archives javadocJar
}


2 changes: 1 addition & 1 deletion src/main/java/io/github/chronosx88/JGUN/PathRef.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@

import io.github.chronosx88.JGUN.futures.FutureGet;
import io.github.chronosx88.JGUN.futures.FuturePut;
import java9.util.concurrent.CompletableFuture;
import org.json.JSONObject;

import java.util.ArrayList;
import java.util.Iterator;
import java.util.concurrent.CompletableFuture;
import java.util.concurrent.ExecutionException;

public class PathRef {
Expand Down

0 comments on commit 2617e8b

Please sign in to comment.