Skip to content

Commit

Permalink
Add phonebook
Browse files Browse the repository at this point in the history
  • Loading branch information
gi-wg2 committed Nov 3, 2023
1 parent c42bd1a commit 09deb76
Show file tree
Hide file tree
Showing 9 changed files with 75 additions and 7 deletions.
2 changes: 1 addition & 1 deletion wgtwo/consents/v0/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<dependency>
<groupId>com.wgtwo.api.v0.grpc</groupId>
<artifactId>common</artifactId>
<version>0.1.8-SNAPSHOT</version>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>io.grpc</groupId>
Expand Down
2 changes: 1 addition & 1 deletion wgtwo/data/v0/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<dependency>
<groupId>com.wgtwo.api.v0.grpc</groupId>
<artifactId>common</artifactId>
<version>0.1.8-SNAPSHOT</version>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>io.grpc</groupId>
Expand Down
2 changes: 1 addition & 1 deletion wgtwo/events/v0/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<dependency>
<groupId>com.wgtwo.api.v0.grpc</groupId>
<artifactId>common</artifactId>
<version>0.1.8-SNAPSHOT</version>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>io.grpc</groupId>
Expand Down
2 changes: 1 addition & 1 deletion wgtwo/lookup/v0/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<dependency>
<groupId>com.wgtwo.api.v0.grpc</groupId>
<artifactId>common</artifactId>
<version>0.1.8-SNAPSHOT</version>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>io.grpc</groupId>
Expand Down
2 changes: 1 addition & 1 deletion wgtwo/mms/v0/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<dependency>
<groupId>com.wgtwo.api.v0.grpc</groupId>
<artifactId>common</artifactId>
<version>0.1.8-SNAPSHOT</version>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>io.grpc</groupId>
Expand Down
67 changes: 67 additions & 0 deletions wgtwo/phonebook/v0/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.wgtwo.api.v0</groupId>
<artifactId>grpc-pom</artifactId>
<version>0.1.9-SNAPSHOT</version>
<relativePath>../../pom-v0.xml</relativePath>
</parent>

<name>${project.groupId} phonebook</name>
<artifactId>phonebook</artifactId>
<groupId>com.wgtwo.api.v0.grpc</groupId>
<version>0.1.9-SNAPSHOT</version>
<packaging>jar</packaging>

<properties>
<maven.deploy.skip>false</maven.deploy.skip>
</properties>

<dependencies>
<dependency>
<groupId>com.wgtwo.api.v0.grpc</groupId>
<artifactId>common</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>io.grpc</groupId>
<artifactId>grpc-protobuf</artifactId>
</dependency>
<dependency>
<groupId>io.grpc</groupId>
<artifactId>grpc-stub</artifactId>
</dependency>
<dependency>
<groupId>javax.annotation</groupId>
<artifactId>javax.annotation-api</artifactId>
</dependency>
</dependencies>

<build>
<extensions>
<extension>
<groupId>kr.motd.maven</groupId>
<artifactId>os-maven-plugin</artifactId>
</extension>
</extensions>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.xolstice.maven.plugins</groupId>
<artifactId>protobuf-maven-plugin</artifactId>
<configuration>
<includes>
<include>wgtwo/annotations/annotations.proto</include>
<include>wgtwo/common/v0/*.proto</include>
<include>wgtwo/mms/v0/*.proto</include>
</includes>
</configuration>
</plugin>
</plugins>
</build>

</project>
1 change: 1 addition & 0 deletions wgtwo/pom-v0.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
<module>lookup/v0</module>
<module>mms/v0</module>
<module>products/v0</module>
<module>phonebook/v0</module>
<module>sms/v0</module>
<module>subscription/v0</module>
<module>voicemail/v0</module>
Expand Down
2 changes: 1 addition & 1 deletion wgtwo/sms/v0/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<dependency>
<groupId>com.wgtwo.api.v0.grpc</groupId>
<artifactId>common</artifactId>
<version>0.1.8-SNAPSHOT</version>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>io.grpc</groupId>
Expand Down
2 changes: 1 addition & 1 deletion wgtwo/subscription/v0/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<dependency>
<groupId>com.wgtwo.api.v0.grpc</groupId>
<artifactId>common</artifactId>
<version>0.1.8-SNAPSHOT</version>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>io.grpc</groupId>
Expand Down

0 comments on commit 09deb76

Please sign in to comment.