<?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.megatim.queryadhoc</groupId>
|
<artifactId>query-adhoc</artifactId>
|
<version>1.0</version>
|
<packaging>jar</packaging>
|
<properties>
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
<maven.compiler.source>1.8</maven.compiler.source>
|
<maven.compiler.target>1.8</maven.compiler.target>
|
<exec.mainClass>com.megatim.queryadhoc.App</exec.mainClass>
|
</properties>
|
|
<repositories>
|
<repository>
|
<id>oracle-maven-repo</id>
|
<url>https://maven.oracle.com</url>
|
</repository>
|
</repositories>
|
|
<build>
|
<plugins>
|
|
<plugin>
|
<artifactId>maven-assembly-plugin</artifactId>
|
<configuration>
|
<archive>
|
<manifest>
|
<mainClass>com.megatim.queryadhoc.App</mainClass>
|
</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>
|
</plugin>
|
|
</plugins>
|
</build>
|
|
<dependencies>
|
<dependency>
|
<groupId>com.oracle.database.jdbc</groupId>
|
<artifactId>ojdbc8</artifactId>
|
<version>19.8.0.0</version>
|
</dependency>
|
<dependency>
|
<groupId>org.postgresql</groupId>
|
<artifactId>postgresql</artifactId>
|
<version>42.6.0</version> <!-- Use the latest version -->
|
</dependency>
|
<dependency>
|
<groupId>com.microsoft.sqlserver</groupId>
|
<artifactId>mssql-jdbc</artifactId>
|
<version>12.2.0.jre8</version> <!-- Use the appropriate version for your JDK -->
|
</dependency>
|
<dependency>
|
<groupId>mysql</groupId>
|
<artifactId>mysql-connector-java</artifactId>
|
<version>8.0.33</version>
|
</dependency>
|
<dependency>
|
<groupId>org.apache.tika</groupId>
|
<artifactId>tika-parser-text-module</artifactId>
|
<version>2.9.0</version>
|
<exclusions>
|
<exclusion>
|
<groupId>org.apache.xmlbeans</groupId>
|
<artifactId>xmlbeans</artifactId>
|
</exclusion>
|
<exclusion>
|
<groupId>xerces</groupId>
|
<artifactId>xercesImpl</artifactId>
|
</exclusion>
|
</exclusions>
|
</dependency>
|
<dependency>
|
<groupId>commons-validator</groupId>
|
<artifactId>commons-validator</artifactId>
|
<version>1.6</version>
|
</dependency>
|
<dependency>
|
<groupId>commons-io</groupId>
|
<artifactId>commons-io</artifactId>
|
<version>2.11.0</version>
|
</dependency>
|
</dependencies>
|
</project>
|