Skip to content

Commit 615314b

Browse files
committed
style: Minor style fixes
1 parent 6989919 commit 615314b

File tree

4 files changed

+7
-4
lines changed

4 files changed

+7
-4
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
push:
55
branches: [main]
66
# Release tag format is v[version]
7-
# For example: v1.3.5
7+
# Example: v1.3.5
88
tags: ["v*"]
99
pull_request:
1010
branches: [main]

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
- Remove `Cleanup` step from [main.yml](.github/workflows/main.yml)
77
- Update library description in README and in `build.gradle.kts`
88
- Update [Usage](#usage) guide
9+
- Revise the logic in convention-plugins in `buildSrc` and remove everything you don't need
910
---
1011

1112
[![License](https://img.shields.io/github/license/RedMadRobot/%Stub%?style=flat-square)][license]

buildSrc/settings.gradle.kts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
@file:Suppress("UnstableApiUsage")
2+
13
pluginManagement {
24
repositories {
35
gradlePluginPortal()
@@ -12,9 +14,8 @@ pluginManagement {
1214
}
1315
}
1416

15-
@Suppress("UnstableApiUsage")
1617
dependencyResolutionManagement {
17-
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
18+
repositoriesMode = RepositoriesMode.FAIL_ON_PROJECT_REPOS
1819

1920
repositories {
2021
google {

buildSrc/src/main/kotlin/convention.publishing.gradle.kts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@ mavenPublishing {
1818
}
1919

2020
developers {
21-
// developer(id = "coolest id", name = "the best name", email = "awesome email")
21+
// TODO: Specify real developer information
22+
// developer(id = "github_nickname", name = "Name Surname", email = "n.surname@redmadrobot.com")
2223
}
2324

2425
setGitHubProject("RedMadRobot/%Stub%")

0 commit comments

Comments
 (0)