Skip to content

Commit

Permalink
style: Minor style fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
osipxd committed Jul 31, 2024
1 parent 6989919 commit 615314b
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
push:
branches: [main]
# Release tag format is v[version]
# For example: v1.3.5
# Example: v1.3.5
tags: ["v*"]
pull_request:
branches: [main]
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
- Remove `Cleanup` step from [main.yml](.github/workflows/main.yml)
- Update library description in README and in `build.gradle.kts`
- Update [Usage](#usage) guide
- Revise the logic in convention-plugins in `buildSrc` and remove everything you don't need
---

[![License](https://img.shields.io/github/license/RedMadRobot/%Stub%?style=flat-square)][license]
Expand Down
5 changes: 3 additions & 2 deletions buildSrc/settings.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
@file:Suppress("UnstableApiUsage")

pluginManagement {
repositories {
gradlePluginPortal()
Expand All @@ -12,9 +14,8 @@ pluginManagement {
}
}

@Suppress("UnstableApiUsage")
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositoriesMode = RepositoriesMode.FAIL_ON_PROJECT_REPOS

repositories {
google {
Expand Down
3 changes: 2 additions & 1 deletion buildSrc/src/main/kotlin/convention.publishing.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@ mavenPublishing {
}

developers {
// developer(id = "coolest id", name = "the best name", email = "awesome email")
// TODO: Specify real developer information
// developer(id = "github_nickname", name = "Name Surname", email = "[email protected]")
}

setGitHubProject("RedMadRobot/%Stub%")
Expand Down

0 comments on commit 615314b

Please sign in to comment.