Skip to content

Commit

Permalink
Consistent naming for EIP patterns iluwatar#733
Browse files Browse the repository at this point in the history
  • Loading branch information
pokemon4e committed Apr 12, 2018
1 parent 379a825 commit 3b45f2c
Show file tree
Hide file tree
Showing 16 changed files with 16 additions and 16 deletions.
File renamed without changes.
6 changes: 3 additions & 3 deletions message-channel/README.md → eip-message-channel/README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
---
layout: pattern
title: Message Channel
folder: message-channel
permalink: /patterns/message-channel/
title: EIP Message Channel
folder: eip-message-channel
permalink: /patterns/eip-message-channel/
categories: Integration
tags:
- Java
Expand Down
File renamed without changes
File renamed without changes.
2 changes: 1 addition & 1 deletion message-channel/pom.xml → eip-message-channel/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
<artifactId>java-design-patterns</artifactId>
<version>1.20.0-SNAPSHOT</version>
</parent>
<artifactId>message-channel</artifactId>
<artifactId>eip-message-channel</artifactId>
<dependencies>
<dependency>
<groupId>org.apache.camel</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
package com.iluwatar.message.channel;
package com.iluwatar.eip.message.channel;

import org.apache.camel.CamelContext;
import org.apache.camel.builder.RouteBuilder;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
package com.iluwatar.publish.subscribe;
package com.iluwatar.eip.message.channel;

import org.junit.jupiter.api.Test;

Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
---
layout: pattern
title: Publish Subscribe
folder: publish-subscribe
permalink: /patterns/publish-subscribe/
title: EIP Publish Subscribe
folder: eip-publish-subscribe
permalink: /patterns/eip-publish-subscribe/
categories: Integration
tags:
- Java
Expand Down
4 changes: 2 additions & 2 deletions publish-subscribe/pom.xml → eip-publish-subscribe/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
<artifactId>java-design-patterns</artifactId>
<version>1.20.0-SNAPSHOT</version>
</parent>
<artifactId>publish-subscribe</artifactId>
<artifactId>eip-publish-subscribe</artifactId>
<dependencies>
<dependency>
<groupId>org.apache.camel</groupId>
Expand All @@ -51,4 +51,4 @@
<scope>test</scope>
</dependency>
</dependencies>
</project>
</project>
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
package com.iluwatar.publish.subscribe;
package com.iluwatar.eip.publish.subscribe;

import org.apache.camel.CamelContext;
import org.apache.camel.ProducerTemplate;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
package com.iluwatar.message.channel;
package com.iluwatar.eip.publish.subscribe;

import org.junit.jupiter.api.Test;

Expand Down
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -117,11 +117,11 @@
<module>business-delegate</module>
<module>half-sync-half-async</module>
<module>layers</module>
<module>message-channel</module>
<module>eip-message-channel</module>
<module>fluentinterface</module>
<module>reactor</module>
<module>caching</module>
<module>publish-subscribe</module>
<module>eip-publish-subscribe</module>
<module>delegation</module>
<module>event-driven-architecture</module>
<module>api-gateway</module>
Expand Down Expand Up @@ -475,4 +475,4 @@
</plugins>
</reporting>

</project>
</project>

0 comments on commit 3b45f2c

Please sign in to comment.