|
36 | 36 |
|
37 | 37 | <cdap.version>6.2.0</cdap.version>
|
38 | 38 | <gson.version>2.3</gson.version>
|
| 39 | + <http.version>4.5.2</http.version> |
39 | 40 | <plugin.version>2.4.0</plugin.version>
|
40 | 41 | <spark.version>2.1.3</spark.version>
|
41 | 42 |
|
42 | 43 | </properties>
|
43 | 44 |
|
44 | 45 | <dependencies>
|
45 | 46 |
|
46 |
| - <dependency> |
47 |
| - <groupId>io.cdap.cdap</groupId> |
48 |
| - <artifactId>cdap-etl-api</artifactId> |
49 |
| - <version>${cdap.version}</version> |
50 |
| - <scope>provided</scope> |
51 |
| - <exclusions> |
52 |
| - <exclusion> |
53 |
| - <groupId>com.google.code.gson</groupId> |
54 |
| - <artifactId>gson</artifactId> |
55 |
| - </exclusion> |
56 |
| - </exclusions> |
57 |
| - </dependency> |
58 |
| - |
59 |
| - <dependency> |
60 |
| - <groupId>io.cdap.cdap</groupId> |
61 |
| - <artifactId>cdap-etl-api-spark</artifactId> |
62 |
| - <version>${cdap.version}</version> |
63 |
| - <scope>provided</scope> |
64 |
| - </dependency> |
65 |
| - |
66 |
| - <dependency> |
67 |
| - <groupId>io.cdap.cdap</groupId> |
68 |
| - <artifactId>cdap-api-spark2_2.11</artifactId> |
69 |
| - <version>${cdap.version}</version> |
70 |
| - <scope>provided</scope> |
71 |
| - </dependency> |
| 47 | + <!-- CDAP COMMON |
| 48 | + --> |
| 49 | + <dependency> |
| 50 | + <groupId>io.cdap.cdap</groupId> |
| 51 | + <artifactId>cdap-common</artifactId> |
| 52 | + <version>${cdap.version}</version> |
| 53 | + <scope>provided</scope> |
| 54 | + <exclusions> |
| 55 | + <exclusion> |
| 56 | + <groupId>org.apache.httpcomponents</groupId> |
| 57 | + <artifactId>httpclient</artifactId> |
| 58 | + </exclusion> |
| 59 | + </exclusions> |
| 60 | + </dependency> |
| 61 | + |
| 62 | + <!-- CDAP ETL |
| 63 | + --> |
| 64 | + <dependency> |
| 65 | + <groupId>io.cdap.cdap</groupId> |
| 66 | + <artifactId>cdap-etl-api</artifactId> |
| 67 | + <version>${cdap.version}</version> |
| 68 | + <scope>provided</scope> |
| 69 | + <exclusions> |
| 70 | + <exclusion> |
| 71 | + <groupId>com.google.code.gson</groupId> |
| 72 | + <artifactId>gson</artifactId> |
| 73 | + </exclusion> |
| 74 | + </exclusions> |
| 75 | + </dependency> |
| 76 | + |
| 77 | + <!-- CDAP SPARK |
| 78 | + --> |
| 79 | + <dependency> |
| 80 | + <groupId>io.cdap.cdap</groupId> |
| 81 | + <artifactId>cdap-etl-api-spark</artifactId> |
| 82 | + <version>${cdap.version}</version> |
| 83 | + <scope>provided</scope> |
| 84 | + </dependency> |
| 85 | + |
| 86 | + <dependency> |
| 87 | + <groupId>io.cdap.cdap</groupId> |
| 88 | + <artifactId>cdap-api-spark2_2.11</artifactId> |
| 89 | + <version>${cdap.version}</version> |
| 90 | + <scope>provided</scope> |
| 91 | + </dependency> |
72 | 92 |
|
73 |
| - <!-- hydrator dependencies --> |
74 |
| - |
75 |
| - <dependency> |
76 |
| - <groupId>io.cdap.plugin</groupId> |
77 |
| - <artifactId>hydrator-common</artifactId> |
78 |
| - <version>${plugin.version}</version> |
79 |
| - </dependency> |
80 |
| - |
81 |
| - <!-- apache spark dependencies --> |
| 93 | + <!-- CDAP HYDRATOR |
| 94 | + --> |
| 95 | + <dependency> |
| 96 | + <groupId>io.cdap.plugin</groupId> |
| 97 | + <artifactId>hydrator-common</artifactId> |
| 98 | + <version>${plugin.version}</version> |
| 99 | + </dependency> |
82 | 100 |
|
83 |
| - <dependency> |
84 |
| - <groupId>org.apache.spark</groupId> |
85 |
| - <artifactId>spark-sql_2.11</artifactId> |
86 |
| - <version>${spark.version}</version> |
87 |
| - </dependency> |
88 |
| - |
89 |
| - <!-- google gson --> |
90 |
| - <dependency> |
91 |
| - <groupId>com.google.code.gson</groupId> |
92 |
| - <artifactId>gson</artifactId> |
93 |
| - <version>${gson.version}</version> |
94 |
| - </dependency> |
95 |
| - |
| 101 | + <!-- SPARK SQL |
| 102 | + --> |
| 103 | + <dependency> |
| 104 | + <groupId>org.apache.spark</groupId> |
| 105 | + <artifactId>spark-sql_2.11</artifactId> |
| 106 | + <version>${spark.version}</version> |
| 107 | + </dependency> |
| 108 | + |
| 109 | + <!-- GOOGLE GSON |
| 110 | + --> |
| 111 | + <dependency> |
| 112 | + <groupId>com.google.code.gson</groupId> |
| 113 | + <artifactId>gson</artifactId> |
| 114 | + <version>${gson.version}</version> |
| 115 | + </dependency> |
| 116 | + |
| 117 | + <!-- HTTP CLIENT |
| 118 | + --> |
| 119 | + <dependency> |
| 120 | + <groupId>org.apache.httpcomponents</groupId> |
| 121 | + <artifactId>httpclient</artifactId> |
| 122 | + <version>${http.version}</version> |
| 123 | + </dependency> |
96 | 124 | </dependencies>
|
97 | 125 |
|
98 | 126 | <build>
|
|
0 commit comments