Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
com.ccwangluo.accelerator
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
sheteng
com.ccwangluo.accelerator
Commits
efc1b6a7
Commit
efc1b6a7
authored
Jan 11, 2020
by
Max Lv
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix the plugin build script
parent
00411646
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
14 deletions
+7
-14
plugin/CHANGES.md
plugin/CHANGES.md
+2
-0
plugin/build.gradle
plugin/build.gradle
+3
-12
plugin/gradle.properties
plugin/gradle.properties
+2
-2
No files found.
plugin/CHANGES.md
View file @
efc1b6a7
*
1.3.3:
*
Fix a build script issue.
*
1.3.2:
*
Fix first key-value pair disappearing with null value. (#2391)
*
Dependency updates:
...
...
plugin/build.gradle
View file @
efc1b6a7
...
...
@@ -3,16 +3,6 @@ apply plugin: 'kotlin-android'
apply
plugin:
'kotlin-android-extensions'
apply
plugin:
'com.vanniktech.maven.publish'
@SuppressWarnings
(
"GroovyUnusedDeclaration"
)
def
getRepositoryUsername
()
{
return
hasProperty
(
'NEXUS_USERNAME'
)
?
NEXUS_USERNAME
:
""
}
@SuppressWarnings
(
"GroovyUnusedDeclaration"
)
def
getRepositoryPassword
()
{
return
hasProperty
(
'NEXUS_PASSWORD'
)
?
NEXUS_PASSWORD
:
""
}
android
{
compileSdkVersion
rootProject
.
compileSdkVersion
...
...
@@ -44,12 +34,13 @@ androidExtensions {
}
mavenPublish
{
targets
{
uploadArchives
{
releaseRepositoryUrl
=
"https://oss.sonatype.org/service/local/staging/deploy/maven2/"
snapshotRepositoryUrl
=
"https://oss.sonatype.org/content/repositories/snapshots/"
repositoryUsername
=
getRepositoryUsername
()
repositoryPassword
=
getRepositoryPassword
()
repositoryUsername
=
findProperty
(
'NEXUS_USERNAME'
)
?:
''
repositoryPassword
=
findProperty
(
'NEXUS_PASSWORD'
)
?:
''
}
}
}
...
...
plugin/gradle.properties
View file @
efc1b6a7
GROUP
=
com.github.shadowsocks
VERSION_NAME
=
1.3.
2
VERSION_CODE
=
1
2
VERSION_NAME
=
1.3.
3
VERSION_CODE
=
1
3
POM_ARTIFACT_ID
=
plugin
POM_NAME
=
Shadowsocks Plugin
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment