Toggle navigation
Toggle navigation
此项目
正在载入...
Sign in
xuning
/
livekitAndroidXuningTest
转到一个项目
Toggle navigation
项目
群组
代码片段
帮助
Toggle navigation pinning
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Authored by
David Liu
2021-04-29 14:13:50 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
247cf35f581522251a3634238c1bf15adcd63c80
247cf35f
1 parent
661e194e
close and release publication plugin
隐藏空白字符变更
内嵌
并排对比
正在显示
2 个修改的文件
包含
10 行增加
和
6 行删除
build.gradle
gradle/gradle-mvn-push.gradle
build.gradle
查看文件 @
247cf35
...
...
@@ -16,14 +16,12 @@ buildscript {
classpath
"org.jetbrains.kotlin:kotlin-serialization:$kotlin_version"
classpath
"org.jetbrains.dokka:dokka-gradle-plugin:$dokka_version"
classpath
'com.google.protobuf:protobuf-gradle-plugin:0.8.15'
classpath
"io.codearte.gradle.nexus:gradle-nexus-staging-plugin:0.30.0"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
plugins
{
id
"org.jetbrains.dokka"
version
"$dokka_version"
}
apply
plugin:
'io.codearte.nexus-staging'
allprojects
{
repositories
{
...
...
@@ -38,6 +36,12 @@ task clean(type: Delete) {
delete
rootProject
.
buildDir
}
nexusStaging
{
serverUrl
=
"https://s01.oss.sonatype.org/service/local/"
packageGroup
=
GROUP
stagingProfileId
=
"16b57cbf143daa"
}
ext
{
androidSdk
=
[
compileVersion:
29
,
...
...
gradle/gradle-mvn-push.gradle
查看文件 @
247cf35
...
...
@@ -40,11 +40,11 @@ def getSnapshotRepositoryUrl() {
}
def
getRepositoryUsername
()
{
return
hasProperty
(
'
NEXUS_USERNAME
'
)
?
NEXUS_USERNAME
:
""
return
hasProperty
(
'
nexusUsername
'
)
?
NEXUS_USERNAME
:
""
}
def
getRepositoryPassword
()
{
return
hasProperty
(
'
NEXUS_PASSWORD
'
)
?
NEXUS_PASSWORD
:
""
return
hasProperty
(
'
nexusPassword
'
)
?
NEXUS_PASSWORD
:
""
}
def
configurePom
(
pom
)
{
...
...
请
注册
或
登录
后发表评论