mirror of
https://github.com/HighCapable/SweetDependency.git
synced 2025-09-08 03:24:29 +08:00
Compare commits
42 Commits
Author | SHA1 | Date | |
---|---|---|---|
16f8422424
|
|||
df85b8b8eb
|
|||
b4b3511c16
|
|||
040f619413
|
|||
46786f765b
|
|||
47055fd724
|
|||
1292f727dc
|
|||
bfb97905cc
|
|||
fd44cdff0f
|
|||
cd984201dc
|
|||
967e24889d
|
|||
12ff773c54
|
|||
5b353269ab
|
|||
a317610884
|
|||
36cc89a0ea
|
|||
38a93760b7
|
|||
2cbf00e997
|
|||
b93bca20dd
|
|||
2c58843942
|
|||
e24fe8d9cb
|
|||
7635ded918
|
|||
8528873fad
|
|||
e6286d4fd0
|
|||
eb5aeb4449
|
|||
258f559a9c
|
|||
69da68e1e2
|
|||
6cc079bcb1
|
|||
005c1b173f
|
|||
982e574e35
|
|||
4452afa408
|
|||
4e01ddacc3
|
|||
0ea6807231
|
|||
6834ea84da
|
|||
72d6263eaf
|
|||
47a59ae8c7
|
|||
c6d6de94d6
|
|||
a0279171d2
|
|||
e5229e8cb0
|
|||
bce37d80bf
|
|||
12713006a5
|
|||
845cc2c6d7
|
|||
c525a720f2
|
@@ -10,6 +10,24 @@ ktlint_standard_argument-list-wrapping = disabled
|
|||||||
ktlint_standard_parameter-list-wrapping = disabled
|
ktlint_standard_parameter-list-wrapping = disabled
|
||||||
ktlint_standard_trailing-comma-on-declaration-site = disabled
|
ktlint_standard_trailing-comma-on-declaration-site = disabled
|
||||||
ktlint_function_signature_body_expression_wrapping = multiline
|
ktlint_function_signature_body_expression_wrapping = multiline
|
||||||
|
ktlint_standard_string-template-indent = disabled
|
||||||
|
ktlint_standard_function-signature = disabled
|
||||||
|
ktlint_standard_trailing-comma-on-call-site = disabled
|
||||||
|
ktlint_standard_multiline-expression-wrapping = disabled
|
||||||
|
ktlint_standard_no-empty-first-line-in-class-body = disabled
|
||||||
|
ktlint_standard_if-else-wrapping = disabled
|
||||||
|
ktlint_standard_if-else-bracing = disabled
|
||||||
|
ktlint_standard_statement-wrapping = disabled
|
||||||
|
ktlint_standard_blank-line-before-declaration = disabled
|
||||||
|
ktlint_standard_no-empty-file = disabled
|
||||||
|
ktlint_standard_property-naming = disabled
|
||||||
|
ktlint_standard_function-naming = disabled
|
||||||
|
ktlint_standard_chain-method-continuation = disabled
|
||||||
|
ktlint_standard_class-signature = disabled
|
||||||
|
ktlint_standard_condition-wrapping = disabled
|
||||||
|
ktlint_standard_class-signature = disabled
|
||||||
|
ktlint_standard_no-trailing-spaces = disabled
|
||||||
|
ktlint_standard_multiline-loop = disabled
|
||||||
ij_continuation_indent_size = 2
|
ij_continuation_indent_size = 2
|
||||||
indent_size = 4
|
indent_size = 4
|
||||||
indent_style = space
|
indent_style = space
|
||||||
|
115
.gitignore
vendored
115
.gitignore
vendored
@@ -1,13 +1,110 @@
|
|||||||
|
## Fully .gtignore for IntelliJ, Android Studio and Gradle based Java projects
|
||||||
|
## References:
|
||||||
|
## - https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
|
||||||
|
## - https://github.com/android/platform-samples/blob/main/.gitignore
|
||||||
|
|
||||||
|
# User-specific stuff
|
||||||
|
.idea/**/workspace.xml
|
||||||
|
.idea/**/tasks.xml
|
||||||
|
.idea/**/usage.statistics.xml
|
||||||
|
.idea/**/dictionaries
|
||||||
|
.idea/**/shelf
|
||||||
|
|
||||||
|
# AWS User-specific
|
||||||
|
.idea/**/aws.xml
|
||||||
|
|
||||||
|
# Generated files
|
||||||
|
.idea/**/contentModel.xml
|
||||||
|
|
||||||
|
# Sensitive or high-churn files
|
||||||
|
.idea/**/dataSources/
|
||||||
|
.idea/**/dataSources.ids
|
||||||
|
.idea/**/dataSources.local.xml
|
||||||
|
.idea/**/sqlDataSources.xml
|
||||||
|
.idea/**/dynamic.xml
|
||||||
|
.idea/**/uiDesigner.xml
|
||||||
|
.idea/**/dbnavigator.xml
|
||||||
|
|
||||||
|
# Gradle
|
||||||
|
.idea/**/gradle.xml
|
||||||
|
.idea/**/libraries
|
||||||
|
|
||||||
|
# Gradle and Maven with auto-import
|
||||||
|
.idea/.name
|
||||||
|
.idea/artifacts
|
||||||
|
.idea/compiler.xml
|
||||||
|
.idea/jarRepositories.xml
|
||||||
|
.idea/modules.xml
|
||||||
|
.idea/*.iml
|
||||||
|
.idea/modules
|
||||||
|
.idea/caches
|
||||||
|
.idea/material_theme**
|
||||||
|
.idea/other.xml
|
||||||
*.iml
|
*.iml
|
||||||
.gradle
|
*.ipr
|
||||||
/.idea/caches
|
|
||||||
/.idea/libraries
|
# Kotlin
|
||||||
/.idea/modules.xml
|
.kotlin
|
||||||
/.idea/workspace.xml
|
|
||||||
/.idea/navEditor.xml
|
# Misc
|
||||||
/.idea/assetWizardSettings.xml
|
.idea/misc.xml
|
||||||
.DS_Store
|
|
||||||
/build
|
# CMake
|
||||||
|
cmake-build-*/
|
||||||
|
|
||||||
|
# Mongo Explorer plugin
|
||||||
|
.idea/**/mongoSettings.xml
|
||||||
|
|
||||||
|
# File-based project format
|
||||||
|
*.iws
|
||||||
|
|
||||||
|
# IntelliJ
|
||||||
|
out/
|
||||||
|
|
||||||
|
# mpeltonen/sbt-idea plugin
|
||||||
|
.idea_modules/
|
||||||
|
|
||||||
|
# JIRA plugin
|
||||||
|
atlassian-ide-plugin.xml
|
||||||
|
|
||||||
|
# Cursive Clojure plugin
|
||||||
|
.idea/replstate.xml
|
||||||
|
|
||||||
|
# SonarLint plugin
|
||||||
|
.idea/sonarlint/
|
||||||
|
|
||||||
|
# Crashlytics plugin (for Android Studio and IntelliJ)
|
||||||
|
com_crashlytics_export_strings.xml
|
||||||
|
crashlytics.properties
|
||||||
|
crashlytics-build.properties
|
||||||
|
fabric.properties
|
||||||
|
|
||||||
|
# Editor-based Rest Client
|
||||||
|
.idea/httpRequests
|
||||||
|
|
||||||
|
# Android studio 3.1+ serialized cache file
|
||||||
|
.idea/caches/build_file_checksums.ser
|
||||||
|
|
||||||
|
# Android studio 3.1+ additional
|
||||||
|
.idea/deployment*.xml
|
||||||
|
.idea/assetWizardSettings.xml
|
||||||
|
.idea/androidTestResultsUserPreferences.xml
|
||||||
|
|
||||||
|
# Android projects
|
||||||
|
**/local.properties
|
||||||
/captures
|
/captures
|
||||||
.externalNativeBuild
|
.externalNativeBuild
|
||||||
.cxx
|
.cxx
|
||||||
|
|
||||||
|
# Gradle projects
|
||||||
|
.gradle
|
||||||
|
build/
|
||||||
|
|
||||||
|
# Mkdocs temporary serving folder
|
||||||
|
docs-gen
|
||||||
|
site
|
||||||
|
*.bak
|
||||||
|
.idea/appInsightsSettings.xml
|
||||||
|
|
||||||
|
# Mac OS
|
||||||
|
.DS_Store
|
10
.idea/.gitignore
generated
vendored
10
.idea/.gitignore
generated
vendored
@@ -1,10 +0,0 @@
|
|||||||
# Default ignored files
|
|
||||||
/shelf/
|
|
||||||
/workspace.xml
|
|
||||||
/gradle.xml
|
|
||||||
/misc.xml
|
|
||||||
# Editor-based HTTP Client requests
|
|
||||||
/httpRequests/
|
|
||||||
# Datasource local storage ignored files
|
|
||||||
/dataSources/
|
|
||||||
/dataSources.local.xml
|
|
6
.idea/AndroidProjectSystem.xml
generated
Normal file
6
.idea/AndroidProjectSystem.xml
generated
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<project version="4">
|
||||||
|
<component name="AndroidProjectSystem">
|
||||||
|
<option name="providerId" value="com.android.tools.idea.GradleProjectSystem" />
|
||||||
|
</component>
|
||||||
|
</project>
|
12
.idea/compiler.xml
generated
12
.idea/compiler.xml
generated
@@ -1,12 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<project version="4">
|
|
||||||
<component name="CompilerConfiguration">
|
|
||||||
<bytecodeTargetLevel target="17">
|
|
||||||
<module name="SweetDependency.buildSrc" target="17" />
|
|
||||||
<module name="SweetDependency.buildSrc.main" target="17" />
|
|
||||||
<module name="SweetDependency.buildSrc.test" target="17" />
|
|
||||||
<module name="SweetDependency.main" target="17" />
|
|
||||||
<module name="SweetDependency.test" target="17" />
|
|
||||||
</bytecodeTargetLevel>
|
|
||||||
</component>
|
|
||||||
</project>
|
|
1
.idea/inspectionProfiles/Project_Default.xml
generated
1
.idea/inspectionProfiles/Project_Default.xml
generated
@@ -1,6 +1,7 @@
|
|||||||
<component name="InspectionProjectProfileManager">
|
<component name="InspectionProjectProfileManager">
|
||||||
<profile version="1.0">
|
<profile version="1.0">
|
||||||
<option name="myName" value="Project Default" />
|
<option name="myName" value="Project Default" />
|
||||||
|
<inspection_tool class="CheckImageSize" enabled="false" level="WARNING" enabled_by_default="false" />
|
||||||
<inspection_tool class="GrazieInspection" enabled="false" level="GRAMMAR_ERROR" enabled_by_default="false" />
|
<inspection_tool class="GrazieInspection" enabled="false" level="GRAMMAR_ERROR" enabled_by_default="false" />
|
||||||
<inspection_tool class="HttpUrlsUsage" enabled="false" level="WEAK WARNING" enabled_by_default="false" />
|
<inspection_tool class="HttpUrlsUsage" enabled="false" level="WEAK WARNING" enabled_by_default="false" />
|
||||||
<inspection_tool class="SpellCheckingInspection" enabled="false" level="TYPO" enabled_by_default="false">
|
<inspection_tool class="SpellCheckingInspection" enabled="false" level="TYPO" enabled_by_default="false">
|
||||||
|
20
.idea/jarRepositories.xml
generated
20
.idea/jarRepositories.xml
generated
@@ -1,20 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<project version="4">
|
|
||||||
<component name="RemoteRepositoriesConfiguration">
|
|
||||||
<remote-repository>
|
|
||||||
<option name="id" value="central" />
|
|
||||||
<option name="name" value="Maven Central repository" />
|
|
||||||
<option name="url" value="https://repo1.maven.org/maven2" />
|
|
||||||
</remote-repository>
|
|
||||||
<remote-repository>
|
|
||||||
<option name="id" value="jboss.community" />
|
|
||||||
<option name="name" value="JBoss Community repository" />
|
|
||||||
<option name="url" value="https://repository.jboss.org/nexus/content/repositories/public/" />
|
|
||||||
</remote-repository>
|
|
||||||
<remote-repository>
|
|
||||||
<option name="id" value="MavenRepo" />
|
|
||||||
<option name="name" value="MavenRepo" />
|
|
||||||
<option name="url" value="https://repo.maven.apache.org/maven2/" />
|
|
||||||
</remote-repository>
|
|
||||||
</component>
|
|
||||||
</project>
|
|
2
.idea/kotlinc.xml
generated
2
.idea/kotlinc.xml
generated
@@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<project version="4">
|
<project version="4">
|
||||||
<component name="KotlinJpsPluginSettings">
|
<component name="KotlinJpsPluginSettings">
|
||||||
<option name="version" value="1.9.20" />
|
<option name="version" value="2.2.10" />
|
||||||
</component>
|
</component>
|
||||||
</project>
|
</project>
|
7
.idea/ktlint-plugin.xml
generated
Normal file
7
.idea/ktlint-plugin.xml
generated
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<project version="4">
|
||||||
|
<component name="KtLint plugin">
|
||||||
|
<ktlintMode>MANUAL</ktlintMode>
|
||||||
|
<formatOnSave>false</formatOnSave>
|
||||||
|
</component>
|
||||||
|
</project>
|
6
.idea/markdown.xml
generated
Normal file
6
.idea/markdown.xml
generated
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<project version="4">
|
||||||
|
<component name="MarkdownSettings">
|
||||||
|
<option name="showProblemsInCodeBlocks" value="false" />
|
||||||
|
</component>
|
||||||
|
</project>
|
124
.idea/uiDesigner.xml
generated
124
.idea/uiDesigner.xml
generated
@@ -1,124 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<project version="4">
|
|
||||||
<component name="Palette2">
|
|
||||||
<group name="Swing">
|
|
||||||
<item class="com.intellij.uiDesigner.HSpacer" tooltip-text="Horizontal Spacer" icon="/com/intellij/uiDesigner/icons/hspacer.svg" removable="false" auto-create-binding="false" can-attach-label="false">
|
|
||||||
<default-constraints vsize-policy="1" hsize-policy="6" anchor="0" fill="1" />
|
|
||||||
</item>
|
|
||||||
<item class="com.intellij.uiDesigner.VSpacer" tooltip-text="Vertical Spacer" icon="/com/intellij/uiDesigner/icons/vspacer.svg" removable="false" auto-create-binding="false" can-attach-label="false">
|
|
||||||
<default-constraints vsize-policy="6" hsize-policy="1" anchor="0" fill="2" />
|
|
||||||
</item>
|
|
||||||
<item class="javax.swing.JPanel" icon="/com/intellij/uiDesigner/icons/panel.svg" removable="false" auto-create-binding="false" can-attach-label="false">
|
|
||||||
<default-constraints vsize-policy="3" hsize-policy="3" anchor="0" fill="3" />
|
|
||||||
</item>
|
|
||||||
<item class="javax.swing.JScrollPane" icon="/com/intellij/uiDesigner/icons/scrollPane.svg" removable="false" auto-create-binding="false" can-attach-label="true">
|
|
||||||
<default-constraints vsize-policy="7" hsize-policy="7" anchor="0" fill="3" />
|
|
||||||
</item>
|
|
||||||
<item class="javax.swing.JButton" icon="/com/intellij/uiDesigner/icons/button.svg" removable="false" auto-create-binding="true" can-attach-label="false">
|
|
||||||
<default-constraints vsize-policy="0" hsize-policy="3" anchor="0" fill="1" />
|
|
||||||
<initial-values>
|
|
||||||
<property name="text" value="Button" />
|
|
||||||
</initial-values>
|
|
||||||
</item>
|
|
||||||
<item class="javax.swing.JRadioButton" icon="/com/intellij/uiDesigner/icons/radioButton.svg" removable="false" auto-create-binding="true" can-attach-label="false">
|
|
||||||
<default-constraints vsize-policy="0" hsize-policy="3" anchor="8" fill="0" />
|
|
||||||
<initial-values>
|
|
||||||
<property name="text" value="RadioButton" />
|
|
||||||
</initial-values>
|
|
||||||
</item>
|
|
||||||
<item class="javax.swing.JCheckBox" icon="/com/intellij/uiDesigner/icons/checkBox.svg" removable="false" auto-create-binding="true" can-attach-label="false">
|
|
||||||
<default-constraints vsize-policy="0" hsize-policy="3" anchor="8" fill="0" />
|
|
||||||
<initial-values>
|
|
||||||
<property name="text" value="CheckBox" />
|
|
||||||
</initial-values>
|
|
||||||
</item>
|
|
||||||
<item class="javax.swing.JLabel" icon="/com/intellij/uiDesigner/icons/label.svg" removable="false" auto-create-binding="false" can-attach-label="false">
|
|
||||||
<default-constraints vsize-policy="0" hsize-policy="0" anchor="8" fill="0" />
|
|
||||||
<initial-values>
|
|
||||||
<property name="text" value="Label" />
|
|
||||||
</initial-values>
|
|
||||||
</item>
|
|
||||||
<item class="javax.swing.JTextField" icon="/com/intellij/uiDesigner/icons/textField.svg" removable="false" auto-create-binding="true" can-attach-label="true">
|
|
||||||
<default-constraints vsize-policy="0" hsize-policy="6" anchor="8" fill="1">
|
|
||||||
<preferred-size width="150" height="-1" />
|
|
||||||
</default-constraints>
|
|
||||||
</item>
|
|
||||||
<item class="javax.swing.JPasswordField" icon="/com/intellij/uiDesigner/icons/passwordField.svg" removable="false" auto-create-binding="true" can-attach-label="true">
|
|
||||||
<default-constraints vsize-policy="0" hsize-policy="6" anchor="8" fill="1">
|
|
||||||
<preferred-size width="150" height="-1" />
|
|
||||||
</default-constraints>
|
|
||||||
</item>
|
|
||||||
<item class="javax.swing.JFormattedTextField" icon="/com/intellij/uiDesigner/icons/formattedTextField.svg" removable="false" auto-create-binding="true" can-attach-label="true">
|
|
||||||
<default-constraints vsize-policy="0" hsize-policy="6" anchor="8" fill="1">
|
|
||||||
<preferred-size width="150" height="-1" />
|
|
||||||
</default-constraints>
|
|
||||||
</item>
|
|
||||||
<item class="javax.swing.JTextArea" icon="/com/intellij/uiDesigner/icons/textArea.svg" removable="false" auto-create-binding="true" can-attach-label="true">
|
|
||||||
<default-constraints vsize-policy="6" hsize-policy="6" anchor="0" fill="3">
|
|
||||||
<preferred-size width="150" height="50" />
|
|
||||||
</default-constraints>
|
|
||||||
</item>
|
|
||||||
<item class="javax.swing.JTextPane" icon="/com/intellij/uiDesigner/icons/textPane.svg" removable="false" auto-create-binding="true" can-attach-label="true">
|
|
||||||
<default-constraints vsize-policy="6" hsize-policy="6" anchor="0" fill="3">
|
|
||||||
<preferred-size width="150" height="50" />
|
|
||||||
</default-constraints>
|
|
||||||
</item>
|
|
||||||
<item class="javax.swing.JEditorPane" icon="/com/intellij/uiDesigner/icons/editorPane.svg" removable="false" auto-create-binding="true" can-attach-label="true">
|
|
||||||
<default-constraints vsize-policy="6" hsize-policy="6" anchor="0" fill="3">
|
|
||||||
<preferred-size width="150" height="50" />
|
|
||||||
</default-constraints>
|
|
||||||
</item>
|
|
||||||
<item class="javax.swing.JComboBox" icon="/com/intellij/uiDesigner/icons/comboBox.svg" removable="false" auto-create-binding="true" can-attach-label="true">
|
|
||||||
<default-constraints vsize-policy="0" hsize-policy="2" anchor="8" fill="1" />
|
|
||||||
</item>
|
|
||||||
<item class="javax.swing.JTable" icon="/com/intellij/uiDesigner/icons/table.svg" removable="false" auto-create-binding="true" can-attach-label="false">
|
|
||||||
<default-constraints vsize-policy="6" hsize-policy="6" anchor="0" fill="3">
|
|
||||||
<preferred-size width="150" height="50" />
|
|
||||||
</default-constraints>
|
|
||||||
</item>
|
|
||||||
<item class="javax.swing.JList" icon="/com/intellij/uiDesigner/icons/list.svg" removable="false" auto-create-binding="true" can-attach-label="false">
|
|
||||||
<default-constraints vsize-policy="6" hsize-policy="2" anchor="0" fill="3">
|
|
||||||
<preferred-size width="150" height="50" />
|
|
||||||
</default-constraints>
|
|
||||||
</item>
|
|
||||||
<item class="javax.swing.JTree" icon="/com/intellij/uiDesigner/icons/tree.svg" removable="false" auto-create-binding="true" can-attach-label="false">
|
|
||||||
<default-constraints vsize-policy="6" hsize-policy="6" anchor="0" fill="3">
|
|
||||||
<preferred-size width="150" height="50" />
|
|
||||||
</default-constraints>
|
|
||||||
</item>
|
|
||||||
<item class="javax.swing.JTabbedPane" icon="/com/intellij/uiDesigner/icons/tabbedPane.svg" removable="false" auto-create-binding="true" can-attach-label="false">
|
|
||||||
<default-constraints vsize-policy="3" hsize-policy="3" anchor="0" fill="3">
|
|
||||||
<preferred-size width="200" height="200" />
|
|
||||||
</default-constraints>
|
|
||||||
</item>
|
|
||||||
<item class="javax.swing.JSplitPane" icon="/com/intellij/uiDesigner/icons/splitPane.svg" removable="false" auto-create-binding="false" can-attach-label="false">
|
|
||||||
<default-constraints vsize-policy="3" hsize-policy="3" anchor="0" fill="3">
|
|
||||||
<preferred-size width="200" height="200" />
|
|
||||||
</default-constraints>
|
|
||||||
</item>
|
|
||||||
<item class="javax.swing.JSpinner" icon="/com/intellij/uiDesigner/icons/spinner.svg" removable="false" auto-create-binding="true" can-attach-label="true">
|
|
||||||
<default-constraints vsize-policy="0" hsize-policy="6" anchor="8" fill="1" />
|
|
||||||
</item>
|
|
||||||
<item class="javax.swing.JSlider" icon="/com/intellij/uiDesigner/icons/slider.svg" removable="false" auto-create-binding="true" can-attach-label="false">
|
|
||||||
<default-constraints vsize-policy="0" hsize-policy="6" anchor="8" fill="1" />
|
|
||||||
</item>
|
|
||||||
<item class="javax.swing.JSeparator" icon="/com/intellij/uiDesigner/icons/separator.svg" removable="false" auto-create-binding="false" can-attach-label="false">
|
|
||||||
<default-constraints vsize-policy="6" hsize-policy="6" anchor="0" fill="3" />
|
|
||||||
</item>
|
|
||||||
<item class="javax.swing.JProgressBar" icon="/com/intellij/uiDesigner/icons/progressbar.svg" removable="false" auto-create-binding="true" can-attach-label="false">
|
|
||||||
<default-constraints vsize-policy="0" hsize-policy="6" anchor="0" fill="1" />
|
|
||||||
</item>
|
|
||||||
<item class="javax.swing.JToolBar" icon="/com/intellij/uiDesigner/icons/toolbar.svg" removable="false" auto-create-binding="false" can-attach-label="false">
|
|
||||||
<default-constraints vsize-policy="0" hsize-policy="6" anchor="0" fill="1">
|
|
||||||
<preferred-size width="-1" height="20" />
|
|
||||||
</default-constraints>
|
|
||||||
</item>
|
|
||||||
<item class="javax.swing.JToolBar$Separator" icon="/com/intellij/uiDesigner/icons/toolbarSeparator.svg" removable="false" auto-create-binding="false" can-attach-label="false">
|
|
||||||
<default-constraints vsize-policy="0" hsize-policy="0" anchor="0" fill="1" />
|
|
||||||
</item>
|
|
||||||
<item class="javax.swing.JScrollBar" icon="/com/intellij/uiDesigner/icons/scrollbar.svg" removable="false" auto-create-binding="true" can-attach-label="false">
|
|
||||||
<default-constraints vsize-policy="6" hsize-policy="0" anchor="0" fill="2" />
|
|
||||||
</item>
|
|
||||||
</group>
|
|
||||||
</component>
|
|
||||||
</project>
|
|
@@ -1,14 +1,15 @@
|
|||||||
# Sweet Dependency
|
# Sweet Dependency
|
||||||
|
|
||||||
[](https://github.com/HighCapable/SweetDependency/blob/master/LICENSE)
|
[](https://github.com/HighCapable/SweetDependency/blob/master/LICENSE)
|
||||||
[](https://github.com/HighCapable/SweetDependency/releases)
|
[](https://github.com/HighCapable/SweetDependency/releases)
|
||||||
[](https://t.me/HighCapable_Dev)
|
[](https://t.me/HighCapable_Dev)
|
||||||
|
[](https://qm.qq.com/cgi-bin/qm/qr?k=Pnsc5RY6N2mBKFjOLPiYldbAbprAU3V7&jump_from=webapi&authKey=X5EsOVzLXt1dRunge8ryTxDRrh9/IiW1Pua75eDLh9RE3KXE+bwXIYF5cWri/9lf)
|
||||||
|
|
||||||
<img src="https://github.com/HighCapable/SweetDependency/blob/master/img-src/icon.png?raw=true" width = "100" height = "100" alt="LOGO"/>
|
<img src="img-src/icon.png" width = "100" height = "100" alt="LOGO"/>
|
||||||
|
|
||||||
一个轻松自动装配和管理依赖的 Gradle 插件。
|
一个轻松自动装配和管理依赖的 Gradle 插件。
|
||||||
|
|
||||||
[English](https://github.com/HighCapable/SweetDependency/blob/master/README.md) | 简体中文
|
[English](README.md) | 简体中文
|
||||||
|
|
||||||
| <img src="https://github.com/HighCapable/.github/blob/main/img-src/logo.jpg?raw=true" width = "30" height = "30" alt="LOGO"/> | [HighCapable](https://github.com/HighCapable) |
|
| <img src="https://github.com/HighCapable/.github/blob/main/img-src/logo.jpg?raw=true" width = "30" height = "30" alt="LOGO"/> | [HighCapable](https://github.com/HighCapable) |
|
||||||
|-------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------|
|
|-------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------|
|
||||||
@@ -57,11 +58,11 @@
|
|||||||
|
|
||||||
## 开始使用
|
## 开始使用
|
||||||
|
|
||||||
- [点击这里](https://github.com/HighCapable/SweetDependency/blob/master/docs/guide-zh-CN.md) 查看使用文档
|
- [点击这里](docs/guide-zh-CN.md) 查看使用文档
|
||||||
|
|
||||||
## 更新日志
|
## 更新日志
|
||||||
|
|
||||||
- [点击这里](https://github.com/HighCapable/SweetDependency/blob/master/docs/changelog-zh-CN.md) 查看历史更新日志
|
- [点击这里](docs/changelog-zh-CN.md) 查看历史更新日志
|
||||||
|
|
||||||
## 项目推广
|
## 项目推广
|
||||||
|
|
||||||
@@ -69,11 +70,14 @@
|
|||||||
|
|
||||||
本项目同样使用了 **SweetProperty**。
|
本项目同样使用了 **SweetProperty**。
|
||||||
|
|
||||||
## 捐赠支持
|
<!--suppress HtmlDeprecatedAttribute -->
|
||||||
|
<div align="center">
|
||||||
工作不易,无意外情况此项目将继续维护下去,提供更多可能,欢迎打赏。
|
<h2>嘿,还请君留步!👋</h2>
|
||||||
|
<h3>这里有 Android 开发工具、UI 设计、Gradle 插件、Xposed 模块和实用软件等相关项目。</h3>
|
||||||
<img src="https://github.com/fankes/fankes/blob/main/img-src/payment_code.jpg?raw=true" width = "500" alt="Payment Code"/>
|
<h3>如果下方的项目能为你提供帮助,不妨为我点个 star 吧!</h3>
|
||||||
|
<h3>所有项目免费、开源,遵循对应开源许可协议。</h3>
|
||||||
|
<h1><a href="https://github.com/fankes/fankes/blob/main/project-promote/README-zh-CN.md">→ 查看更多关于我的项目,请点击这里 ←</a></h1>
|
||||||
|
</div>
|
||||||
|
|
||||||
## Star History
|
## Star History
|
||||||
|
|
||||||
@@ -86,7 +90,7 @@
|
|||||||
```
|
```
|
||||||
Apache License Version 2.0
|
Apache License Version 2.0
|
||||||
|
|
||||||
Copyright (C) 2019-2023 HighCapable
|
Copyright (C) 2019 HighCapable
|
||||||
|
|
||||||
Licensed under the Apache License, Version 2.0 (the "License");
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
you may not use this file except in compliance with the License.
|
you may not use this file except in compliance with the License.
|
||||||
@@ -101,4 +105,4 @@ See the License for the specific language governing permissions and
|
|||||||
limitations under the License.
|
limitations under the License.
|
||||||
```
|
```
|
||||||
|
|
||||||
版权所有 © 2019-2023 HighCapable
|
版权所有 © 2019 HighCapable
|
28
README.md
28
README.md
@@ -1,14 +1,15 @@
|
|||||||
# Sweet Dependency
|
# Sweet Dependency
|
||||||
|
|
||||||
[](https://github.com/HighCapable/SweetDependency/blob/master/LICENSE)
|
[](https://github.com/HighCapable/SweetDependency/blob/master/LICENSE)
|
||||||
[](https://github.com/HighCapable/SweetDependency/releases)
|
[](https://github.com/HighCapable/SweetDependency/releases)
|
||||||
[](https://t.me/HighCapable_Dev)
|
[](https://t.me/HighCapable_Dev)
|
||||||
|
[](https://qm.qq.com/cgi-bin/qm/qr?k=Pnsc5RY6N2mBKFjOLPiYldbAbprAU3V7&jump_from=webapi&authKey=X5EsOVzLXt1dRunge8ryTxDRrh9/IiW1Pua75eDLh9RE3KXE+bwXIYF5cWri/9lf)
|
||||||
|
|
||||||
<img src="https://github.com/HighCapable/SweetDependency/blob/master/img-src/icon.png?raw=true" width = "100" height = "100" alt="LOGO"/>
|
<img src="img-src/icon.png" width = "100" height = "100" alt="LOGO"/>
|
||||||
|
|
||||||
An easy autowire and manage dependencies Gradle plugin.
|
An easy autowire and manage dependencies Gradle plugin.
|
||||||
|
|
||||||
English | [简体中文](https://github.com/HighCapable/SweetDependency/blob/master/README-zh-CN.md)
|
English | [简体中文](README-zh-CN.md)
|
||||||
|
|
||||||
| <img src="https://github.com/HighCapable/.github/blob/main/img-src/logo.jpg?raw=true" width = "30" height = "30" alt="LOGO"/> | [HighCapable](https://github.com/HighCapable) |
|
| <img src="https://github.com/HighCapable/.github/blob/main/img-src/logo.jpg?raw=true" width = "30" height = "30" alt="LOGO"/> | [HighCapable](https://github.com/HighCapable) |
|
||||||
|-------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------|
|
|-------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------|
|
||||||
@@ -59,11 +60,11 @@ Some functions will be gradually improved following the needs of users.
|
|||||||
|
|
||||||
## Get Started
|
## Get Started
|
||||||
|
|
||||||
- [Click here](https://github.com/HighCapable/SweetDependency/blob/master/docs/guide.md) to view the documentation
|
- [Click here](docs/guide.md) to view the documentation
|
||||||
|
|
||||||
## Changelog
|
## Changelog
|
||||||
|
|
||||||
- [Click here](https://github.com/HighCapable/SweetDependency/blob/master/docs/changelog.md) to view the historical changelog
|
- [Click here](docs/changelog.md) to view the historical changelog
|
||||||
|
|
||||||
## Promotion
|
## Promotion
|
||||||
|
|
||||||
@@ -72,6 +73,15 @@ you can check out the [SweetProperty](https://github.com/HighCapable/SweetProper
|
|||||||
|
|
||||||
This project also uses **SweetProperty**.
|
This project also uses **SweetProperty**.
|
||||||
|
|
||||||
|
<!--suppress HtmlDeprecatedAttribute -->
|
||||||
|
<div align="center">
|
||||||
|
<h2>Hey, please stay! 👋</h2>
|
||||||
|
<h3>Here are related projects such as Android development tools, UI design, Gradle plugins, Xposed Modules and practical software. </h3>
|
||||||
|
<h3>If the project below can help you, please give me a star! </h3>
|
||||||
|
<h3>All projects are free, open source, and follow the corresponding open source license agreement. </h3>
|
||||||
|
<h1><a href="https://github.com/fankes/fankes/blob/main/project-promote/README.md">→ To see more about my projects, please click here ←</a></h1>
|
||||||
|
</div>
|
||||||
|
|
||||||
## Star History
|
## Star History
|
||||||
|
|
||||||

|

|
||||||
@@ -83,7 +93,7 @@ This project also uses **SweetProperty**.
|
|||||||
```
|
```
|
||||||
Apache License Version 2.0
|
Apache License Version 2.0
|
||||||
|
|
||||||
Copyright (C) 2019-2023 HighCapable
|
Copyright (C) 2019 HighCapable
|
||||||
|
|
||||||
Licensed under the Apache License, Version 2.0 (the "License");
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
you may not use this file except in compliance with the License.
|
you may not use this file except in compliance with the License.
|
||||||
@@ -98,4 +108,4 @@ See the License for the specific language governing permissions and
|
|||||||
limitations under the License.
|
limitations under the License.
|
||||||
```
|
```
|
||||||
|
|
||||||
Copyright © 2019-2023 HighCapable
|
Copyright © 2019 HighCapable
|
@@ -1,16 +1,4 @@
|
|||||||
plugins {
|
plugins {
|
||||||
autowire(libs.plugins.kotlin.jvm) apply false
|
autowire(libs.plugins.kotlin.jvm) apply false
|
||||||
}
|
autowire(libs.plugins.maven.publish) apply false
|
||||||
|
|
||||||
allprojects {
|
|
||||||
tasks.withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile>().configureEach {
|
|
||||||
kotlinOptions {
|
|
||||||
jvmTarget = "17"
|
|
||||||
freeCompilerArgs = listOf(
|
|
||||||
"-Xno-param-assertions",
|
|
||||||
"-Xno-call-assertions",
|
|
||||||
"-Xno-receiver-assertions"
|
|
||||||
)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
@@ -1,19 +1,27 @@
|
|||||||
# Project Configuration
|
# Project Configuration
|
||||||
project.name=SweetDependency
|
project.name=SweetDependency
|
||||||
project.description=An easy autowire and manage dependencies Gradle plugin.
|
|
||||||
project.url=https://github.com/HighCapable/SweetDependency
|
project.url=https://github.com/HighCapable/SweetDependency
|
||||||
project.groupName=com.highcapable.sweetdependency
|
project.groupName=com.highcapable.sweetdependency
|
||||||
project.moduleName=sweet-dependency
|
project.moduleName=sweet-dependency
|
||||||
project.version=1.0.4
|
project.version=1.0.4
|
||||||
project.licence.name=Apache License 2.0
|
|
||||||
project.licence.url=https://github.com/HighCapable/SweetDependency/blob/master/LICENSE
|
|
||||||
project.developer.id="0"
|
|
||||||
project.developer.name=fankes
|
|
||||||
project.developer.email=qzmmcn@163.com
|
|
||||||
# Gradle Plugin Configuration
|
# Gradle Plugin Configuration
|
||||||
gradle.plugin.moduleName=${project.groupName}.gradle.plugin
|
gradle.plugin.moduleName=${project.groupName}.gradle.plugin
|
||||||
gradle.plugin.implementationClass=${project.groupName}.plugin.SweetDependencyPlugin
|
gradle.plugin.implementationClass=${project.groupName}.plugin.SweetDependencyPlugin
|
||||||
# Maven Publish Configuration
|
# Maven Publish Configuration
|
||||||
maven.publish.scm.connection=scm:git:git://github.com/HighCapable/SweetDependency.git
|
SONATYPE_HOST=S01
|
||||||
maven.publish.scm.developerConnection=scm:git:ssh://github.com/HighCapable/SweetDependency.git
|
RELEASE_SIGNING_ENABLED=true
|
||||||
maven.publish.scm.url=https://github.com/HighCapable/SweetDependency
|
# Maven POM Configuration
|
||||||
|
POM_NAME=SweetDependency
|
||||||
|
POM_ARTIFACT_ID=sweet-dependency
|
||||||
|
POM_DESCRIPTION=An easy autowire and manage dependencies Gradle plugin.
|
||||||
|
POM_URL=https://github.com/HighCapable/SweetDependency
|
||||||
|
POM_LICENSE_NAME=Apache License 2.0
|
||||||
|
POM_LICENSE_URL=https://github.com/HighCapable/SweetDependency/blob/master/LICENSE
|
||||||
|
POM_LICENSE_DIST=repo
|
||||||
|
POM_SCM_URL=https://github.com/HighCapable/SweetDependency
|
||||||
|
POM_SCM_CONNECTION=scm:git:git://github.com/HighCapable/SweetDependency.git
|
||||||
|
POM_SCM_DEV_CONNECTION=scm:git:ssh://github.com/HighCapable/SweetDependency.git
|
||||||
|
POM_DEVELOPER_ID=0
|
||||||
|
POM_DEVELOPER_NAME=fankes
|
||||||
|
POM_DEVELOPER_EMAIL=qzmmcn@163.com
|
||||||
|
POM_DEVELOPER_URL=https://github.com/fankes
|
@@ -12,24 +12,24 @@ repositories:
|
|||||||
plugins:
|
plugins:
|
||||||
org.jetbrains.kotlin.jvm:
|
org.jetbrains.kotlin.jvm:
|
||||||
alias: kotlin-jvm
|
alias: kotlin-jvm
|
||||||
version: 1.9.20
|
version: 2.2.10
|
||||||
org.jetbrains.kotlin.plugin.serialization:
|
org.jetbrains.kotlin.plugin.serialization:
|
||||||
alias: kotlin-serialization
|
alias: kotlin-serialization
|
||||||
version-ref: kotlin-jvm
|
version-ref: kotlin-jvm
|
||||||
com.vanniktech.maven.publish:
|
com.vanniktech.maven.publish:
|
||||||
alias: maven-publish
|
alias: maven-publish
|
||||||
version: 0.25.3
|
version: 0.34.0
|
||||||
|
|
||||||
libraries:
|
libraries:
|
||||||
org.snakeyaml:
|
org.snakeyaml:
|
||||||
snakeyaml-engine:
|
snakeyaml-engine:
|
||||||
version: 2.7
|
version: 2.10
|
||||||
com.charleskorn.kaml:
|
com.charleskorn.kaml:
|
||||||
kaml:
|
kaml:
|
||||||
version: 0.55.0
|
version: 0.92.0
|
||||||
com.squareup.okhttp3:
|
com.squareup.okhttp3:
|
||||||
okhttp:
|
okhttp:
|
||||||
version: 4.12.0
|
version: 5.1.0
|
||||||
com.squareup:
|
com.squareup:
|
||||||
javapoet:
|
javapoet:
|
||||||
version: 1.13.0
|
version: 1.13.0
|
||||||
|
2
gradle/wrapper/gradle-wrapper.properties
vendored
2
gradle/wrapper/gradle-wrapper.properties
vendored
@@ -1,5 +1,5 @@
|
|||||||
distributionBase=GRADLE_USER_HOME
|
distributionBase=GRADLE_USER_HOME
|
||||||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.3-bin.zip
|
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.3-bin.zip
|
||||||
distributionPath=wrapper/dists
|
distributionPath=wrapper/dists
|
||||||
zipStorePath=wrapper/dists
|
zipStorePath=wrapper/dists
|
||||||
zipStoreBase=GRADLE_USER_HOME
|
zipStoreBase=GRADLE_USER_HOME
|
@@ -8,7 +8,7 @@ pluginManagement {
|
|||||||
}
|
}
|
||||||
plugins {
|
plugins {
|
||||||
id("com.highcapable.sweetdependency") version "1.0.4"
|
id("com.highcapable.sweetdependency") version "1.0.4"
|
||||||
id("com.highcapable.sweetproperty") version "1.0.5"
|
id("com.highcapable.sweetproperty") version "1.0.8"
|
||||||
}
|
}
|
||||||
sweetDependency {
|
sweetDependency {
|
||||||
isEnableVerboseMode = false
|
isEnableVerboseMode = false
|
||||||
@@ -17,6 +17,10 @@ sweetProperty {
|
|||||||
global {
|
global {
|
||||||
sourcesCode {
|
sourcesCode {
|
||||||
className = rootProject.name
|
className = rootProject.name
|
||||||
|
includeKeys(
|
||||||
|
"^project\\..*\$".toRegex(),
|
||||||
|
"^gradle\\..*\$".toRegex()
|
||||||
|
)
|
||||||
isEnableRestrictedAccess = true
|
isEnableRestrictedAccess = true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
2
sweetdependency-gradle-plugin/.gitignore
vendored
2
sweetdependency-gradle-plugin/.gitignore
vendored
@@ -1,2 +0,0 @@
|
|||||||
.gradle
|
|
||||||
build/
|
|
@@ -5,20 +5,25 @@ plugins {
|
|||||||
autowire(libs.plugins.maven.publish)
|
autowire(libs.plugins.maven.publish)
|
||||||
}
|
}
|
||||||
|
|
||||||
allprojects {
|
group = property.project.groupName
|
||||||
group = property.project.groupName
|
version = property.project.version
|
||||||
version = property.project.version
|
|
||||||
}
|
|
||||||
|
|
||||||
java {
|
java {
|
||||||
sourceCompatibility = JavaVersion.VERSION_17
|
sourceCompatibility = JavaVersion.VERSION_21
|
||||||
targetCompatibility = JavaVersion.VERSION_17
|
targetCompatibility = JavaVersion.VERSION_21
|
||||||
withSourcesJar()
|
withSourcesJar()
|
||||||
}
|
}
|
||||||
|
|
||||||
kotlin {
|
kotlin {
|
||||||
jvmToolchain(17)
|
jvmToolchain(21)
|
||||||
sourceSets.all { languageSettings { languageVersion = "2.0" } }
|
sourceSets.all { languageSettings { languageVersion = "2.0" } }
|
||||||
|
compilerOptions {
|
||||||
|
freeCompilerArgs = listOf(
|
||||||
|
"-Xno-param-assertions",
|
||||||
|
"-Xno-call-assertions",
|
||||||
|
"-Xno-receiver-assertions"
|
||||||
|
)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
@@ -37,33 +42,3 @@ gradlePlugin {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
mavenPublishing {
|
|
||||||
coordinates(property.project.groupName, property.project.moduleName, property.project.version)
|
|
||||||
pom {
|
|
||||||
name = property.project.name
|
|
||||||
description = property.project.description
|
|
||||||
url = property.project.url
|
|
||||||
licenses {
|
|
||||||
license {
|
|
||||||
name = property.project.licence.name
|
|
||||||
url = property.project.licence.url
|
|
||||||
distribution = property.project.licence.url
|
|
||||||
}
|
|
||||||
}
|
|
||||||
developers {
|
|
||||||
developer {
|
|
||||||
id = property.project.developer.id
|
|
||||||
name = property.project.developer.name
|
|
||||||
email = property.project.developer.email
|
|
||||||
}
|
|
||||||
}
|
|
||||||
scm {
|
|
||||||
url = property.maven.publish.scm.url
|
|
||||||
connection = property.maven.publish.scm.connection
|
|
||||||
developerConnection = property.maven.publish.scm.developerConnection
|
|
||||||
}
|
|
||||||
}
|
|
||||||
publishToMavenCentral(com.vanniktech.maven.publish.SonatypeHost.S01)
|
|
||||||
signAllPublications()
|
|
||||||
}
|
|
@@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* SweetDependency - An easy autowire and manage dependencies Gradle plugin.
|
* SweetDependency - An easy autowire and manage dependencies Gradle plugin.
|
||||||
* Copyright (C) 2019-2023 HighCapable
|
* Copyright (C) 2019 HighCapable
|
||||||
* https://github.com/HighCapable/SweetDependency
|
* https://github.com/HighCapable/SweetDependency
|
||||||
*
|
*
|
||||||
* Apache License Version 2.0
|
* Apache License Version 2.0
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* SweetDependency - An easy autowire and manage dependencies Gradle plugin.
|
* SweetDependency - An easy autowire and manage dependencies Gradle plugin.
|
||||||
* Copyright (C) 2019-2023 HighCapable
|
* Copyright (C) 2019 HighCapable
|
||||||
* https://github.com/HighCapable/SweetDependency
|
* https://github.com/HighCapable/SweetDependency
|
||||||
*
|
*
|
||||||
* Apache License Version 2.0
|
* Apache License Version 2.0
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* SweetDependency - An easy autowire and manage dependencies Gradle plugin.
|
* SweetDependency - An easy autowire and manage dependencies Gradle plugin.
|
||||||
* Copyright (C) 2019-2023 HighCapable
|
* Copyright (C) 2019 HighCapable
|
||||||
* https://github.com/HighCapable/SweetDependency
|
* https://github.com/HighCapable/SweetDependency
|
||||||
*
|
*
|
||||||
* Apache License Version 2.0
|
* Apache License Version 2.0
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* SweetDependency - An easy autowire and manage dependencies Gradle plugin.
|
* SweetDependency - An easy autowire and manage dependencies Gradle plugin.
|
||||||
* Copyright (C) 2019-2023 HighCapable
|
* Copyright (C) 2019 HighCapable
|
||||||
* https://github.com/HighCapable/SweetDependency
|
* https://github.com/HighCapable/SweetDependency
|
||||||
*
|
*
|
||||||
* Apache License Version 2.0
|
* Apache License Version 2.0
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* SweetDependency - An easy autowire and manage dependencies Gradle plugin.
|
* SweetDependency - An easy autowire and manage dependencies Gradle plugin.
|
||||||
* Copyright (C) 2019-2023 HighCapable
|
* Copyright (C) 2019 HighCapable
|
||||||
* https://github.com/HighCapable/SweetDependency
|
* https://github.com/HighCapable/SweetDependency
|
||||||
*
|
*
|
||||||
* Apache License Version 2.0
|
* Apache License Version 2.0
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* SweetDependency - An easy autowire and manage dependencies Gradle plugin.
|
* SweetDependency - An easy autowire and manage dependencies Gradle plugin.
|
||||||
* Copyright (C) 2019-2023 HighCapable
|
* Copyright (C) 2019 HighCapable
|
||||||
* https://github.com/HighCapable/SweetDependency
|
* https://github.com/HighCapable/SweetDependency
|
||||||
*
|
*
|
||||||
* Apache License Version 2.0
|
* Apache License Version 2.0
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* SweetDependency - An easy autowire and manage dependencies Gradle plugin.
|
* SweetDependency - An easy autowire and manage dependencies Gradle plugin.
|
||||||
* Copyright (C) 2019-2023 HighCapable
|
* Copyright (C) 2019 HighCapable
|
||||||
* https://github.com/HighCapable/SweetDependency
|
* https://github.com/HighCapable/SweetDependency
|
||||||
*
|
*
|
||||||
* Apache License Version 2.0
|
* Apache License Version 2.0
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* SweetDependency - An easy autowire and manage dependencies Gradle plugin.
|
* SweetDependency - An easy autowire and manage dependencies Gradle plugin.
|
||||||
* Copyright (C) 2019-2023 HighCapable
|
* Copyright (C) 2019 HighCapable
|
||||||
* https://github.com/HighCapable/SweetDependency
|
* https://github.com/HighCapable/SweetDependency
|
||||||
*
|
*
|
||||||
* Apache License Version 2.0
|
* Apache License Version 2.0
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* SweetDependency - An easy autowire and manage dependencies Gradle plugin.
|
* SweetDependency - An easy autowire and manage dependencies Gradle plugin.
|
||||||
* Copyright (C) 2019-2023 HighCapable
|
* Copyright (C) 2019 HighCapable
|
||||||
* https://github.com/HighCapable/SweetDependency
|
* https://github.com/HighCapable/SweetDependency
|
||||||
*
|
*
|
||||||
* Apache License Version 2.0
|
* Apache License Version 2.0
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* SweetDependency - An easy autowire and manage dependencies Gradle plugin.
|
* SweetDependency - An easy autowire and manage dependencies Gradle plugin.
|
||||||
* Copyright (C) 2019-2023 HighCapable
|
* Copyright (C) 2019 HighCapable
|
||||||
* https://github.com/HighCapable/SweetDependency
|
* https://github.com/HighCapable/SweetDependency
|
||||||
*
|
*
|
||||||
* Apache License Version 2.0
|
* Apache License Version 2.0
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* SweetDependency - An easy autowire and manage dependencies Gradle plugin.
|
* SweetDependency - An easy autowire and manage dependencies Gradle plugin.
|
||||||
* Copyright (C) 2019-2023 HighCapable
|
* Copyright (C) 2019 HighCapable
|
||||||
* https://github.com/HighCapable/SweetDependency
|
* https://github.com/HighCapable/SweetDependency
|
||||||
*
|
*
|
||||||
* Apache License Version 2.0
|
* Apache License Version 2.0
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* SweetDependency - An easy autowire and manage dependencies Gradle plugin.
|
* SweetDependency - An easy autowire and manage dependencies Gradle plugin.
|
||||||
* Copyright (C) 2019-2023 HighCapable
|
* Copyright (C) 2019 HighCapable
|
||||||
* https://github.com/HighCapable/SweetDependency
|
* https://github.com/HighCapable/SweetDependency
|
||||||
*
|
*
|
||||||
* Apache License Version 2.0
|
* Apache License Version 2.0
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* SweetDependency - An easy autowire and manage dependencies Gradle plugin.
|
* SweetDependency - An easy autowire and manage dependencies Gradle plugin.
|
||||||
* Copyright (C) 2019-2023 HighCapable
|
* Copyright (C) 2019 HighCapable
|
||||||
* https://github.com/HighCapable/SweetDependency
|
* https://github.com/HighCapable/SweetDependency
|
||||||
*
|
*
|
||||||
* Apache License Version 2.0
|
* Apache License Version 2.0
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* SweetDependency - An easy autowire and manage dependencies Gradle plugin.
|
* SweetDependency - An easy autowire and manage dependencies Gradle plugin.
|
||||||
* Copyright (C) 2019-2023 HighCapable
|
* Copyright (C) 2019 HighCapable
|
||||||
* https://github.com/HighCapable/SweetDependency
|
* https://github.com/HighCapable/SweetDependency
|
||||||
*
|
*
|
||||||
* Apache License Version 2.0
|
* Apache License Version 2.0
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* SweetDependency - An easy autowire and manage dependencies Gradle plugin.
|
* SweetDependency - An easy autowire and manage dependencies Gradle plugin.
|
||||||
* Copyright (C) 2019-2023 HighCapable
|
* Copyright (C) 2019 HighCapable
|
||||||
* https://github.com/HighCapable/SweetDependency
|
* https://github.com/HighCapable/SweetDependency
|
||||||
*
|
*
|
||||||
* Apache License Version 2.0
|
* Apache License Version 2.0
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* SweetDependency - An easy autowire and manage dependencies Gradle plugin.
|
* SweetDependency - An easy autowire and manage dependencies Gradle plugin.
|
||||||
* Copyright (C) 2019-2023 HighCapable
|
* Copyright (C) 2019 HighCapable
|
||||||
* https://github.com/HighCapable/SweetDependency
|
* https://github.com/HighCapable/SweetDependency
|
||||||
*
|
*
|
||||||
* Apache License Version 2.0
|
* Apache License Version 2.0
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* SweetDependency - An easy autowire and manage dependencies Gradle plugin.
|
* SweetDependency - An easy autowire and manage dependencies Gradle plugin.
|
||||||
* Copyright (C) 2019-2023 HighCapable
|
* Copyright (C) 2019 HighCapable
|
||||||
* https://github.com/HighCapable/SweetDependency
|
* https://github.com/HighCapable/SweetDependency
|
||||||
*
|
*
|
||||||
* Apache License Version 2.0
|
* Apache License Version 2.0
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* SweetDependency - An easy autowire and manage dependencies Gradle plugin.
|
* SweetDependency - An easy autowire and manage dependencies Gradle plugin.
|
||||||
* Copyright (C) 2019-2023 HighCapable
|
* Copyright (C) 2019 HighCapable
|
||||||
* https://github.com/HighCapable/SweetDependency
|
* https://github.com/HighCapable/SweetDependency
|
||||||
*
|
*
|
||||||
* Apache License Version 2.0
|
* Apache License Version 2.0
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* SweetDependency - An easy autowire and manage dependencies Gradle plugin.
|
* SweetDependency - An easy autowire and manage dependencies Gradle plugin.
|
||||||
* Copyright (C) 2019-2023 HighCapable
|
* Copyright (C) 2019 HighCapable
|
||||||
* https://github.com/HighCapable/SweetDependency
|
* https://github.com/HighCapable/SweetDependency
|
||||||
*
|
*
|
||||||
* Apache License Version 2.0
|
* Apache License Version 2.0
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* SweetDependency - An easy autowire and manage dependencies Gradle plugin.
|
* SweetDependency - An easy autowire and manage dependencies Gradle plugin.
|
||||||
* Copyright (C) 2019-2023 HighCapable
|
* Copyright (C) 2019 HighCapable
|
||||||
* https://github.com/HighCapable/SweetDependency
|
* https://github.com/HighCapable/SweetDependency
|
||||||
*
|
*
|
||||||
* Apache License Version 2.0
|
* Apache License Version 2.0
|
||||||
@@ -144,7 +144,7 @@ internal fun Project.waitForPluginAdded(id: String, action: (Plugin<*>) -> Unit)
|
|||||||
*/
|
*/
|
||||||
internal inline fun <reified T : BaseTask> Project.createTask(group: String, name: String) = runCatching {
|
internal inline fun <reified T : BaseTask> Project.createTask(group: String, name: String) = runCatching {
|
||||||
T::class.java.getConstructor().newInstance().also { instance ->
|
T::class.java.getConstructor().newInstance().also { instance ->
|
||||||
task(name) {
|
tasks.register(name) {
|
||||||
this.group = group
|
this.group = group
|
||||||
outputs.upToDateWhen { false }
|
outputs.upToDateWhen { false }
|
||||||
doFirst { instance.onTransaction() }
|
doFirst { instance.onTransaction() }
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* SweetDependency - An easy autowire and manage dependencies Gradle plugin.
|
* SweetDependency - An easy autowire and manage dependencies Gradle plugin.
|
||||||
* Copyright (C) 2019-2023 HighCapable
|
* Copyright (C) 2019 HighCapable
|
||||||
* https://github.com/HighCapable/SweetDependency
|
* https://github.com/HighCapable/SweetDependency
|
||||||
*
|
*
|
||||||
* Apache License Version 2.0
|
* Apache License Version 2.0
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* SweetDependency - An easy autowire and manage dependencies Gradle plugin.
|
* SweetDependency - An easy autowire and manage dependencies Gradle plugin.
|
||||||
* Copyright (C) 2019-2023 HighCapable
|
* Copyright (C) 2019 HighCapable
|
||||||
* https://github.com/HighCapable/SweetDependency
|
* https://github.com/HighCapable/SweetDependency
|
||||||
*
|
*
|
||||||
* Apache License Version 2.0
|
* Apache License Version 2.0
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* SweetDependency - An easy autowire and manage dependencies Gradle plugin.
|
* SweetDependency - An easy autowire and manage dependencies Gradle plugin.
|
||||||
* Copyright (C) 2019-2023 HighCapable
|
* Copyright (C) 2019 HighCapable
|
||||||
* https://github.com/HighCapable/SweetDependency
|
* https://github.com/HighCapable/SweetDependency
|
||||||
*
|
*
|
||||||
* Apache License Version 2.0
|
* Apache License Version 2.0
|
||||||
@@ -68,6 +68,7 @@ internal data class LibraryDependencyWrapper internal constructor(private val in
|
|||||||
* - [type] 需要为 [LibraryDependencyType.PROJECT] 否则始终为 null
|
* - [type] 需要为 [LibraryDependencyType.PROJECT] 否则始终为 null
|
||||||
* @return [Project] or null
|
* @return [Project] or null
|
||||||
*/
|
*/
|
||||||
|
// FIXME: https://stackoverflow.com/questions/79619019/how-replace-deprecated-getdependencyproject-in-a-backwards-compatible-way
|
||||||
val project get() = runCatching { (instance as? ProjectDependency?)?.dependencyProject }.getOrNull()
|
val project get() = runCatching { (instance as? ProjectDependency?)?.dependencyProject }.getOrNull()
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* SweetDependency - An easy autowire and manage dependencies Gradle plugin.
|
* SweetDependency - An easy autowire and manage dependencies Gradle plugin.
|
||||||
* Copyright (C) 2019-2023 HighCapable
|
* Copyright (C) 2019 HighCapable
|
||||||
* https://github.com/HighCapable/SweetDependency
|
* https://github.com/HighCapable/SweetDependency
|
||||||
*
|
*
|
||||||
* Apache License Version 2.0
|
* Apache License Version 2.0
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* SweetDependency - An easy autowire and manage dependencies Gradle plugin.
|
* SweetDependency - An easy autowire and manage dependencies Gradle plugin.
|
||||||
* Copyright (C) 2019-2023 HighCapable
|
* Copyright (C) 2019 HighCapable
|
||||||
* https://github.com/HighCapable/SweetDependency
|
* https://github.com/HighCapable/SweetDependency
|
||||||
*
|
*
|
||||||
* Apache License Version 2.0
|
* Apache License Version 2.0
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* SweetDependency - An easy autowire and manage dependencies Gradle plugin.
|
* SweetDependency - An easy autowire and manage dependencies Gradle plugin.
|
||||||
* Copyright (C) 2019-2023 HighCapable
|
* Copyright (C) 2019 HighCapable
|
||||||
* https://github.com/HighCapable/SweetDependency
|
* https://github.com/HighCapable/SweetDependency
|
||||||
*
|
*
|
||||||
* Apache License Version 2.0
|
* Apache License Version 2.0
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* SweetDependency - An easy autowire and manage dependencies Gradle plugin.
|
* SweetDependency - An easy autowire and manage dependencies Gradle plugin.
|
||||||
* Copyright (C) 2019-2023 HighCapable
|
* Copyright (C) 2019 HighCapable
|
||||||
* https://github.com/HighCapable/SweetDependency
|
* https://github.com/HighCapable/SweetDependency
|
||||||
*
|
*
|
||||||
* Apache License Version 2.0
|
* Apache License Version 2.0
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* SweetDependency - An easy autowire and manage dependencies Gradle plugin.
|
* SweetDependency - An easy autowire and manage dependencies Gradle plugin.
|
||||||
* Copyright (C) 2019-2023 HighCapable
|
* Copyright (C) 2019 HighCapable
|
||||||
* https://github.com/HighCapable/SweetDependency
|
* https://github.com/HighCapable/SweetDependency
|
||||||
*
|
*
|
||||||
* Apache License Version 2.0
|
* Apache License Version 2.0
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* SweetDependency - An easy autowire and manage dependencies Gradle plugin.
|
* SweetDependency - An easy autowire and manage dependencies Gradle plugin.
|
||||||
* Copyright (C) 2019-2023 HighCapable
|
* Copyright (C) 2019 HighCapable
|
||||||
* https://github.com/HighCapable/SweetDependency
|
* https://github.com/HighCapable/SweetDependency
|
||||||
*
|
*
|
||||||
* Apache License Version 2.0
|
* Apache License Version 2.0
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* SweetDependency - An easy autowire and manage dependencies Gradle plugin.
|
* SweetDependency - An easy autowire and manage dependencies Gradle plugin.
|
||||||
* Copyright (C) 2019-2023 HighCapable
|
* Copyright (C) 2019 HighCapable
|
||||||
* https://github.com/HighCapable/SweetDependency
|
* https://github.com/HighCapable/SweetDependency
|
||||||
*
|
*
|
||||||
* Apache License Version 2.0
|
* Apache License Version 2.0
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* SweetDependency - An easy autowire and manage dependencies Gradle plugin.
|
* SweetDependency - An easy autowire and manage dependencies Gradle plugin.
|
||||||
* Copyright (C) 2019-2023 HighCapable
|
* Copyright (C) 2019 HighCapable
|
||||||
* https://github.com/HighCapable/SweetDependency
|
* https://github.com/HighCapable/SweetDependency
|
||||||
*
|
*
|
||||||
* Apache License Version 2.0
|
* Apache License Version 2.0
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* SweetDependency - An easy autowire and manage dependencies Gradle plugin.
|
* SweetDependency - An easy autowire and manage dependencies Gradle plugin.
|
||||||
* Copyright (C) 2019-2023 HighCapable
|
* Copyright (C) 2019 HighCapable
|
||||||
* https://github.com/HighCapable/SweetDependency
|
* https://github.com/HighCapable/SweetDependency
|
||||||
*
|
*
|
||||||
* Apache License Version 2.0
|
* Apache License Version 2.0
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* SweetDependency - An easy autowire and manage dependencies Gradle plugin.
|
* SweetDependency - An easy autowire and manage dependencies Gradle plugin.
|
||||||
* Copyright (C) 2019-2023 HighCapable
|
* Copyright (C) 2019 HighCapable
|
||||||
* https://github.com/HighCapable/SweetDependency
|
* https://github.com/HighCapable/SweetDependency
|
||||||
*
|
*
|
||||||
* Apache License Version 2.0
|
* Apache License Version 2.0
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* SweetDependency - An easy autowire and manage dependencies Gradle plugin.
|
* SweetDependency - An easy autowire and manage dependencies Gradle plugin.
|
||||||
* Copyright (C) 2019-2023 HighCapable
|
* Copyright (C) 2019 HighCapable
|
||||||
* https://github.com/HighCapable/SweetDependency
|
* https://github.com/HighCapable/SweetDependency
|
||||||
*
|
*
|
||||||
* Apache License Version 2.0
|
* Apache License Version 2.0
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* SweetDependency - An easy autowire and manage dependencies Gradle plugin.
|
* SweetDependency - An easy autowire and manage dependencies Gradle plugin.
|
||||||
* Copyright (C) 2019-2023 HighCapable
|
* Copyright (C) 2019 HighCapable
|
||||||
* https://github.com/HighCapable/SweetDependency
|
* https://github.com/HighCapable/SweetDependency
|
||||||
*
|
*
|
||||||
* Apache License Version 2.0
|
* Apache License Version 2.0
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* SweetDependency - An easy autowire and manage dependencies Gradle plugin.
|
* SweetDependency - An easy autowire and manage dependencies Gradle plugin.
|
||||||
* Copyright (C) 2019-2023 HighCapable
|
* Copyright (C) 2019 HighCapable
|
||||||
* https://github.com/HighCapable/SweetDependency
|
* https://github.com/HighCapable/SweetDependency
|
||||||
*
|
*
|
||||||
* Apache License Version 2.0
|
* Apache License Version 2.0
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* SweetDependency - An easy autowire and manage dependencies Gradle plugin.
|
* SweetDependency - An easy autowire and manage dependencies Gradle plugin.
|
||||||
* Copyright (C) 2019-2023 HighCapable
|
* Copyright (C) 2019 HighCapable
|
||||||
* https://github.com/HighCapable/SweetDependency
|
* https://github.com/HighCapable/SweetDependency
|
||||||
*
|
*
|
||||||
* Apache License Version 2.0
|
* Apache License Version 2.0
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* SweetDependency - An easy autowire and manage dependencies Gradle plugin.
|
* SweetDependency - An easy autowire and manage dependencies Gradle plugin.
|
||||||
* Copyright (C) 2019-2023 HighCapable
|
* Copyright (C) 2019 HighCapable
|
||||||
* https://github.com/HighCapable/SweetDependency
|
* https://github.com/HighCapable/SweetDependency
|
||||||
*
|
*
|
||||||
* Apache License Version 2.0
|
* Apache License Version 2.0
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* SweetDependency - An easy autowire and manage dependencies Gradle plugin.
|
* SweetDependency - An easy autowire and manage dependencies Gradle plugin.
|
||||||
* Copyright (C) 2019-2023 HighCapable
|
* Copyright (C) 2019 HighCapable
|
||||||
* https://github.com/HighCapable/SweetDependency
|
* https://github.com/HighCapable/SweetDependency
|
||||||
*
|
*
|
||||||
* Apache License Version 2.0
|
* Apache License Version 2.0
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* SweetDependency - An easy autowire and manage dependencies Gradle plugin.
|
* SweetDependency - An easy autowire and manage dependencies Gradle plugin.
|
||||||
* Copyright (C) 2019-2023 HighCapable
|
* Copyright (C) 2019 HighCapable
|
||||||
* https://github.com/HighCapable/SweetDependency
|
* https://github.com/HighCapable/SweetDependency
|
||||||
*
|
*
|
||||||
* Apache License Version 2.0
|
* Apache License Version 2.0
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* SweetDependency - An easy autowire and manage dependencies Gradle plugin.
|
* SweetDependency - An easy autowire and manage dependencies Gradle plugin.
|
||||||
* Copyright (C) 2019-2023 HighCapable
|
* Copyright (C) 2019 HighCapable
|
||||||
* https://github.com/HighCapable/SweetDependency
|
* https://github.com/HighCapable/SweetDependency
|
||||||
*
|
*
|
||||||
* Apache License Version 2.0
|
* Apache License Version 2.0
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* SweetDependency - An easy autowire and manage dependencies Gradle plugin.
|
* SweetDependency - An easy autowire and manage dependencies Gradle plugin.
|
||||||
* Copyright (C) 2019-2023 HighCapable
|
* Copyright (C) 2019 HighCapable
|
||||||
* https://github.com/HighCapable/SweetDependency
|
* https://github.com/HighCapable/SweetDependency
|
||||||
*
|
*
|
||||||
* Apache License Version 2.0
|
* Apache License Version 2.0
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* SweetDependency - An easy autowire and manage dependencies Gradle plugin.
|
* SweetDependency - An easy autowire and manage dependencies Gradle plugin.
|
||||||
* Copyright (C) 2019-2023 HighCapable
|
* Copyright (C) 2019 HighCapable
|
||||||
* https://github.com/HighCapable/SweetDependency
|
* https://github.com/HighCapable/SweetDependency
|
||||||
*
|
*
|
||||||
* Apache License Version 2.0
|
* Apache License Version 2.0
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* SweetDependency - An easy autowire and manage dependencies Gradle plugin.
|
* SweetDependency - An easy autowire and manage dependencies Gradle plugin.
|
||||||
* Copyright (C) 2019-2023 HighCapable
|
* Copyright (C) 2019 HighCapable
|
||||||
* https://github.com/HighCapable/SweetDependency
|
* https://github.com/HighCapable/SweetDependency
|
||||||
*
|
*
|
||||||
* Apache License Version 2.0
|
* Apache License Version 2.0
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* SweetDependency - An easy autowire and manage dependencies Gradle plugin.
|
* SweetDependency - An easy autowire and manage dependencies Gradle plugin.
|
||||||
* Copyright (C) 2019-2023 HighCapable
|
* Copyright (C) 2019 HighCapable
|
||||||
* https://github.com/HighCapable/SweetDependency
|
* https://github.com/HighCapable/SweetDependency
|
||||||
*
|
*
|
||||||
* Apache License Version 2.0
|
* Apache License Version 2.0
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* SweetDependency - An easy autowire and manage dependencies Gradle plugin.
|
* SweetDependency - An easy autowire and manage dependencies Gradle plugin.
|
||||||
* Copyright (C) 2019-2023 HighCapable
|
* Copyright (C) 2019 HighCapable
|
||||||
* https://github.com/HighCapable/SweetDependency
|
* https://github.com/HighCapable/SweetDependency
|
||||||
*
|
*
|
||||||
* Apache License Version 2.0
|
* Apache License Version 2.0
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* SweetDependency - An easy autowire and manage dependencies Gradle plugin.
|
* SweetDependency - An easy autowire and manage dependencies Gradle plugin.
|
||||||
* Copyright (C) 2019-2023 HighCapable
|
* Copyright (C) 2019 HighCapable
|
||||||
* https://github.com/HighCapable/SweetDependency
|
* https://github.com/HighCapable/SweetDependency
|
||||||
*
|
*
|
||||||
* Apache License Version 2.0
|
* Apache License Version 2.0
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* SweetDependency - An easy autowire and manage dependencies Gradle plugin.
|
* SweetDependency - An easy autowire and manage dependencies Gradle plugin.
|
||||||
* Copyright (C) 2019-2023 HighCapable
|
* Copyright (C) 2019 HighCapable
|
||||||
* https://github.com/HighCapable/SweetDependency
|
* https://github.com/HighCapable/SweetDependency
|
||||||
*
|
*
|
||||||
* Apache License Version 2.0
|
* Apache License Version 2.0
|
||||||
@@ -35,8 +35,8 @@ import javax.xml.parsers.DocumentBuilderFactory
|
|||||||
*/
|
*/
|
||||||
internal object PluginUpdateHelper {
|
internal object PluginUpdateHelper {
|
||||||
|
|
||||||
/** OSS Release URL 地址 */
|
/** Maven Central Release URL 地址 */
|
||||||
private const val SONATYPE_OSS_RELEASES_URL = "https://s01.oss.sonatype.org/content/repositories/releases"
|
private const val SONATYPE_OSS_RELEASES_URL = "https://repo1.maven.org/maven2"
|
||||||
|
|
||||||
/** 依赖配置文件名 */
|
/** 依赖配置文件名 */
|
||||||
private const val METADATA_FILE_NAME = "maven-metadata.xml"
|
private const val METADATA_FILE_NAME = "maven-metadata.xml"
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* SweetDependency - An easy autowire and manage dependencies Gradle plugin.
|
* SweetDependency - An easy autowire and manage dependencies Gradle plugin.
|
||||||
* Copyright (C) 2019-2023 HighCapable
|
* Copyright (C) 2019 HighCapable
|
||||||
* https://github.com/HighCapable/SweetDependency
|
* https://github.com/HighCapable/SweetDependency
|
||||||
*
|
*
|
||||||
* Apache License Version 2.0
|
* Apache License Version 2.0
|
||||||
@@ -63,7 +63,7 @@ internal class SweetDependencyExtensionImpl : BaseExtensionImpl() {
|
|||||||
""".trimIndent(), noTag = true
|
""".trimIndent(), noTag = true
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
if (GradleHelper.version.let { it.startsWith("7.") || !it.startsWith("8.") }) SError.make(
|
if (GradleHelper.version.let { !it.startsWith("7.") && !it.startsWith("8.") }) SError.make(
|
||||||
"${SweetDependency.TAG} ${SweetDependency.VERSION} " +
|
"${SweetDependency.TAG} ${SweetDependency.VERSION} " +
|
||||||
"does not support Gradle ${GradleHelper.version}, please update Gradle or plugin version"
|
"does not support Gradle ${GradleHelper.version}, please update Gradle or plugin version"
|
||||||
)
|
)
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* SweetDependency - An easy autowire and manage dependencies Gradle plugin.
|
* SweetDependency - An easy autowire and manage dependencies Gradle plugin.
|
||||||
* Copyright (C) 2019-2023 HighCapable
|
* Copyright (C) 2019 HighCapable
|
||||||
* https://github.com/HighCapable/SweetDependency
|
* https://github.com/HighCapable/SweetDependency
|
||||||
*
|
*
|
||||||
* Apache License Version 2.0
|
* Apache License Version 2.0
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* SweetDependency - An easy autowire and manage dependencies Gradle plugin.
|
* SweetDependency - An easy autowire and manage dependencies Gradle plugin.
|
||||||
* Copyright (C) 2019-2023 HighCapable
|
* Copyright (C) 2019 HighCapable
|
||||||
* https://github.com/HighCapable/SweetDependency
|
* https://github.com/HighCapable/SweetDependency
|
||||||
*
|
*
|
||||||
* Apache License Version 2.0
|
* Apache License Version 2.0
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* SweetDependency - An easy autowire and manage dependencies Gradle plugin.
|
* SweetDependency - An easy autowire and manage dependencies Gradle plugin.
|
||||||
* Copyright (C) 2019-2023 HighCapable
|
* Copyright (C) 2019 HighCapable
|
||||||
* https://github.com/HighCapable/SweetDependency
|
* https://github.com/HighCapable/SweetDependency
|
||||||
*
|
*
|
||||||
* Apache License Version 2.0
|
* Apache License Version 2.0
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* SweetDependency - An easy autowire and manage dependencies Gradle plugin.
|
* SweetDependency - An easy autowire and manage dependencies Gradle plugin.
|
||||||
* Copyright (C) 2019-2023 HighCapable
|
* Copyright (C) 2019 HighCapable
|
||||||
* https://github.com/HighCapable/SweetDependency
|
* https://github.com/HighCapable/SweetDependency
|
||||||
*
|
*
|
||||||
* Apache License Version 2.0
|
* Apache License Version 2.0
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* SweetDependency - An easy autowire and manage dependencies Gradle plugin.
|
* SweetDependency - An easy autowire and manage dependencies Gradle plugin.
|
||||||
* Copyright (C) 2019-2023 HighCapable
|
* Copyright (C) 2019 HighCapable
|
||||||
* https://github.com/HighCapable/SweetDependency
|
* https://github.com/HighCapable/SweetDependency
|
||||||
*
|
*
|
||||||
* Apache License Version 2.0
|
* Apache License Version 2.0
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* SweetDependency - An easy autowire and manage dependencies Gradle plugin.
|
* SweetDependency - An easy autowire and manage dependencies Gradle plugin.
|
||||||
* Copyright (C) 2019-2023 HighCapable
|
* Copyright (C) 2019 HighCapable
|
||||||
* https://github.com/HighCapable/SweetDependency
|
* https://github.com/HighCapable/SweetDependency
|
||||||
*
|
*
|
||||||
* Apache License Version 2.0
|
* Apache License Version 2.0
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* SweetDependency - An easy autowire and manage dependencies Gradle plugin.
|
* SweetDependency - An easy autowire and manage dependencies Gradle plugin.
|
||||||
* Copyright (C) 2019-2023 HighCapable
|
* Copyright (C) 2019 HighCapable
|
||||||
* https://github.com/HighCapable/SweetDependency
|
* https://github.com/HighCapable/SweetDependency
|
||||||
*
|
*
|
||||||
* Apache License Version 2.0
|
* Apache License Version 2.0
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* SweetDependency - An easy autowire and manage dependencies Gradle plugin.
|
* SweetDependency - An easy autowire and manage dependencies Gradle plugin.
|
||||||
* Copyright (C) 2019-2023 HighCapable
|
* Copyright (C) 2019 HighCapable
|
||||||
* https://github.com/HighCapable/SweetDependency
|
* https://github.com/HighCapable/SweetDependency
|
||||||
*
|
*
|
||||||
* Apache License Version 2.0
|
* Apache License Version 2.0
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* SweetDependency - An easy autowire and manage dependencies Gradle plugin.
|
* SweetDependency - An easy autowire and manage dependencies Gradle plugin.
|
||||||
* Copyright (C) 2019-2023 HighCapable
|
* Copyright (C) 2019 HighCapable
|
||||||
* https://github.com/HighCapable/SweetDependency
|
* https://github.com/HighCapable/SweetDependency
|
||||||
*
|
*
|
||||||
* Apache License Version 2.0
|
* Apache License Version 2.0
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* SweetDependency - An easy autowire and manage dependencies Gradle plugin.
|
* SweetDependency - An easy autowire and manage dependencies Gradle plugin.
|
||||||
* Copyright (C) 2019-2023 HighCapable
|
* Copyright (C) 2019 HighCapable
|
||||||
* https://github.com/HighCapable/SweetDependency
|
* https://github.com/HighCapable/SweetDependency
|
||||||
*
|
*
|
||||||
* Apache License Version 2.0
|
* Apache License Version 2.0
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* SweetDependency - An easy autowire and manage dependencies Gradle plugin.
|
* SweetDependency - An easy autowire and manage dependencies Gradle plugin.
|
||||||
* Copyright (C) 2019-2023 HighCapable
|
* Copyright (C) 2019 HighCapable
|
||||||
* https://github.com/HighCapable/SweetDependency
|
* https://github.com/HighCapable/SweetDependency
|
||||||
*
|
*
|
||||||
* Apache License Version 2.0
|
* Apache License Version 2.0
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* SweetDependency - An easy autowire and manage dependencies Gradle plugin.
|
* SweetDependency - An easy autowire and manage dependencies Gradle plugin.
|
||||||
* Copyright (C) 2019-2023 HighCapable
|
* Copyright (C) 2019 HighCapable
|
||||||
* https://github.com/HighCapable/SweetDependency
|
* https://github.com/HighCapable/SweetDependency
|
||||||
*
|
*
|
||||||
* Apache License Version 2.0
|
* Apache License Version 2.0
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* SweetDependency - An easy autowire and manage dependencies Gradle plugin.
|
* SweetDependency - An easy autowire and manage dependencies Gradle plugin.
|
||||||
* Copyright (C) 2019-2023 HighCapable
|
* Copyright (C) 2019 HighCapable
|
||||||
* https://github.com/HighCapable/SweetDependency
|
* https://github.com/HighCapable/SweetDependency
|
||||||
*
|
*
|
||||||
* Apache License Version 2.0
|
* Apache License Version 2.0
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* SweetDependency - An easy autowire and manage dependencies Gradle plugin.
|
* SweetDependency - An easy autowire and manage dependencies Gradle plugin.
|
||||||
* Copyright (C) 2019-2023 HighCapable
|
* Copyright (C) 2019 HighCapable
|
||||||
* https://github.com/HighCapable/SweetDependency
|
* https://github.com/HighCapable/SweetDependency
|
||||||
*
|
*
|
||||||
* Apache License Version 2.0
|
* Apache License Version 2.0
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* SweetDependency - An easy autowire and manage dependencies Gradle plugin.
|
* SweetDependency - An easy autowire and manage dependencies Gradle plugin.
|
||||||
* Copyright (C) 2019-2023 HighCapable
|
* Copyright (C) 2019 HighCapable
|
||||||
* https://github.com/HighCapable/SweetDependency
|
* https://github.com/HighCapable/SweetDependency
|
||||||
*
|
*
|
||||||
* Apache License Version 2.0
|
* Apache License Version 2.0
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* SweetDependency - An easy autowire and manage dependencies Gradle plugin.
|
* SweetDependency - An easy autowire and manage dependencies Gradle plugin.
|
||||||
* Copyright (C) 2019-2023 HighCapable
|
* Copyright (C) 2019 HighCapable
|
||||||
* https://github.com/HighCapable/SweetDependency
|
* https://github.com/HighCapable/SweetDependency
|
||||||
*
|
*
|
||||||
* Apache License Version 2.0
|
* Apache License Version 2.0
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* SweetDependency - An easy autowire and manage dependencies Gradle plugin.
|
* SweetDependency - An easy autowire and manage dependencies Gradle plugin.
|
||||||
* Copyright (C) 2019-2023 HighCapable
|
* Copyright (C) 2019 HighCapable
|
||||||
* https://github.com/HighCapable/SweetDependency
|
* https://github.com/HighCapable/SweetDependency
|
||||||
*
|
*
|
||||||
* Apache License Version 2.0
|
* Apache License Version 2.0
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* SweetDependency - An easy autowire and manage dependencies Gradle plugin.
|
* SweetDependency - An easy autowire and manage dependencies Gradle plugin.
|
||||||
* Copyright (C) 2019-2023 HighCapable
|
* Copyright (C) 2019 HighCapable
|
||||||
* https://github.com/HighCapable/SweetDependency
|
* https://github.com/HighCapable/SweetDependency
|
||||||
*
|
*
|
||||||
* Apache License Version 2.0
|
* Apache License Version 2.0
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* SweetDependency - An easy autowire and manage dependencies Gradle plugin.
|
* SweetDependency - An easy autowire and manage dependencies Gradle plugin.
|
||||||
* Copyright (C) 2019-2023 HighCapable
|
* Copyright (C) 2019 HighCapable
|
||||||
* https://github.com/HighCapable/SweetDependency
|
* https://github.com/HighCapable/SweetDependency
|
||||||
*
|
*
|
||||||
* Apache License Version 2.0
|
* Apache License Version 2.0
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* SweetDependency - An easy autowire and manage dependencies Gradle plugin.
|
* SweetDependency - An easy autowire and manage dependencies Gradle plugin.
|
||||||
* Copyright (C) 2019-2023 HighCapable
|
* Copyright (C) 2019 HighCapable
|
||||||
* https://github.com/HighCapable/SweetDependency
|
* https://github.com/HighCapable/SweetDependency
|
||||||
*
|
*
|
||||||
* Apache License Version 2.0
|
* Apache License Version 2.0
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* SweetDependency - An easy autowire and manage dependencies Gradle plugin.
|
* SweetDependency - An easy autowire and manage dependencies Gradle plugin.
|
||||||
* Copyright (C) 2019-2023 HighCapable
|
* Copyright (C) 2019 HighCapable
|
||||||
* https://github.com/HighCapable/SweetDependency
|
* https://github.com/HighCapable/SweetDependency
|
||||||
*
|
*
|
||||||
* Apache License Version 2.0
|
* Apache License Version 2.0
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* SweetDependency - An easy autowire and manage dependencies Gradle plugin.
|
* SweetDependency - An easy autowire and manage dependencies Gradle plugin.
|
||||||
* Copyright (C) 2019-2023 HighCapable
|
* Copyright (C) 2019 HighCapable
|
||||||
* https://github.com/HighCapable/SweetDependency
|
* https://github.com/HighCapable/SweetDependency
|
||||||
*
|
*
|
||||||
* Apache License Version 2.0
|
* Apache License Version 2.0
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* SweetDependency - An easy autowire and manage dependencies Gradle plugin.
|
* SweetDependency - An easy autowire and manage dependencies Gradle plugin.
|
||||||
* Copyright (C) 2019-2023 HighCapable
|
* Copyright (C) 2019 HighCapable
|
||||||
* https://github.com/HighCapable/SweetDependency
|
* https://github.com/HighCapable/SweetDependency
|
||||||
*
|
*
|
||||||
* Apache License Version 2.0
|
* Apache License Version 2.0
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* SweetDependency - An easy autowire and manage dependencies Gradle plugin.
|
* SweetDependency - An easy autowire and manage dependencies Gradle plugin.
|
||||||
* Copyright (C) 2019-2023 HighCapable
|
* Copyright (C) 2019 HighCapable
|
||||||
* https://github.com/HighCapable/SweetDependency
|
* https://github.com/HighCapable/SweetDependency
|
||||||
*
|
*
|
||||||
* Apache License Version 2.0
|
* Apache License Version 2.0
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* SweetDependency - An easy autowire and manage dependencies Gradle plugin.
|
* SweetDependency - An easy autowire and manage dependencies Gradle plugin.
|
||||||
* Copyright (C) 2019-2023 HighCapable
|
* Copyright (C) 2019 HighCapable
|
||||||
* https://github.com/HighCapable/SweetDependency
|
* https://github.com/HighCapable/SweetDependency
|
||||||
*
|
*
|
||||||
* Apache License Version 2.0
|
* Apache License Version 2.0
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* SweetDependency - An easy autowire and manage dependencies Gradle plugin.
|
* SweetDependency - An easy autowire and manage dependencies Gradle plugin.
|
||||||
* Copyright (C) 2019-2023 HighCapable
|
* Copyright (C) 2019 HighCapable
|
||||||
* https://github.com/HighCapable/SweetDependency
|
* https://github.com/HighCapable/SweetDependency
|
||||||
*
|
*
|
||||||
* Apache License Version 2.0
|
* Apache License Version 2.0
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* SweetDependency - An easy autowire and manage dependencies Gradle plugin.
|
* SweetDependency - An easy autowire and manage dependencies Gradle plugin.
|
||||||
* Copyright (C) 2019-2023 HighCapable
|
* Copyright (C) 2019 HighCapable
|
||||||
* https://github.com/HighCapable/SweetDependency
|
* https://github.com/HighCapable/SweetDependency
|
||||||
*
|
*
|
||||||
* Apache License Version 2.0
|
* Apache License Version 2.0
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* SweetDependency - An easy autowire and manage dependencies Gradle plugin.
|
* SweetDependency - An easy autowire and manage dependencies Gradle plugin.
|
||||||
* Copyright (C) 2019-2023 HighCapable
|
* Copyright (C) 2019 HighCapable
|
||||||
* https://github.com/HighCapable/SweetDependency
|
* https://github.com/HighCapable/SweetDependency
|
||||||
*
|
*
|
||||||
* Apache License Version 2.0
|
* Apache License Version 2.0
|
||||||
|
Reference in New Issue
Block a user