Skip to content

Commit

Permalink
feat: Add pubsublite-kafka-shim directory and disable deployment (#273)
Browse files Browse the repository at this point in the history
* feat: Add pubsublite-kafka-shim directory and disable deployment

* fix: remove dependencies until they are used.
  • Loading branch information
dpcollins-google committed Oct 2, 2020
1 parent c5fc9f9 commit 8bf29f8
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 0 deletions.
1 change: 1 addition & 0 deletions pom.xml
Expand Up @@ -82,6 +82,7 @@
<module>google-cloud-pubsublite</module>
<module>grpc-google-cloud-pubsublite-v1</module>
<module>proto-google-cloud-pubsublite-v1</module>
<module>pubsublite-kafka-shim</module>
<module>pubsublite-beam-io</module>
</modules>

Expand Down
29 changes: 29 additions & 0 deletions pubsublite-kafka-shim/pom.xml
@@ -0,0 +1,29 @@
<?xml version="1.0"?>
<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/xsd/maven-4.0.0.xsd">
<parent>
<groupId>com.google.cloud</groupId>
<artifactId>google-cloud-pubsublite-parent</artifactId>
<version>0.4.2-SNAPSHOT</version><!-- {x-version-update:google-cloud-pubsublite:current} -->
<relativePath>../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>com.google.cloud</groupId>
<artifactId>pubsublite-kafka-shim</artifactId>
<version>0.4.2-SNAPSHOT</version><!-- {x-version-update:google-cloud-pubsublite:current} -->
<packaging>jar</packaging>
<name>Pub/Sub Lite Kafka Shim</name>
<url>https://github.com/googleapis/java-pubsublite</url>
<description>Kafka Producer and Consumer for Google Cloud Pub/Sub Lite</description>
<build>
<plugins>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<configuration>
<!-- TODO(dpcollins-google): Remove this to deploy.-->
<skipNexusStagingDeployMojo>true</skipNexusStagingDeployMojo>
</configuration>
</plugin>
</plugins>
</build>
</project>

0 comments on commit 8bf29f8

Please sign in to comment.