#0 2.0.2 bugfix

This commit is contained in:
LinYYY
2024-10-18 15:56:14 +08:00
parent c159362c20
commit 46241054f7
3 changed files with 5 additions and 2 deletions

View File

@@ -32,6 +32,8 @@ README: [English](https://github.com/YummyLau/ComponentPlugin/blob/master/README
- 暂时取消pin工程支持能力
* 2023/03/01
* 发布功能优化
* 2024/10/18
* 修复发布SDK Task失败问题
### 为什么要使用

View File

@@ -3,7 +3,7 @@ apply plugin: 'maven-publish'
group = 'com.effective.plugins'
archivesBaseName = 'component'
version = '1.0.10'
version = '1.0.11'
// Because the components are created only during the afterEvaluate phase, you must
// configure your publications using the afterEvaluate() lifecycle method.

View File

@@ -7,6 +7,7 @@ import com.plugin.component.extension.option.sdk.PublicationOption
import com.plugin.component.utils.JarUtil
import com.plugin.component.utils.PublicationUtil
import org.gradle.api.DefaultTask
import org.gradle.api.tasks.Internal
import org.gradle.api.tasks.TaskAction
/**
@@ -14,7 +15,7 @@ import org.gradle.api.tasks.TaskAction
* created by yummylau 2019/08/09
*/
class CompileSdkTask extends DefaultTask {
@Internal
PublicationOption publication
@TaskAction