forked from Azure/azure-kusto-spark
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
90 lines (84 loc) · 3.31 KB
/
pom.xml
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
83
84
85
86
87
88
89
90
<?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.microsoft.azure.kusto</groupId>
<artifactId>azure-kusto-spark</artifactId>
<packaging>pom</packaging>
<version>${revision}</version>
<properties>
<revision>3.1.3</revision>
<!-- Spark dependencies -->
<scala.version.major>2.12</scala.version.major>
<scala.version.minor>11</scala.version.minor>
<spark.version.major>3.0</spark.version.major>
<spark.version.minor>1</spark.version.minor>
<!-- other dependencies -->
<kusto-sdk.version>3.1.3</kusto-sdk.version>
<specs2.version>3.6.5</specs2.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven-source-plugin.version>3.0.1</maven-source-plugin.version>
<azure-storage.version>8.6.5</azure-storage.version>
<keyvault-secrets.version>4.1.5</keyvault-secrets.version>
<azure-identity.version>1.2.4</azure-identity.version>
<commons-lang3.version>3.9</commons-lang3.version>
<fasterxml.jackson.version>[2.11.0,2.12.0)</fasterxml.jackson.version>
<slf4j.version>1.8.0-beta4</slf4j.version>
<joda-time.version>2.10.2</joda-time.version>
<json.version>20201115</json.version>
</properties>
<inceptionYear>2018</inceptionYear>
<scm>
<url>scm:git:https://github.com/Azure/azure-kusto-spark</url>
<connection>scm:git:https://github.com/Azure/azure-kusto-spark</connection>
</scm>
<url>https://github.com/Azure/azure-kusto-spark</url>
<licenses>
<license>
<name>Apache 2.0 License</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.html</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<id>microsoft</id>
<name>Microsoft</name>
</developer>
</developers>
<modules>
<module>connector</module>
<module>samples</module>
</modules>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>flatten-maven-plugin</artifactId>
<version>1.1.0</version>
<configuration>
<flattenMode>oss</flattenMode>
</configuration>
<executions>
<!-- enable flattening -->
<execution>
<id>flatten</id>
<phase>process-resources</phase>
<goals>
<goal>flatten</goal>
</goals>
</execution>
<!-- ensure proper cleanup -->
<execution>
<id>flatten.clean</id>
<phase>clean</phase>
<goals>
<goal>clean</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>