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

Commit f63619e

Browse files
feat: implement flatten plugin in client, grpc, and proto modules (#134)
1 parent b788609 commit f63619e

File tree

5 files changed

+29
-1
lines changed

5 files changed

+29
-1
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,4 @@
33
target/
44
__pycache__
55

6+
.flattened-pom.xml

google-cloud-bigquerydatatransfer/pom.xml

+9
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,15 @@
8484
</dependency>
8585
</dependencies>
8686

87+
<build>
88+
<plugins>
89+
<plugin>
90+
<groupId>org.codehaus.mojo</groupId>
91+
<artifactId>flatten-maven-plugin</artifactId>
92+
</plugin>
93+
</plugins>
94+
</build>
95+
8796
<profiles>
8897
<profile>
8998
<id>java9</id>

grpc-google-cloud-bigquerydatatransfer-v1/pom.xml

+9
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,15 @@
3939
</dependency>
4040
</dependencies>
4141

42+
<build>
43+
<plugins>
44+
<plugin>
45+
<groupId>org.codehaus.mojo</groupId>
46+
<artifactId>flatten-maven-plugin</artifactId>
47+
</plugin>
48+
</plugins>
49+
</build>
50+
4251
<profiles>
4352
<profile>
4453
<id>java9</id>

proto-google-cloud-bigquerydatatransfer-v1/pom.xml

+9
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,13 @@
3030
<artifactId>guava</artifactId>
3131
</dependency>
3232
</dependencies>
33+
34+
<build>
35+
<plugins>
36+
<plugin>
37+
<groupId>org.codehaus.mojo</groupId>
38+
<artifactId>flatten-maven-plugin</artifactId>
39+
</plugin>
40+
</plugins>
41+
</build>
3342
</project>

samples/snapshot/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
2424
</properties>
2525

26-
<!-- {x-version-update-start::current} -->
26+
<!-- {x-version-update-start:google-cloud-bigquerydatatransfer:current} -->
2727
<dependencies>
2828
<dependency>
2929
<groupId>com.google.cloud</groupId>

0 commit comments

Comments
 (0)