|
7 | 7 | <name>Google Cloud Logging Snippets</name> |
8 | 8 | <url>https://github.com/googleapis/java-logging</url> |
9 | 9 |
|
| 10 | + <!-- |
| 11 | + The parent pom defines common style checks and testing strategies for our samples. |
| 12 | + Removing or replacing it should not affect the execution of the samples in anyway. |
| 13 | + --> |
10 | 14 | <parent> |
11 | | - <groupId>com.google.cloud</groupId> |
12 | | - <artifactId>google-cloud-logging-samples</artifactId> |
13 | | - <version>0.0.1-SNAPSHOT</version> |
| 15 | + <groupId>com.google.cloud.samples</groupId> |
| 16 | + <artifactId>shared-configuration</artifactId> |
| 17 | + <version>1.0.18</version> |
14 | 18 | </parent> |
15 | 19 |
|
16 | 20 | <properties> |
|
19 | 23 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
20 | 24 | </properties> |
21 | 25 |
|
| 26 | + <!-- [START logging_install_with_bom] --> |
| 27 | + <dependencyManagement> |
| 28 | + <dependencies> |
| 29 | + <dependency> |
| 30 | + <groupId>com.google.cloud</groupId> |
| 31 | + <artifactId>libraries-bom</artifactId> |
| 32 | + <version>10.0.0</version> |
| 33 | + <type>pom</type> |
| 34 | + <scope>import</scope> |
| 35 | + </dependency> |
| 36 | + </dependencies> |
| 37 | + </dependencyManagement> |
| 38 | + |
22 | 39 | <dependencies> |
23 | 40 | <dependency> |
24 | 41 | <groupId>com.google.cloud</groupId> |
25 | 42 | <artifactId>google-cloud-logging</artifactId> |
26 | | - <version>1.101.3-SNAPSHOT</version><!-- {x-version-update:google-cloud-logging:current} --> |
27 | 43 | </dependency> |
| 44 | + <!-- [START_EXCLUDE] --> |
| 45 | + <dependency> |
| 46 | + <groupId>junit</groupId> |
| 47 | + <artifactId>junit</artifactId> |
| 48 | + <version>4.13</version> |
| 49 | + <scope>test</scope> |
| 50 | + </dependency> |
| 51 | + <dependency> |
| 52 | + <groupId>com.google.truth</groupId> |
| 53 | + <artifactId>truth</artifactId> |
| 54 | + <version>1.0.1</version> |
| 55 | + <scope>test</scope> |
| 56 | + </dependency> |
| 57 | + <!-- [END_EXCLUDE] --> |
28 | 58 | </dependencies> |
| 59 | + <!-- [END logging_install_with_bom] --> |
29 | 60 | </project> |
0 commit comments