|
36 | 36 | <maven.compiler.source>1.8</maven.compiler.source> |
37 | 37 | </properties> |
38 | 38 |
|
39 | | - <dependencies> |
40 | | - <dependency> |
41 | | - <groupId>javax.servlet</groupId> |
42 | | - <artifactId>javax.servlet-api</artifactId> |
43 | | - <version>3.1.0</version> |
44 | | - <type>jar</type> |
45 | | - <scope>provided</scope> |
46 | | - </dependency> |
| 39 | + <!-- [START dependencies] --> |
| 40 | + <!-- Using libraries-bom to manage versions. |
| 41 | + See https://github.com/GoogleCloudPlatform/cloud-opensource-java/wiki/The-Google-Cloud-Platform-Libraries-BOM --> |
| 42 | + <dependencyManagement> |
| 43 | + <dependencies> |
| 44 | + <dependency> |
| 45 | + <groupId>com.google.cloud</groupId> |
| 46 | + <artifactId>libraries-bom</artifactId> |
| 47 | + <version>3.0.0</version> |
| 48 | + <type>pom</type> |
| 49 | + <scope>import</scope> |
| 50 | + </dependency> |
| 51 | + </dependencies> |
| 52 | + </dependencyManagement> |
47 | 53 |
|
48 | | - <!-- [START dependencies] --> |
| 54 | + <dependencies> |
49 | 55 | <dependency> |
50 | 56 | <groupId>com.google.cloud</groupId> |
51 | 57 | <artifactId>google-cloud-pubsub</artifactId> |
52 | | - <version>1.100.0</version> |
53 | 58 | </dependency> |
54 | 59 | <dependency> |
55 | 60 | <groupId>com.google.cloud</groupId> |
56 | 61 | <artifactId>google-cloud-datastore</artifactId> |
57 | | - <version>1.100.0</version> |
58 | 62 | </dependency> |
59 | 63 | <dependency> |
60 | 64 | <groupId>com.google.cloud</groupId> |
61 | 65 | <artifactId>google-cloud-translate</artifactId> |
62 | | - <version>1.94.0</version> |
63 | 66 | </dependency> |
64 | 67 | <!-- [END dependencies] --> |
| 68 | + <dependency> |
| 69 | + <groupId>javax.servlet</groupId> |
| 70 | + <artifactId>javax.servlet-api</artifactId> |
| 71 | + <version>3.1.0</version> |
| 72 | + <type>jar</type> |
| 73 | + <scope>provided</scope> |
| 74 | + </dependency> |
| 75 | + <!-- [START dependencies] --> |
65 | 76 | </dependencies> |
| 77 | + <!-- [END dependencies] --> |
66 | 78 | <build> |
67 | 79 | <!-- for hot reload of the web application --> |
68 | 80 | <outputDirectory>${project.build.directory}/${project.build.finalName}/WEB-INF/classes</outputDirectory> |
|
0 commit comments