Skip to content

Commit

Permalink
Merge branch 'release/1.0.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
dgeorgiev committed Sep 19, 2023
2 parents e4be80c + 198d5c7 commit e19c749
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 15 deletions.
35 changes: 25 additions & 10 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,19 +7,21 @@ import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
val weMavenUser: String? by project
val weMavenPassword: String? by project

val sonaTypeMavenUser: String? by project
val weMavenBasePath = "https://artifacts.wavesenterprise.com/repository/"

val sonaTypeMavenUser: String? by project
val sonaTypeMavenPassword: String? by project
val kotlinVersion: String by project

val kotlinVersion: String by project
val springBootVersion: String by project
val flywayVersion: String by project

val kotlinCoroutinesVersion: String by project

val sonaTypeBasePath: String by project
val weMavenBasePath: String by project
val gitHubProject: String by project
val githubUrl: String by project
val sonaTypeBasePath = "https://s01.oss.sonatype.org"

val gitHubProject = "waves-enterprise/we-flyway-starter"
val githubUrl = "https://github.com/$gitHubProject"

plugins {
kotlin("jvm") apply false
Expand Down Expand Up @@ -196,8 +198,8 @@ subprojects {
pom {
packaging = "jar"
name.set(project.name)
url.set(githubUrl + gitHubProject)
description.set("WE Flyway Starter")
url.set(githubUrl)
description.set("WE Node Client for Java/Kotlin")

licenses {
license {
Expand All @@ -207,9 +209,22 @@ subprojects {
}

scm {
connection.set("scm:$githubUrl$gitHubProject")
connection.set("scm:$githubUrl")
developerConnection.set("scm:[email protected]:$gitHubProject.git")
url.set(githubUrl + gitHubProject)
url.set(githubUrl)
}

developers {
developer {
id.set("kt3")
name.set("Stepan Kashintsev")
email.set("[email protected]")
}
developer {
id.set("donyfutura")
name.set("Daniil Georgiev")
email.set("[email protected]")
}
}
}
}
Expand Down
5 changes: 0 additions & 5 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,3 @@ gitPropertiesVersion=2.2.2
jGitVerVersion=0.9.1
dokkaVersion=1.6.21
nexusStagingVersion=0.30.0

sonaTypeBasePath=https://s01.oss.sonatype.org
weMavenBasePath=https://artifacts.wavesenterprise.com/repository/
gitHubProject=waves-enterprise/we-flyway-starter
githubUrl=https://github.com/

0 comments on commit e19c749

Please sign in to comment.