Skip to content
This repository has been archived by the owner on Sep 1, 2024. It is now read-only.

Commit

Permalink
ExchangeServiceApplication.java prepared
Browse files Browse the repository at this point in the history
  • Loading branch information
l00pss committed Mar 20, 2024
1 parent e23a1a0 commit 0d84e0e
Show file tree
Hide file tree
Showing 22 changed files with 25 additions and 51 deletions.
28 changes: 19 additions & 9 deletions exchange-service/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
</parent>
<modelVersion>4.0.0</modelVersion>

<groupId>com.intellibucket.onnetwork</groupId>
<groupId>com.intellibucket.onnetwork.exchange</groupId>
<artifactId>exchange-service</artifactId>

<properties>
Expand Down Expand Up @@ -47,14 +47,14 @@
<artifactId>connect-json</artifactId>
<version>3.5.0</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
<!-- <dependency>-->
<!-- <groupId>org.slf4j</groupId>-->
<!-- <artifactId>slf4j-simple</artifactId>-->
<!-- </dependency>-->
<!-- <dependency>-->
<!-- <groupId>org.slf4j</groupId>-->
<!-- <artifactId>slf4j-api</artifactId>-->
<!-- </dependency>-->
<dependency>
<groupId>az.rock.lib</groupId>
<artifactId>rock-exception</artifactId>
Expand All @@ -63,5 +63,15 @@
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-commons</artifactId>
</dependency>
<dependency>
<groupId>io.grpc</groupId>
<artifactId>grpc-stub</artifactId>
<version>1.62.2</version>
</dependency>
<dependency>
<groupId>net.devh</groupId>
<artifactId>grpc-client-spring-boot-starter</artifactId>
<version>3.0.0.RELEASE</version>
</dependency>
</dependencies>
</project>

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
package com.intellibucket.onnetwork;
package com.intellibucket.onnetwork.exchange;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.web.servlet.ServletComponentScan;
import org.springframework.cloud.client.discovery.EnableDiscoveryClient;

@SpringBootApplication
@EnableDiscoveryClient
@ServletComponentScan
public class ExchangeServiceApplication {
public static void main(String[] args) {
SpringApplication.run(ExchangeServiceApplication.class, args);
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
package com.intellibucket.onnetwork.exchange.messaging.abstracts;
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
package com.intellibucket.onnetwork.exchange.messaging.concretes;
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
package com.intellibucket.onnetwork.exchange.messaging;

This file was deleted.

This file was deleted.

This file was deleted.

0 comments on commit 0d84e0e

Please sign in to comment.