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
2 changes: 1 addition & 1 deletion .github/workflows/pcgcli-main.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Partitioned Consumer Groups Main Snapshot
name: Partitioned Consumer Groups CLI Main Snapshot

on:
push:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pcgcli-pr.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Partitioned Consumer Groups Pull Request
name: Partitioned Consumer Groups CLI Pull Request

on:
pull_request:
Expand Down
1 change: 0 additions & 1 deletion pcgroups-cli/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ plugins {
group = 'io.synadia'
version = "0.1.0"
def originalUber = 'pcg-cli-' + version + '-uber.jar'
System.out.println(originalUber)

java {
sourceCompatibility = JavaVersion.VERSION_1_8
Expand Down
17 changes: 17 additions & 0 deletions pcgroups-cli/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,23 @@
<jnats.version>2.25.1</jnats.version>
</properties>

<repositories>
<repository>
<id>sonatype releases</id>
<url>https://repo1.maven.org/maven2/</url>
<releases>
<enabled>true</enabled>
</releases>
</repository>
<repository>
<id>sonatype snapshots</id>
<url>https://central.sonatype.com/repository/maven-snapshots</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>

<dependencies>
<!-- Partitioned Consumer Groups Library -->
<dependency>
Expand Down