-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
25 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
|
@@ -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 { | ||
|
@@ -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]") | ||
} | ||
} | ||
} | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters