Skip to content

Commit 930e00f

Browse files
committed
added style check
1 parent e8fd790 commit 930e00f

File tree

1 file changed

+15
-5
lines changed

1 file changed

+15
-5
lines changed

translate/pom.xml

+15-5
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,6 @@
22
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
33
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
44
<modelVersion>4.0.0</modelVersion>
5-
<parent>
6-
<groupId>com.google.cloud</groupId>
7-
<artifactId>doc-samples</artifactId>
8-
<version>1.0.0</version>
9-
</parent>
105
<groupId>com.google.cloud.translate.samples</groupId>
116
<artifactId>translate</artifactId>
127
<version>1.0-SNAPSHOT</version>
@@ -15,6 +10,12 @@
1510
<properties>
1611
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1712
</properties>
13+
<parent>
14+
<groupId>com.google.cloud</groupId>
15+
<artifactId>shared-configuration</artifactId>
16+
<version>1.0.0</version>
17+
<relativePath>../java-repo-tools</relativePath>
18+
</parent>
1819
<dependencies>
1920
<dependency>
2021
<groupId>com.google.cloud</groupId>
@@ -48,6 +49,15 @@
4849
</descriptorRefs>
4950
</configuration>
5051
</plugin>
52+
<plugin>
53+
<groupId>org.apache.maven.plugins</groupId>
54+
<version>3.3</version>
55+
<artifactId>maven-compiler-plugin</artifactId>
56+
<configuration>
57+
<source>1.8</source>
58+
<target>1.8</target>
59+
</configuration>
60+
</plugin>
5161
</plugins>
5262
</build>
5363
</project>

0 commit comments

Comments
 (0)