Advertisement
Guest User

Untitled

a guest
Jul 20th, 2018
397
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.26 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  3. ~ Copyright (C) 2017 Google Inc. ~ ~ Licensed under the Apache License, Version
  4. 2.0 (the "License"); you may not ~ use this file except in compliance with
  5. the License. You may obtain a copy of ~ the License at ~ ~ http://www.apache.org/licenses/LICENSE-2.0
  6. ~ ~ Unless required by applicable law or agreed to in writing, software ~
  7. distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
  8. ~ WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
  9. ~ License for the specific language governing permissions and limitations
  10. under ~ the License. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
  11. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  12. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  13. <modelVersion>4.0.0</modelVersion>
  14.  
  15. <groupId>whatever</groupId>
  16. <artifactId>whateverID</artifactId>
  17. <version>0.0.1-SNAPSHOT</version>
  18.  
  19. <properties>
  20. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  21. <surefire-plugin.version>2.20</surefire-plugin.version>
  22. </properties>
  23.  
  24. <build>
  25. <plugins>
  26. <plugin>
  27. <groupId>org.apache.maven.plugins</groupId>
  28. <artifactId>maven-compiler-plugin</artifactId>
  29. <version>3.6.1</version>
  30. <configuration>
  31. <source>1.8</source>
  32. <target>1.8</target>
  33. </configuration>
  34. </plugin>
  35.  
  36. <plugin>
  37. <groupId>org.apache.maven.plugins</groupId>
  38. <artifactId>maven-surefire-plugin</artifactId>
  39. <version>${surefire-plugin.version}</version>
  40. <configuration>
  41. <parallel>all</parallel>
  42. <threadCount>4</threadCount>
  43. <redirectTestOutputToFile>true</redirectTestOutputToFile>
  44. </configuration>
  45. </plugin>
  46.  
  47. <!-- Ensure that the Maven jar plugin runs before the Maven
  48. shade plugin by listing the plugin higher within the file. -->
  49. <plugin>
  50. <groupId>org.apache.maven.plugins</groupId>
  51. <artifactId>maven-jar-plugin</artifactId>
  52. <version>3.0.2</version>
  53. </plugin>
  54. </plugins>
  55. </build>
  56.  
  57. <dependencies>
  58. <!-- https://mvnrepository.com/artifact/org.apache.beam/beam-sdks-java-core -->
  59. <dependency>
  60. <groupId>org.apache.beam</groupId>
  61. <artifactId>beam-sdks-java-core</artifactId>
  62. <version>2.5.0</version>
  63. </dependency>
  64.  
  65. <!-- https://mvnrepository.com/artifact/org.apache.beam/beam-runners-google-cloud-dataflow-java -->
  66. <dependency>
  67. <groupId>org.apache.beam</groupId>
  68. <artifactId>beam-runners-google-cloud-dataflow-java</artifactId>
  69. <version>2.5.0</version>
  70. </dependency>
  71.  
  72. <!-- Adds a dependency on a specific version of the Dataflow SDK. -->
  73. <dependency>
  74. <groupId>com.google.cloud.dataflow</groupId>
  75. <artifactId>google-cloud-dataflow-java-sdk-all</artifactId>
  76. <version>2.5.0</version>
  77. </dependency>
  78.  
  79. <!-- Add slf4j API frontend binding with JUL backend -->
  80. <dependency>
  81. <groupId>org.slf4j</groupId>
  82. <artifactId>slf4j-api</artifactId>
  83. <version>1.7.25</version>
  84. </dependency>
  85.  
  86. <dependency>
  87. <groupId>org.slf4j</groupId>
  88. <artifactId>slf4j-jdk14</artifactId>
  89. <version>1.7.25</version>
  90. <!-- When loaded at runtime this will wire up slf4j to the JUL backend -->
  91. <scope>runtime</scope>
  92. </dependency>
  93.  
  94. <!-- https://mvnrepository.com/artifact/com.google.cloud/google-cloud-storage -->
  95. <dependency>
  96. <groupId>com.google.cloud</groupId>
  97. <artifactId>google-cloud-storage</artifactId>
  98. <version>1.36.0</version>
  99. </dependency>
  100.  
  101. </dependencies>
  102.  
  103.  
  104. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement