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
178 changes: 0 additions & 178 deletions build.gradle.ref

This file was deleted.

2 changes: 1 addition & 1 deletion core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ compileJava {
}

group = 'com.p14n'
version = '1.0.1-SNAPSHOT'
version = '1.2.0-SNAPSHOT'

repositories {
mavenCentral()
Expand Down
2 changes: 1 addition & 1 deletion debezium/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ compileJava {
}

group = 'com.p14n'
version = '1.0.1-SNAPSHOT'
version = '1.2.0-SNAPSHOT'

repositories {
mavenCentral()
Expand Down
2 changes: 1 addition & 1 deletion grpc/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ compileJava {
}

group = 'com.p14n'
version = '1.0.1-SNAPSHOT'
version = '1.2.0-SNAPSHOT'

repositories {
mavenCentral()
Expand Down
38 changes: 37 additions & 1 deletion vertx/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ compileJava {
}

group = 'com.p14n'
version = '1.0.1-SNAPSHOT'
version = '1.2.0-SNAPSHOT'

repositories {
mavenCentral()
Expand Down Expand Up @@ -78,3 +78,39 @@ jar {
tasks.withType(Jar) {
duplicatesStrategy = DuplicatesStrategy.EXCLUDE
}

mavenPublishing {

configure(new JavaLibrary(new JavadocJar.Javadoc(), true))

publishToMavenCentral(SonatypeHost.CENTRAL_PORTAL, true)

signAllPublications()

coordinates("com.p14n", "postevent-vertx", version)

pom {
name = "Postevent Vert.x"
description = 'A reliable event publishing and consumption system using PostgreSQL and vert.x'
inceptionYear = "2025"
url = "https://github.com/p14n/postevent/"
licenses {
license {
name = 'MIT License'
url = 'https://opensource.org/licenses/MIT'
}
}
developers {
developer {
id = 'p14n'
name = 'Dean Chapman'
email = 'dean@p14n.com'
}
}
scm {
connection = 'scm:git:git://github.com/p14n/postevent.git'
developerConnection = 'scm:git:ssh://github.com:p14n/postevent.git'
url = 'https://github.com/p14n/postevent'
}
}
}
Loading