2018-08-09 16:29:01 +03:00
|
|
|
<?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>
|
2018-08-12 11:53:29 +03:00
|
|
|
<groupId>com.microsoft.azure.kusto</groupId>
|
|
|
|
<artifactId>kusto-client</artifactId>
|
|
|
|
<packaging>pom</packaging>
|
2019-03-12 00:21:22 +03:00
|
|
|
<version>${revision}</version>
|
2018-08-09 16:29:01 +03:00
|
|
|
|
2019-03-17 14:57:56 +03:00
|
|
|
<url>https://github.com/Azure/azure-kusto-java</url>
|
2018-09-17 20:17:06 +03:00
|
|
|
<scm>
|
|
|
|
<url>scm:git:https://github.com/Azure/azure-kusto-java</url>
|
|
|
|
<connection>scm:git:https://github.com/Azure/azure-kusto-java</connection>
|
|
|
|
</scm>
|
|
|
|
|
|
|
|
<licenses>
|
|
|
|
<license>
|
|
|
|
<name>MIT License</name>
|
|
|
|
<url>http://www.opensource.org/licenses/mit-license.php</url>
|
|
|
|
<distribution>repo</distribution>
|
|
|
|
</license>
|
|
|
|
</licenses>
|
|
|
|
|
|
|
|
<developers>
|
|
|
|
<developer>
|
|
|
|
<id>microsoft</id>
|
|
|
|
<name>Microsoft</name>
|
|
|
|
</developer>
|
|
|
|
</developers>
|
|
|
|
|
|
|
|
<properties>
|
2020-12-13 14:39:06 +03:00
|
|
|
<revision>2.4.2</revision> <!-- CHANGE THIS to adjust project version-->
|
2018-09-27 15:56:11 +03:00
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
2018-09-17 20:17:06 +03:00
|
|
|
<java.version>1.8</java.version>
|
2019-05-22 13:35:24 +03:00
|
|
|
|
|
|
|
<!-- Versions below are for several dependencies we're using in the data & ingest modules
|
|
|
|
-->
|
|
|
|
|
|
|
|
<!-- Compile dependencies -->
|
|
|
|
<slf4j.version>1.8.0-beta4</slf4j.version>
|
|
|
|
<commons-lang3.version>3.9</commons-lang3.version>
|
2020-12-20 20:42:18 +03:00
|
|
|
<msal4j.version>1.7.0</msal4j.version>
|
2019-05-22 13:35:24 +03:00
|
|
|
<httpclient.version>4.5.8</httpclient.version>
|
|
|
|
<httpcore.version>4.4.11</httpcore.version>
|
2020-03-24 15:29:15 +03:00
|
|
|
<json.version>20190722</json.version>
|
2020-09-07 10:00:03 +03:00
|
|
|
<fasterxml.jackson.core.version>[2.11.0,2.12.0)</fasterxml.jackson.core.version>
|
2019-05-22 13:35:24 +03:00
|
|
|
<azure-storage.version>8.3.0</azure-storage.version>
|
|
|
|
|
|
|
|
<!-- Test dependencies -->
|
|
|
|
<bouncycastle.version>1.61</bouncycastle.version>
|
|
|
|
<jsonassert.version>1.5.0</jsonassert.version>
|
|
|
|
<sqlite-jdbc.version>3.27.2.1</sqlite-jdbc.version>
|
|
|
|
<annotations.version>17.0.0</annotations.version>
|
|
|
|
|
|
|
|
<!-- Other dependencies -->
|
2018-09-17 20:17:06 +03:00
|
|
|
<maven-compiler-plugin.version>3.8.0</maven-compiler-plugin.version>
|
2019-03-12 00:21:22 +03:00
|
|
|
<maven-assembly-plugin.version>3.1.1</maven-assembly-plugin.version>
|
2018-12-18 19:58:51 +03:00
|
|
|
<maven-surefire-plugin.version>2.22.1</maven-surefire-plugin.version>
|
2019-01-27 16:43:05 +03:00
|
|
|
<maven-javadoc-plugin.version>3.0.1</maven-javadoc-plugin.version>
|
|
|
|
<maven-source-plugin.version>3.0.1</maven-source-plugin.version>
|
2019-05-22 13:35:24 +03:00
|
|
|
<maven-dependency-plugin.version>3.1.1</maven-dependency-plugin.version>
|
|
|
|
<junit.version>5.4.2</junit.version>
|
|
|
|
<mockito.version>2.27.0</mockito.version>
|
2018-09-17 20:17:06 +03:00
|
|
|
</properties>
|
|
|
|
|
2018-08-12 11:53:29 +03:00
|
|
|
<modules>
|
|
|
|
<module>ingest</module>
|
|
|
|
<module>data</module>
|
|
|
|
<module>samples</module>
|
|
|
|
</modules>
|
2018-08-09 16:29:01 +03:00
|
|
|
|
2019-03-12 00:21:22 +03:00
|
|
|
<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>
|
2019-08-25 18:13:08 +03:00
|
|
|
</project>
|