-
-
Notifications
You must be signed in to change notification settings - Fork 108
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #712 from Splitties/main
Prepare for release 0.60.4
- Loading branch information
Showing
72 changed files
with
587 additions
and
505 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,38 @@ | ||
click==8.1.3 | ||
mkdocs-material==9.5.6 | ||
|
||
# Dependencies of mkdocs-material: | ||
Markdown==3.5.2 | ||
pymdown-extensions==10.7 | ||
regex==2023.12.25 | ||
Babel==2.14.0 | ||
Jinja2==3.1.3 | ||
mkdocs==1.5.3 | ||
requests==2.31.0 | ||
Pygments==2.17.2 | ||
colorama==0.4.6 | ||
paginate==0.5.6 | ||
mkdocs-material-extensions==1.3.1 | ||
|
||
# A plugin: | ||
|
||
mkdocs-markdownextradata-plugin==0.2.5 | ||
|
||
# Transitive dependencies | ||
|
||
MarkupSafe==2.1.4 | ||
certifi==2023.11.17 | ||
charset-normalizer==3.3.2 | ||
click==8.1.7 | ||
ghp-import==2.1.0 | ||
importlib-metadata==4.11.4 | ||
Jinja2==3.1.2 | ||
Markdown==3.3.7 | ||
MarkupSafe==2.1.1 | ||
idna==3.6 | ||
importlib-metadata==7.0.1 | ||
mergedeep==1.3.4 | ||
mkdocs==1.3.0 | ||
mkdocs-markdownextradata-plugin==0.2.5 | ||
mkdocs-material==8.2.16 | ||
mkdocs-material-extensions==1.0.3 | ||
packaging==21.3 | ||
Pygments==2.12.0 | ||
pymdown-extensions==9.4 | ||
pyparsing==3.0.9 | ||
packaging==23.2 | ||
pathspec==0.12.1 | ||
platformdirs==4.1.0 | ||
python-dateutil==2.8.2 | ||
PyYAML==6.0 | ||
PyYAML==6.0.1 | ||
pyyaml_env_tag==0.1 | ||
six==1.16.0 | ||
watchdog==2.1.8 | ||
zipp==3.8.0 | ||
urllib3==2.2.0 | ||
watchdog==3.0.0 | ||
zipp==3.17.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
allprojects { | ||
repositories { | ||
mavenCentral() | ||
} | ||
plugins { | ||
// Defined in convention-plugins (includedBuild). | ||
// Added here to see updates in versions.properties. | ||
id("com.gradle.plugin-publish") apply false | ||
} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
plugins { | ||
`kotlin-dsl` | ||
} | ||
|
||
fun plugin(id: String, version: String) = "$id:$id.gradle.plugin:$version" | ||
|
||
dependencies { | ||
implementation(plugin(id = "com.gradle.plugin-publish", version = "_")) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
plugins { | ||
id("de.fayard.refreshVersions") version "0.60.3" | ||
} | ||
|
||
dependencyResolutionManagement { | ||
@Suppress("UnstableApiUsage") | ||
repositories { | ||
mavenCentral() | ||
gradlePluginPortal() | ||
} | ||
} | ||
|
||
refreshVersions { | ||
versionsPropertiesFile = rootDir.parentFile.resolve("versions.properties") | ||
} |
4 changes: 2 additions & 2 deletions
4
...buildSrc/src/main/kotlin/PropertyOrEnv.kt → ...-plugins/src/main/kotlin/PropertyOrEnv.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
import org.gradle.api.Project | ||
|
||
fun Project.propertyOrEnv(key: String): String { | ||
internal fun Project.propertyOrEnv(key: String): String { | ||
return findProperty(key) as String? | ||
?: System.getenv(key) | ||
?: error("Didn't find any value for the key \"$key\" in Project properties or environment variables.") | ||
} | ||
|
||
fun Project.propertyOrEnvOrNull(key: String): String? { | ||
internal fun Project.propertyOrEnvOrNull(key: String): String? { | ||
return findProperty(key) as String? ?: System.getenv(key) | ||
} |
22 changes: 22 additions & 0 deletions
22
plugins/convention-plugins/src/main/kotlin/gradle-plugin.gradle.kts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
plugins { | ||
id("com.gradle.plugin-publish") | ||
signing | ||
} | ||
|
||
signing { | ||
useInMemoryPgpKeys( | ||
propertyOrEnvOrNull("GPG_key_id"), | ||
propertyOrEnvOrNull("GPG_private_key") ?: return@signing, | ||
propertyOrEnv("GPG_private_password") | ||
) | ||
sign(publishing.publications) | ||
} | ||
|
||
gradlePlugin { | ||
website = Publishing.siteUrl | ||
vcsUrl = Publishing.repoUrl | ||
} | ||
|
||
publishing { | ||
setupAllPublications(project) | ||
} |
Oops, something went wrong.