Skip to content

com.fullstack used in Maven example #31

Open
@joemadeus

Description

The (apparently) out of date com.fullcontact.grpc-jersey group ID is still being used in the maven example, which led to a bit of confusion in trying to set up the project. Substitute com.xorlev.grpc-jersey instead.

diff --git a/examples/maven/pom.xml b/examples/maven/pom.xml
index d958f25..7cd0347 100644
--- a/examples/maven/pom.xml
+++ b/examples/maven/pom.xml
@@ -4,7 +4,7 @@
          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
     <modelVersion>4.0.0</modelVersion>
 
-    <groupId>com.fullcontact.rpc.example</groupId>
+    <groupId>com.xorlev.rpc.example</groupId>
     <artifactId>test-grpc-jersey</artifactId>
     <version>1.0-SNAPSHOT</version>
 
@@ -45,7 +45,7 @@
             <version>${grpc.version}</version>
         </dependency>
         <dependency>
-            <groupId>com.fullcontact.grpc-jersey</groupId>
+            <groupId>com.xorlev.grpc-jersey</groupId>
             <artifactId>jersey-rpc-support</artifactId>
             <version>${grpc.jersey.version}</version>
         </dependency>
@@ -104,7 +104,7 @@
                         </goals>
                         <configuration>
                             <pluginId>grpc-jersey</pluginId>
-                            <pluginArtifact>com.fullcontact.grpc-jersey:protoc-gen-jersey:${grpc.jersey.version}:exe:${os.detected.classifier}</pluginArtifact>
+                            <pluginArtifact>com.xorlev.grpc-jersey:protoc-gen-jersey:${grpc.jersey.version}:exe:${os.detected.classifier}</pluginArtifact>
                             <outputDirectory>target/generated-sources/protobuf/java</outputDirectory>
                             <clearOutputDirectory>false</clearOutputDirectory>
                         </configuration>

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions

      com.fullstack used in Maven example · Issue #31 · Xorlev/grpc-jersey