2018-01-18 15:29:46 +00:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
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>
|
|
|
|
<artifactId>RESTaurant</artifactId>
|
|
|
|
<version>1.0-SNAPSHOT</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>
|
|
|
|
</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">
|
|
|
|
<mainClass>com.rohitawate.restaurant.main.Main</mainClass>
|
|
|
|
</transformer>
|
|
|
|
</transformers>
|
2018-01-27 10:13:56 +00:00
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2018-01-29 14:19:12 +00:00
|
|
|
|
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-01-27 10:13:56 +00:00
|
|
|
</dependencies>
|
2018-01-18 15:29:46 +00:00
|
|
|
</project>
|