2018-01-18 15:29:46 +00:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2018-04-23 10:09:25 +00:00
|
|
|
<!--
|
|
|
|
~ Copyright 2018 Rohit Awate.
|
|
|
|
~
|
|
|
|
~ Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
~ you may not use this file except in compliance with the License.
|
|
|
|
~ You may obtain a copy of the License at
|
|
|
|
~
|
|
|
|
~ http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
~
|
|
|
|
~ Unless required by applicable law or agreed to in writing, software
|
|
|
|
~ distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
~ See the License for the specific language governing permissions and
|
|
|
|
~ limitations under the License.
|
|
|
|
-->
|
|
|
|
|
2018-01-27 10:13:56 +00:00
|
|
|
<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.rohitawate</groupId>
|
2018-04-23 10:09:25 +00:00
|
|
|
<artifactId>Everest</artifactId>
|
2018-08-01 12:25:26 +00:00
|
|
|
<version>Alpha-1.3</version>
|
2018-01-27 10:13:56 +00:00
|
|
|
<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>
|
2018-10-02 09:30:07 +00:00
|
|
|
<main.class>com.rohitawate.everest.Main</main.class>
|
2018-01-27 10:13:56 +00:00
|
|
|
</properties>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-shade-plugin</artifactId>
|
2018-02-15 08:49:31 +00:00
|
|
|
<version>3.1.0</version>
|
2018-01-27 10:13:56 +00:00
|
|
|
<executions>
|
2018-01-29 14:19:12 +00:00
|
|
|
<!-- Run shade goal on package phase -->
|
2018-01-27 10:13:56 +00:00
|
|
|
<execution>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>shade</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
2018-01-29 14:19:12 +00:00
|
|
|
<transformers>
|
|
|
|
<!-- add Main-Class to manifest file -->
|
|
|
|
<transformer
|
|
|
|
implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
|
2018-10-02 09:30:07 +00:00
|
|
|
<mainClass>${main.class}</mainClass>
|
2018-01-29 14:19:12 +00:00
|
|
|
</transformer>
|
|
|
|
</transformers>
|
2018-01-27 10:13:56 +00:00
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2018-01-29 14:19:12 +00:00
|
|
|
|
2018-10-02 09:30:07 +00:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>exec-maven-plugin</artifactId>
|
|
|
|
<version>1.6.0</version>
|
|
|
|
<configuration>
|
|
|
|
<mainClass>${main.class}</mainClass>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2018-01-27 10:13:56 +00:00
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
<dependencies>
|
|
|
|
<!-- https://mvnrepository.com/artifact/com.jfoenix/jfoenix -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.jfoenix</groupId>
|
|
|
|
<artifactId>jfoenix</artifactId>
|
|
|
|
<version>1.4.0</version>
|
|
|
|
</dependency>
|
|
|
|
<!-- https://mvnrepository.com/artifact/org.glassfish.jersey.core/jersey-client -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.glassfish.jersey.core</groupId>
|
|
|
|
<artifactId>jersey-client</artifactId>
|
|
|
|
<version>2.26</version>
|
|
|
|
</dependency>
|
|
|
|
<!-- https://mvnrepository.com/artifact/javax.ws.rs/javax.ws.rs-api -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>javax.ws.rs</groupId>
|
|
|
|
<artifactId>javax.ws.rs-api</artifactId>
|
|
|
|
<version>2.1</version>
|
|
|
|
</dependency>
|
2018-02-01 05:35:08 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.glassfish.jersey.media</groupId>
|
|
|
|
<artifactId>jersey-media-multipart</artifactId>
|
|
|
|
<version>2.26</version>
|
|
|
|
</dependency>
|
2018-01-27 10:13:56 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.glassfish.jersey.inject</groupId>
|
|
|
|
<artifactId>jersey-hk2</artifactId>
|
|
|
|
<version>2.26</version>
|
|
|
|
</dependency>
|
|
|
|
<!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-core -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
<artifactId>jackson-core</artifactId>
|
|
|
|
<version>2.9.3</version>
|
|
|
|
</dependency>
|
|
|
|
<!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-databind -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
<artifactId>jackson-databind</artifactId>
|
|
|
|
<version>2.9.3</version>
|
|
|
|
</dependency>
|
2018-02-13 09:10:49 +00:00
|
|
|
<!-- https://mvnrepository.com/artifact/org.xerial/sqlite-jdbc -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.xerial</groupId>
|
|
|
|
<artifactId>sqlite-jdbc</artifactId>
|
|
|
|
<version>3.21.0.1</version>
|
|
|
|
</dependency>
|
2018-04-27 13:56:18 +00:00
|
|
|
<!-- https://mvnrepository.com/artifact/com.google.guava/guava -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.guava</groupId>
|
|
|
|
<artifactId>guava</artifactId>
|
|
|
|
<version>24.1-jre</version>
|
|
|
|
</dependency>
|
2018-06-20 10:41:56 +00:00
|
|
|
<!-- https://mvnrepository.com/artifact/org.fxmisc.richtext/richtextfx -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.fxmisc.richtext</groupId>
|
|
|
|
<artifactId>richtextfx</artifactId>
|
|
|
|
<version>0.9.0</version>
|
|
|
|
</dependency>
|
2018-08-30 14:04:07 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.junit.jupiter</groupId>
|
|
|
|
<artifactId>junit-jupiter-api</artifactId>
|
|
|
|
<version>RELEASE</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2018-01-27 10:13:56 +00:00
|
|
|
</dependencies>
|
2018-01-18 15:29:46 +00:00
|
|
|
</project>
|