-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathpom.xml
More file actions
82 lines (79 loc) · 2.67 KB
/
pom.xml
File metadata and controls
82 lines (79 loc) · 2.67 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<?xml version='1.0' encoding='UTF-8'?>
<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">
<modelVersion>4.0.0</modelVersion>
<groupId>com.google.cloud</groupId>
<artifactId>java-cloud-bom-tests</artifactId>
<version>0.75.0</version><!-- {x-version-update:java-cloud-bom-tests:current} -->
<name>A module to test Google Cloud Java BOMs</name>
<url>https://github.com/googleapis/java-cloud-bom</url>
<description>
A module to test Google Cloud Java BOMs
</description>
<organization>
<name>Google</name>
</organization>
<scm>
<connection>scm:git:git@github.com:googleapis/java-cloud-bom.git</connection>
<developerConnection>scm:git:git@github.com:googleapis/java-cloud-bom-java.git</developerConnection>
<url>https://github.com/googleapis/java-cloud-bom</url>
<tag>HEAD</tag>
</scm>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.target>1.8</maven.compiler.target>
<maven.compiler.source>1.8</maven.compiler.source>
</properties>
<licenses>
<license>
<name>Google Cloud Software License</name>
<url>https://raw.githubusercontent.com/googleapis/google-cloud-java/master/LICENSE</url>
</license>
</licenses>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava-bom</artifactId>
<version>33.5.0-jre</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<!-- adding comment for testing-->
<dependencies>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
</dependency>
<dependency>
<groupId>com.google.cloud.tools</groupId>
<artifactId>dependencies</artifactId>
<version>1.5.15</version>
</dependency>
<dependency>
<groupId>com.google.truth</groupId>
<artifactId>truth</artifactId>
<version>1.4.5</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.2</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<!-- To use the plugin goals in your POM or parent POM -->
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.5.5</version>
<configuration>
<argLine>-Xmx8g</argLine>
</configuration>
</plugin>
</plugins>
</build>
</project>