Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ plugins {
alias(libs.plugins.kotlinJvm)
alias(libs.plugins.deltaCoverage)
alias(libs.plugins.detekt)
alias(libs.plugins.mavenPublish)
`jvm-test-suite`
`java-gradle-plugin`
`maven-publish`
Expand Down
25 changes: 24 additions & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,8 +1,31 @@
group=io.github.gwkit.gradleprobe
group=io.github.gw-kit
version=0.0.1

kotlin.code.style=official

org.gradle.parallel=true
org.gradle.caching=true
org.gradle.configuration-cache=true

# Maven Central Publishing Configuration
SONATYPE_HOST=CENTRAL_PORTAL
SONATYPE_AUTOMATIC_RELEASE=true
RELEASE_SIGNING_ENABLED=true

# POM Metadata
POM_ARTIFACT_ID=gradle-probe
POM_NAME=gradle-probe
POM_DESCRIPTION=A library that simplifies writing functional tests for Gradle plugins with JUnit 5 extension and annotation-based property injection.
POM_URL=https://github.com/gw-kit/gradle-probe

POM_LICENSE_NAME=MIT License
POM_LICENSE_URL=https://opensource.org/licenses/MIT

POM_DEVELOPER_ID=surpsg
POM_DEVELOPER_NAME=Sergii Gnatiuk
POM_DEVELOPER_EMAIL=surpsg2012@gmail.com
POM_DEVELOPER_URL=https://github.com/surpsg

POM_SCM_URL=https://github.com/gw-kit/gradle-probe
POM_SCM_CONNECTION=scm:git:git://github.com/gw-kit/gradle-probe.git
POM_SCM_DEV_CONNECTION=scm:git:ssh://git@github.com/gw-kit/gradle-probe.git
Loading