2022-03-27 17:03:41 +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>
|
|
|
|
<groupId>com.microsoft.azure.kusto</groupId>
|
|
|
|
<artifactId>kusto-quickstart</artifactId>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
<version>${revision}</version>
|
|
|
|
|
|
|
|
<!-- The Quickstart app is designed to be standalone. We therefore have to repeat from instead of using the parent pom. -->
|
|
|
|
<url>https://github.com/Azure/azure-kusto-java</url>
|
|
|
|
<scm>
|
|
|
|
<url>scm:git:https://github.com/Azure/azure-kusto-java</url>
|
|
|
|
<connection>scm:git:https://github.com/Azure/azure-kusto-java</connection>
|
|
|
|
</scm>
|
|
|
|
<distributionManagement>
|
|
|
|
<downloadUrl>https://github.com/Azure/azure-kusto-java/releases</downloadUrl>
|
|
|
|
</distributionManagement>
|
|
|
|
<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>
|
2024-03-24 15:04:17 +03:00
|
|
|
<revision>6.0.0</revision> <!-- CHANGE THIS to match project version in the root (not technically parent) pom -->
|
2023-06-15 18:08:00 +03:00
|
|
|
<java.version>1.8</java.version>
|
2022-03-27 17:03:41 +03:00
|
|
|
<maven-jar-plugin.version>3.2.0</maven-jar-plugin.version>
|
|
|
|
<maven-compiler-plugin.version>3.8.1</maven-compiler-plugin.version>
|
|
|
|
<maven-assembly-plugin.version>3.3.0</maven-assembly-plugin.version>
|
|
|
|
<slf4j.version>1.8.0-beta4</slf4j.version>
|
|
|
|
<json.version>20201115</json.version>
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
2024-05-22 17:18:19 +03:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<version>${maven-compiler-plugin.version}</version>
|
|
|
|
<configuration>
|
|
|
|
<source>${java.version}</source>
|
|
|
|
<target>${java.version}</target>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2022-03-27 17:03:41 +03:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
|
|
<version>${maven-jar-plugin.version}</version>
|
|
|
|
<configuration>
|
|
|
|
<archive>
|
|
|
|
<manifest>
|
|
|
|
<addClasspath>true</addClasspath>
|
2022-08-08 11:02:07 +03:00
|
|
|
<mainClass>com.microsoft.azure.kusto.quickstart.SampleApp</mainClass>
|
2022-03-27 17:03:41 +03:00
|
|
|
</manifest>
|
|
|
|
</archive>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
|
|
<version>${maven-assembly-plugin.version}</version>
|
|
|
|
<configuration>
|
|
|
|
<archive>
|
|
|
|
<manifest>
|
2022-08-08 11:02:07 +03:00
|
|
|
<mainClass>com.microsoft.azure.kusto.quickstart.SampleApp</mainClass>
|
2022-03-27 17:03:41 +03:00
|
|
|
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
|
|
|
|
<addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
|
|
|
|
</manifest>
|
|
|
|
</archive>
|
|
|
|
<descriptorRefs>
|
|
|
|
<descriptorRef>jar-with-dependencies</descriptorRef>
|
|
|
|
</descriptorRefs>
|
|
|
|
</configuration>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>make-assembly</id> <!-- this is used for inheritance merges -->
|
|
|
|
<phase>package</phase> <!-- bind to the packaging phase -->
|
|
|
|
<goals>
|
|
|
|
<goal>single</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
2022-03-29 15:40:49 +03:00
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>net.revelc.code.formatter</groupId>
|
|
|
|
<artifactId>formatter-maven-plugin</artifactId>
|
|
|
|
<version>2.16.0</version>
|
|
|
|
<configuration>
|
|
|
|
<configFile>${project.basedir}/kusto-style.xml</configFile>
|
|
|
|
<encoding>UTF-8</encoding>
|
|
|
|
</configuration>
|
2022-03-27 17:03:41 +03:00
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2023-06-26 15:02:47 +03:00
|
|
|
<dependencyManagement>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.opentelemetry</groupId>
|
|
|
|
<artifactId>opentelemetry-bom</artifactId>
|
2024-01-18 23:55:36 +03:00
|
|
|
<version>1.31.0</version>
|
2023-06-26 15:02:47 +03:00
|
|
|
<type>pom</type>
|
|
|
|
<scope>import</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</dependencyManagement>
|
2022-03-27 17:03:41 +03:00
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.microsoft.azure.kusto</groupId>
|
|
|
|
<artifactId>kusto-data</artifactId>
|
|
|
|
<version>${revision}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.microsoft.azure.kusto</groupId>
|
|
|
|
<artifactId>kusto-ingest</artifactId>
|
|
|
|
<version>${revision}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
<version>${slf4j.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-simple</artifactId>
|
|
|
|
<version>${slf4j.version}</version>
|
|
|
|
</dependency>
|
2023-06-26 15:02:47 +03:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.azure</groupId>
|
|
|
|
<artifactId>azure-core-tracing-opentelemetry</artifactId>
|
2024-01-18 23:55:36 +03:00
|
|
|
<version>1.0.0-beta.42</version>
|
2023-06-26 15:02:47 +03:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.opentelemetry</groupId>
|
|
|
|
<artifactId>opentelemetry-api</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.opentelemetry</groupId>
|
|
|
|
<artifactId>opentelemetry-sdk</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.opentelemetry</groupId>
|
|
|
|
<artifactId>opentelemetry-exporter-otlp</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2024-01-29 15:04:08 +03:00
|
|
|
<groupId>io.opentelemetry.semconv</groupId>
|
2023-06-26 15:02:47 +03:00
|
|
|
<artifactId>opentelemetry-semconv</artifactId>
|
2024-01-29 15:04:08 +03:00
|
|
|
<version>1.23.1-alpha</version>
|
2023-06-26 15:02:47 +03:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.opentelemetry</groupId>
|
|
|
|
<artifactId>opentelemetry-exporters-logging</artifactId>
|
|
|
|
<version>0.9.1</version>
|
|
|
|
</dependency>
|
|
|
|
|
2022-03-27 17:03:41 +03:00
|
|
|
</dependencies>
|
|
|
|
</project>
|