File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed
src/main/kotlin/de/florianmichael/baseproject Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -6,5 +6,5 @@ org.gradle.parallel=true
6
6
# Project Details
7
7
project_group =de.florianmichael.baseproject
8
8
project_name =BaseProject
9
- project_version =1.0.6
9
+ project_version =1.0.7
10
10
project_description =A Gradle convention plugin for streamlined project setup and publishing.
Original file line number Diff line number Diff line change @@ -69,6 +69,7 @@ fun Project.setupViaPublishing() {
69
69
* Requires authentication via basic username/password (credentials block).
70
70
*/
71
71
fun Project.configureLenni0451Repository () {
72
+ apply (plugin = " maven-publish" )
72
73
extensions.getByType(PublishingExtension ::class .java).apply {
73
74
repositories.maven {
74
75
name = " reposilite"
@@ -99,6 +100,7 @@ fun Project.configureLenni0451Repository() {
99
100
* Requires authentication (OSSRH credentials via Gradle).
100
101
*/
101
102
fun Project.configureOssrhRepository () {
103
+ apply (plugin = " maven-publish" )
102
104
extensions.getByType(PublishingExtension ::class .java).apply {
103
105
repositories.maven {
104
106
name = " ossrh"
@@ -128,6 +130,7 @@ fun Project.configureOssrhRepository() {
128
130
* Requires basic authentication.
129
131
*/
130
132
fun Project.configureViaRepository () {
133
+ apply (plugin = " maven-publish" )
131
134
extensions.getByType(PublishingExtension ::class .java).apply {
132
135
repositories.maven {
133
136
name = " Via"
You can’t perform that action at this time.
0 commit comments