"Incremental Builds"

This commit is contained in:
James Munson
2019-07-05 15:36:27 -07:00
parent 8688a87a94
commit 1ac52afd4c
4 changed files with 6 additions and 6 deletions

View File

@@ -84,7 +84,7 @@ public class ExamineClient
public void onResponse(Call call, Response response)
{
response.close();
//logger.debug("Submitted examine info for {} {}: {}", type, id, text);
logger.debug("Submitted examine info for {} {}: {}", type, id, text);
}
});
}

View File

@@ -28,6 +28,7 @@ import com.google.gson.Gson;
import com.google.gson.GsonBuilder;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Collections;
import java.util.List;
import net.runelite.http.api.ws.messages.Handshake;
import net.runelite.http.api.ws.messages.LoginResponse;
@@ -78,9 +79,8 @@ public class WebsocketGsonFactory
.create();
}
public static boolean build()
public static Gson build()
{
//return build(factory(Collections.emptyList()));
return true;
return build(factory(Collections.emptyList()));
}
}

View File

@@ -62,7 +62,7 @@ public class XpClient
public void onResponse(Call call, Response response)
{
response.close();
//logger.debug("Submitted xp track for {}", username);
logger.debug("Submitted xp track for {}", username);
}
});
}

View File

@@ -312,7 +312,7 @@
</plugin>
<plugin>
<groupId>io.github.zlika</groupId>
<artifactId>reproducible-build-maven-plugin</artifactId>
<artifactId>reproducible-build-maven-plugin</artifactId>//logger.debug("Submitted xp track for {}", username);
<version>${zlika.reproducible.build.maven.plugin.version}</version>
<executions>
<execution>