修改上传脚本,将从库从jcenter迁移到mavencentral
This commit is contained in:
@@ -15,6 +15,9 @@ android {
|
||||
}
|
||||
|
||||
buildTypes {
|
||||
debug{
|
||||
debuggable true
|
||||
}
|
||||
release {
|
||||
minifyEnabled false
|
||||
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
||||
@@ -32,4 +35,8 @@ dependencies {
|
||||
testImplementation 'junit:junit:4.12'
|
||||
}
|
||||
|
||||
apply from: 'bintray-release.gradle'
|
||||
//apply from: 'bintray-release.gradle'
|
||||
ext{
|
||||
PUBLISH_ARTIFACT_ID = 'public'
|
||||
}
|
||||
apply from: '../gradle/mavenCentral-release.gradle'
|
||||
@@ -38,8 +38,8 @@ import java.util.Map;
|
||||
/**
|
||||
* 任务配置参数
|
||||
*
|
||||
* @Author lyy
|
||||
* @Date 2019-09-10
|
||||
* @author lyy
|
||||
* Date: 2019-09-10
|
||||
*/
|
||||
public class TaskOptionParams {
|
||||
|
||||
|
||||
@@ -29,8 +29,8 @@ import java.io.IOException;
|
||||
/**
|
||||
* 任务记录帮助类,用于处理统一的逻辑
|
||||
*
|
||||
* @Author lyy
|
||||
* @Date 2019-09-19
|
||||
* @author lyy
|
||||
* Date: 2019-09-19
|
||||
*/
|
||||
public class RecordHelper {
|
||||
private String TAG = CommonUtil.getClassName(getClass());
|
||||
|
||||
@@ -18,8 +18,8 @@ package com.arialyy.aria.core.inf;
|
||||
/**
|
||||
* 事件处理对象
|
||||
*
|
||||
* @Author lyy
|
||||
* @Date 2019-09-10
|
||||
* @author lyy
|
||||
* Date: 2019-09-10
|
||||
*/
|
||||
public interface IEventHandler {
|
||||
}
|
||||
|
||||
@@ -16,8 +16,8 @@
|
||||
package com.arialyy.aria.core.inf;
|
||||
|
||||
/**
|
||||
* @Author lyy
|
||||
* @Date 2019-09-10
|
||||
* @author lyy
|
||||
* Date: 2019-09-10
|
||||
*/
|
||||
public interface IOptionConstant {
|
||||
// ftp 任务设置常量
|
||||
|
||||
@@ -21,8 +21,8 @@ import com.arialyy.aria.core.wrapper.AbsTaskWrapper;
|
||||
import com.arialyy.aria.core.common.SubThreadConfig;
|
||||
|
||||
/**
|
||||
* @Author lyy
|
||||
* @Date 2019-09-18
|
||||
* @author lyy
|
||||
* Date: 2019-09-18
|
||||
*/
|
||||
public interface ILoaderAdapter {
|
||||
|
||||
|
||||
@@ -19,8 +19,8 @@ import com.arialyy.aria.core.TaskRecord;
|
||||
import com.arialyy.aria.core.ThreadRecord;
|
||||
|
||||
/**
|
||||
* @Author lyy
|
||||
* @Date 2019-09-18
|
||||
* @author lyy
|
||||
* Date: 2019-09-18
|
||||
*/
|
||||
public interface IRecordHandler extends ILoaderComponent {
|
||||
|
||||
|
||||
@@ -21,8 +21,8 @@ import java.lang.reflect.Method;
|
||||
import java.lang.reflect.Proxy;
|
||||
|
||||
/**
|
||||
* @Author lyy
|
||||
* @Date 2019-10-7
|
||||
* @author lyy
|
||||
* Date: 2019-10-7
|
||||
* 处理器的动态代理
|
||||
*/
|
||||
public class ProxyHandler implements InvocationHandler {
|
||||
|
||||
@@ -24,8 +24,8 @@ import com.arialyy.aria.util.BandwidthLimiter;
|
||||
import com.arialyy.aria.util.CommonUtil;
|
||||
|
||||
/**
|
||||
* @Author lyy
|
||||
* @Date 2019-09-18
|
||||
* @author lyy
|
||||
* Date: 2019-09-18
|
||||
*/
|
||||
public abstract class AbsThreadTaskAdapter implements IThreadTaskAdapter {
|
||||
|
||||
|
||||
@@ -18,8 +18,8 @@ package com.arialyy.aria.core.task;
|
||||
import java.util.concurrent.Callable;
|
||||
|
||||
/**
|
||||
* @Author lyy
|
||||
* @Date 2019-09-18
|
||||
* @author lyy
|
||||
* Date: 2019-09-18
|
||||
*/
|
||||
public interface IThreadTask extends Callable<IThreadTask> {
|
||||
|
||||
|
||||
@@ -18,8 +18,8 @@ package com.arialyy.aria.core.task;
|
||||
/**
|
||||
* 线程适配器
|
||||
*
|
||||
* @Author lyy
|
||||
* @Date 2019-09-18
|
||||
* @author lyy
|
||||
* Date: 2019-09-18
|
||||
*/
|
||||
public interface IThreadTaskAdapter {
|
||||
|
||||
|
||||
@@ -22,8 +22,8 @@ import com.arialyy.aria.exception.AriaException;
|
||||
/**
|
||||
* 线程任务观察者
|
||||
*
|
||||
* @Author lyy
|
||||
* @Date 2019-09-18
|
||||
* @author lyy
|
||||
* Date: 2019-09-18
|
||||
*/
|
||||
public interface IThreadTaskObserver {
|
||||
|
||||
|
||||
@@ -34,8 +34,8 @@ import java.util.List;
|
||||
/**
|
||||
* 组件工具,用于跨组件创建对应的工具类
|
||||
*
|
||||
* @Author lyy
|
||||
* @Date 2019-09-23
|
||||
* @author lyy
|
||||
* Date: 2019-09-23
|
||||
*/
|
||||
public class ComponentUtil {
|
||||
public static final int COMPONENT_TYPE_HTTP = 1;
|
||||
|
||||
Reference in New Issue
Block a user