Skip to content

Commit df6294e

Browse files
committed
Update references
(cherry picked from commit dbec2b4)
1 parent 172d0a8 commit df6294e

File tree

21 files changed

+52
-71
lines changed

21 files changed

+52
-71
lines changed

.github/workflows/maven.yml

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -54,22 +54,21 @@ jobs:
5454
uses: qcastel/[email protected]
5555
with:
5656
release-branch-name: ${{ env.BRANCH_NAME }}
57+
maven-args: "-DskipTests -DskipITs"
5758

5859
gpg-enabled: true
59-
gpg-key-id: ${{ secrets.FREE_NOW_GPG_KEY_ID }}
60-
gpg-key: ${{ secrets.FREE_NOW_GPG_KEY }}
61-
gpg-passphrase: ${{ secrets.FREE_NOW_GPG_PASSPHRASE }}
60+
gpg-key-id: ${{ secrets.GPG_KEY_ID }}
61+
gpg-key: ${{ secrets.GPG_KEY }}
62+
gpg-passphrase: ${{ secrets.GPG_PASSPHRASE }}
6263

63-
ssh-private-key: ${{ secrets.FREE_NOW_GITHUB_PRIVATE_KEY }}
64+
ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }}
6465

65-
git-release-bot-name: "free-now-github"
66-
git-release-bot-email: "[email protected]"
66+
git-release-bot-name: "bot-idhub"
67+
git-release-bot-email: "[email protected]"
6768
git-skip-sanity-check: true
6869

6970
maven-repo-server-id: ossrh
70-
maven-repo-server-username: ${{ secrets.FREE_NOW_GITHUB_USER }}
71-
maven-repo-server-password: ${{ secrets.FREE_NOW_MAVEN_ACCESS_TOKEN }}
72-
maven-args: "-DskipTests -DskipITs"
73-
71+
maven-repo-server-username: ${{ secrets.GITHUB_USER }}
72+
maven-repo-server-password: ${{ secrets.MAVEN_ACCESS_TOKEN }}
7473
env:
7574
JAVA_HOME: /usr/lib/jvm/java-1.8-openjdk/

MAINTAINERS

Lines changed: 0 additions & 1 deletion
This file was deleted.

README.md

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,12 @@
11
# Spring MultiRabbit
2-
[![Latest release](https://maven-badges.herokuapp.com/maven-central/com.free-now.multirabbit/spring-multirabbit/badge.svg)](https://mvnrepository.com/artifact/com.free-now.multirabbit/spring-multirabbit)
3-
![Build Status](https://github.com/freenowtech/spring-multirabbit/actions/workflows/maven.yml/badge.svg)
2+
![Build Status](https://github.com/rwanderc/spring-multirabbit/actions/workflows/maven.yml/badge.svg)
43

54
**Spring MultiRabbit** is a library to enable multiple RabbitMQ brokers in SpringBoot applications. The modules are:
65
* **spring-multirabbit** - the main module, that provides the auto-configuration feature;
76
* **spring-multirabbit-example-java** - an example project in Java;
87
* **spring-multirabbit-example-kotlin** - an example project in Kotlin;
98
* **spring-multirabbit-extension-example** - an example project of how to extend spring-multirabbit;
109

11-
## Status: Repository Archived
12-
This repository has been archived and is no longer actively maintained.
13-
1410
## How-to
1511
To use the library, the project must:
1612
1. Be a SpringBoot project annotated with **@EnableRabbit**, as usual;
@@ -42,7 +38,7 @@ Add the reference to the repository, and the necessary libs:
4238
<artifactId>spring-boot-starter-amqp</artifactId>
4339
</dependency>
4440
<dependency>
45-
<groupId>com.free-now.multirabbit</groupId>
41+
<groupId>com.wandercosta.multirabbit</groupId>
4642
<artifactId>spring-multirabbit</artifactId>
4743
<version>${multirabbit.version}</version>
4844
</dependency>
@@ -202,7 +198,7 @@ spring:
202198
```
203199
204200
## Compatibility of versions
205-
For the table of compatibility, please visit the [Wiki](https://github.com/freenowtech/spring-multirabbit/wiki) page.
201+
WIP
206202
207203
## More Examples
208204
More examples can be found at the modules **spring-multirabbit-example-java** and **spring-multirabbit-example-kotlin**.

pom.xml

Lines changed: 13 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@
33

44
<modelVersion>4.0.0</modelVersion>
55

6-
<groupId>com.free-now.multirabbit</groupId>
6+
<groupId>com.wandercosta.multirabbit</groupId>
77
<artifactId>spring-multirabbit-parent</artifactId>
88
<version>2.7.1-SNAPSHOT</version>
99
<packaging>pom</packaging>
1010

1111
<name>Spring MultiRabbit</name>
1212
<description>Library to extend Spring to provide connection to multiple RabbitMQ servers</description>
13-
<url>https://github.com/freenowtech/spring-multirabbit</url>
13+
<url>https://github.com/rwanderc/spring-multirabbit</url>
1414

1515
<modules>
1616
<module>spring-multirabbit</module>
@@ -29,28 +29,17 @@
2929
<developers>
3030
<developer>
3131
<name>Wander Costa</name>
32-
<email>rwander@gmail.com</email>
32+
<email>rwander@wandercosta.com</email>
3333
</developer>
3434
</developers>
3535

3636
<scm>
37-
<connection>scm:git:[email protected]:freenowtech/spring-multirabbit.git</connection>
38-
<developerConnection>scm:git:[email protected]:freenowtech/spring-multirabbit.git</developerConnection>
37+
<connection>scm:git:[email protected]:rwanderc/spring-multirabbit.git</connection>
38+
<developerConnection>scm:git:[email protected]:rwanderc/spring-multirabbit.git</developerConnection>
3939
<tag>HEAD</tag>
40-
<url>scm:git:git@github.com:freenowtech/spring-multirabbit.git</url>
40+
<url>https://github.com/rwanderc/spring-multirabbit</url>
4141
</scm>
4242

43-
<distributionManagement>
44-
<snapshotRepository>
45-
<id>ossrh</id>
46-
<url>https://s01.oss.sonatype.org/content/repositories/snapshots</url>
47-
</snapshotRepository>
48-
<repository>
49-
<id>ossrh</id>
50-
<url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url>
51-
</repository>
52-
</distributionManagement>
53-
5443
<properties>
5544
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
5645
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
@@ -65,7 +54,6 @@
6554
<maven-gpg-plugin.version>1.6</maven-gpg-plugin.version>
6655
<maven-source-plugin.version>3.2.1</maven-source-plugin.version>
6756
<maven-javadoc-plugin.version>3.2.0</maven-javadoc-plugin.version>
68-
<nexus-staging-maven-plugin.version>1.6.8</nexus-staging-maven-plugin.version>
6957
<maven-compiler-plugin.version>3.8.1</maven-compiler-plugin.version>
7058
<maven-checkstyle-plugin.version>3.1.0</maven-checkstyle-plugin.version>
7159
</properties>
@@ -139,21 +127,22 @@
139127
<executions>
140128
<execution>
141129
<id>attach-javadocs</id>
130+
<phase>package</phase>
142131
<goals>
143132
<goal>jar</goal>
144133
</goals>
145134
</execution>
146135
</executions>
147136
</plugin>
148137
<plugin>
149-
<groupId>org.sonatype.plugins</groupId>
150-
<artifactId>nexus-staging-maven-plugin</artifactId>
151-
<version>${nexus-staging-maven-plugin.version}</version>
138+
<groupId>org.sonatype.central</groupId>
139+
<artifactId>central-publishing-maven-plugin</artifactId>
140+
<version>0.6.0</version>
152141
<extensions>true</extensions>
153142
<configuration>
154-
<serverId>ossrh</serverId>
155-
<nexusUrl>https://s01.oss.sonatype.org/</nexusUrl>
156-
<autoReleaseAfterClose>true</autoReleaseAfterClose>
143+
<publishingServerId>central</publishingServerId>
144+
<autoPublish>true</autoPublish>
145+
<waitUntil>uploaded</waitUntil>
157146
</configuration>
158147
</plugin>
159148
<plugin>

spring-multirabbit-examples/spring-multirabbit-example-java/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<relativePath />
1111
</parent>
1212

13-
<groupId>com.free-now.multirabbit</groupId>
13+
<groupId>com.wandercosta.multirabbit</groupId>
1414
<artifactId>spring-multirabbit-example-java</artifactId>
1515
<version>2.7.1-SNAPSHOT</version>
1616
<packaging>jar</packaging>
@@ -20,7 +20,7 @@
2020

2121
<dependencies>
2222
<dependency>
23-
<groupId>com.free-now.multirabbit</groupId>
23+
<groupId>com.wandercosta.multirabbit</groupId>
2424
<artifactId>spring-multirabbit</artifactId>
2525
<version>${project.version}</version>
2626
</dependency>

spring-multirabbit-examples/spring-multirabbit-example-java/src/main/java/com/freenow/multirabbit/example/java/Application.java renamed to spring-multirabbit-examples/spring-multirabbit-example-java/src/main/java/com/wandercosta/multirabbit/example/java/Application.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.freenow.multirabbit.example.java;
1+
package com.wandercosta.multirabbit.example.java;
22

33
import org.springframework.amqp.rabbit.annotation.EnableRabbit;
44
import org.springframework.boot.SpringApplication;

spring-multirabbit-examples/spring-multirabbit-example-java/src/main/java/com/freenow/multirabbit/example/java/SomeController.java renamed to spring-multirabbit-examples/spring-multirabbit-example-java/src/main/java/com/wandercosta/multirabbit/example/java/SomeController.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.freenow.multirabbit.example.java;
1+
package com.wandercosta.multirabbit.example.java;
22

33
import org.springframework.amqp.rabbit.connection.SimpleResourceHolder;
44
import org.springframework.amqp.rabbit.core.RabbitTemplate;

spring-multirabbit-examples/spring-multirabbit-example-java/src/main/java/com/freenow/multirabbit/example/java/SomeListeners.java renamed to spring-multirabbit-examples/spring-multirabbit-example-java/src/main/java/com/wandercosta/multirabbit/example/java/SomeListeners.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.freenow.multirabbit.example.java;
1+
package com.wandercosta.multirabbit.example.java;
22

33
import org.slf4j.Logger;
44
import org.slf4j.LoggerFactory;

spring-multirabbit-examples/spring-multirabbit-example-java/src/test/java/com/freenow/multirabbit/example/java/ApplicationTest.java renamed to spring-multirabbit-examples/spring-multirabbit-example-java/src/test/java/com/wandercosta/multirabbit/example/java/ApplicationTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.freenow.multirabbit.example.java;
1+
package com.wandercosta.multirabbit.example.java;
22

33
import org.junit.jupiter.api.Test;
44
import org.springframework.amqp.rabbit.annotation.RabbitListenerAnnotationBeanPostProcessor;

spring-multirabbit-examples/spring-multirabbit-example-kotlin/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<relativePath />
1111
</parent>
1212

13-
<groupId>com.free-now.multirabbit</groupId>
13+
<groupId>com.wandercosta.multirabbit</groupId>
1414
<artifactId>spring-multirabbit-example-kotlin</artifactId>
1515
<version>2.7.1-SNAPSHOT</version>
1616
<packaging>jar</packaging>
@@ -20,7 +20,7 @@
2020

2121
<dependencies>
2222
<dependency>
23-
<groupId>com.free-now.multirabbit</groupId>
23+
<groupId>com.wandercosta.multirabbit</groupId>
2424
<artifactId>spring-multirabbit</artifactId>
2525
<version>${project.version}</version>
2626
</dependency>

0 commit comments

Comments
 (0)