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

Commit

Permalink
feat: implement flatten plugin in client, grpc, and proto modules (#134)
Browse files Browse the repository at this point in the history
  • Loading branch information
stephaniewang526 committed Apr 20, 2020
1 parent b788609 commit f63619e
Show file tree
Hide file tree
Showing 5 changed files with 29 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -3,3 +3,4 @@
target/
__pycache__

.flattened-pom.xml
9 changes: 9 additions & 0 deletions google-cloud-bigquerydatatransfer/pom.xml
Expand Up @@ -84,6 +84,15 @@
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>flatten-maven-plugin</artifactId>
</plugin>
</plugins>
</build>

<profiles>
<profile>
<id>java9</id>
Expand Down
9 changes: 9 additions & 0 deletions grpc-google-cloud-bigquerydatatransfer-v1/pom.xml
Expand Up @@ -39,6 +39,15 @@
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>flatten-maven-plugin</artifactId>
</plugin>
</plugins>
</build>

<profiles>
<profile>
<id>java9</id>
Expand Down
9 changes: 9 additions & 0 deletions proto-google-cloud-bigquerydatatransfer-v1/pom.xml
Expand Up @@ -30,4 +30,13 @@
<artifactId>guava</artifactId>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>flatten-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>
2 changes: 1 addition & 1 deletion samples/snapshot/pom.xml
Expand Up @@ -23,7 +23,7 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

<!-- {x-version-update-start::current} -->
<!-- {x-version-update-start:google-cloud-bigquerydatatransfer:current} -->
<dependencies>
<dependency>
<groupId>com.google.cloud</groupId>
Expand Down

0 comments on commit f63619e

Please sign in to comment.