2016-11-28 02:47:40 +01:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2016-02-06 00:09:59 +01: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>
|
2016-11-28 02:47:40 +01:00
|
|
|
<groupId>net.frozenorb</groupId>
|
2022-10-19 08:15:38 +02:00
|
|
|
<artifactId>RestAPI</artifactId>
|
2016-02-06 00:09:59 +01:00
|
|
|
<version>1.0</version>
|
|
|
|
|
2016-05-20 22:20:23 +02:00
|
|
|
<parent>
|
2016-11-28 02:47:40 +01:00
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
|
|
|
<version>1.4.2.RELEASE</version>
|
|
|
|
<relativePath/>
|
2016-05-20 22:20:23 +02:00
|
|
|
</parent>
|
|
|
|
|
|
|
|
<properties>
|
2016-11-28 02:47:40 +01:00
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
<vertx.version>3.3.3</vertx.version>
|
2016-05-20 22:20:23 +02:00
|
|
|
</properties>
|
|
|
|
|
2016-02-06 00:09:59 +01:00
|
|
|
<build>
|
2016-11-28 02:47:40 +01:00
|
|
|
<finalName>${project.artifactId}</finalName>
|
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<targetPath>.</targetPath>
|
|
|
|
<filtering>true</filtering>
|
|
|
|
<directory>src/main/resources/</directory>
|
|
|
|
<excludes>
|
|
|
|
<exclude>**/*.jar</exclude>
|
|
|
|
</excludes>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
2016-02-06 00:09:59 +01:00
|
|
|
<plugins>
|
2016-05-05 23:38:28 +02:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-jar-plugin</artifactId>
|
2022-10-19 08:15:38 +02:00
|
|
|
<version>3.1.0</version>
|
2016-05-05 23:38:28 +02:00
|
|
|
<configuration>
|
|
|
|
<archive>
|
|
|
|
<manifest>
|
|
|
|
<mainClass>net.frozenorb.apiv3.Main</mainClass>
|
|
|
|
</manifest>
|
|
|
|
</archive>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2016-02-06 00:09:59 +01:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-shade-plugin</artifactId>
|
|
|
|
<version>2.3</version>
|
|
|
|
<configuration>
|
|
|
|
<artifactSet>
|
2016-06-16 06:08:44 +02:00
|
|
|
<excludes>
|
|
|
|
<exclude>org.projectlombok:lombok</exclude>
|
|
|
|
</excludes>
|
2016-02-06 00:09:59 +01:00
|
|
|
</artifactSet>
|
|
|
|
</configuration>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>shade</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2016-11-28 02:47:40 +01:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
2022-10-19 08:15:38 +02:00
|
|
|
<version>3.5.1</version>
|
2016-11-28 02:47:40 +01:00
|
|
|
<configuration>
|
|
|
|
<source>1.8</source>
|
|
|
|
<target>1.8</target>
|
|
|
|
<encoding>UTF-8</encoding>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2016-02-06 00:09:59 +01:00
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
2016-05-20 22:20:23 +02:00
|
|
|
<repositories>
|
2022-10-19 08:15:38 +02:00
|
|
|
|
2016-06-12 22:36:11 +02:00
|
|
|
<repository>
|
|
|
|
<id>mongo-jackson-codec-repo</id>
|
|
|
|
<url>https://dl.bintray.com/ylemoigne/maven</url>
|
|
|
|
</repository>
|
2016-05-20 22:20:23 +02:00
|
|
|
</repositories>
|
|
|
|
|
2016-11-28 02:47:40 +01:00
|
|
|
<distributionManagement>
|
2022-10-19 08:15:38 +02:00
|
|
|
|
2016-11-28 02:47:40 +01:00
|
|
|
</distributionManagement>
|
|
|
|
|
2016-02-06 00:09:59 +01:00
|
|
|
<dependencies>
|
2016-11-28 02:47:40 +01:00
|
|
|
<!-- Spring -->
|
2022-10-19 08:15:38 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot</artifactId>
|
|
|
|
<version>1.4.2.RELEASE</version>
|
|
|
|
</dependency>
|
2016-11-28 02:47:40 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
2016-06-10 04:39:23 +02:00
|
|
|
<!-- Vert.x -->
|
2016-02-06 00:09:59 +01:00
|
|
|
<dependency>
|
2016-06-01 20:23:37 +02:00
|
|
|
<groupId>io.vertx</groupId>
|
|
|
|
<artifactId>vertx-core</artifactId>
|
2016-11-28 02:47:40 +01:00
|
|
|
<version>${vertx.version}</version>
|
2016-06-01 20:23:37 +02:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.vertx</groupId>
|
|
|
|
<artifactId>vertx-web</artifactId>
|
2016-11-28 02:47:40 +01:00
|
|
|
<version>${vertx.version}</version>
|
2016-06-12 22:36:11 +02:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.vertx</groupId>
|
|
|
|
<artifactId>vertx-redis-client</artifactId>
|
2016-11-28 02:47:40 +01:00
|
|
|
<version>${vertx.version}</version>
|
2016-02-06 00:09:59 +01:00
|
|
|
</dependency>
|
2016-07-10 18:17:03 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>io.vertx</groupId>
|
|
|
|
<artifactId>vertx-circuit-breaker</artifactId>
|
2016-11-28 02:47:40 +01:00
|
|
|
<version>${vertx.version}</version>
|
2016-07-10 18:45:13 +02:00
|
|
|
</dependency>
|
2016-06-10 04:39:23 +02:00
|
|
|
|
|
|
|
<!-- Google Libs -->
|
2016-02-08 00:03:42 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.guava</groupId>
|
|
|
|
<artifactId>guava</artifactId>
|
|
|
|
<version>19.0</version>
|
|
|
|
</dependency>
|
2016-03-21 23:28:17 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.code.gson</groupId>
|
|
|
|
<artifactId>gson</artifactId>
|
2016-06-24 08:57:01 +02:00
|
|
|
<version>2.7</version>
|
2016-03-21 23:28:17 +01:00
|
|
|
</dependency>
|
2016-07-16 23:23:31 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.googlecode.libphonenumber</groupId>
|
|
|
|
<artifactId>libphonenumber</artifactId>
|
|
|
|
<version>7.4.5</version>
|
|
|
|
</dependency>
|
2016-06-10 04:39:23 +02:00
|
|
|
|
|
|
|
<!-- Mongo -->
|
2016-05-04 21:38:52 +02:00
|
|
|
<dependency>
|
2016-06-10 04:39:23 +02:00
|
|
|
<groupId>org.mongodb</groupId>
|
|
|
|
<artifactId>mongodb-driver-async</artifactId>
|
2022-10-19 17:57:51 +02:00
|
|
|
<version>3.12.11</version>
|
2016-05-04 21:38:52 +02:00
|
|
|
</dependency>
|
2016-05-04 23:31:03 +02:00
|
|
|
<dependency>
|
2016-06-12 22:36:11 +02:00
|
|
|
<groupId>fr.javatic.mongo</groupId>
|
|
|
|
<artifactId>mongo-jackson-codec</artifactId>
|
|
|
|
<version>3.2.0__0.4</version>
|
2022-10-19 08:15:38 +02:00
|
|
|
<scope>system</scope>
|
|
|
|
<systemPath>${project.basedir}/lib/mongo-jackson-mapper-1.4.2.jar</systemPath>
|
2016-10-21 04:11:57 +02:00
|
|
|
<!-- version should be kept at 3.2.0__0.4 to ensure
|
|
|
|
compatability with overriden classes in this codebase -->
|
2016-05-04 23:31:03 +02:00
|
|
|
</dependency>
|
2016-02-12 01:10:46 +01:00
|
|
|
<dependency>
|
2016-06-12 22:36:11 +02:00
|
|
|
<groupId>de.undercouch</groupId>
|
|
|
|
<artifactId>bson4jackson</artifactId>
|
2016-06-24 08:57:01 +02:00
|
|
|
<version>2.7.0</version>
|
2016-03-21 23:28:17 +01:00
|
|
|
</dependency>
|
2016-06-10 04:39:23 +02:00
|
|
|
|
2016-06-25 00:55:47 +02:00
|
|
|
<!-- Totp -->
|
2016-04-27 23:58:00 +02:00
|
|
|
<dependency>
|
2016-06-10 04:39:23 +02:00
|
|
|
<groupId>com.warrenstrange</groupId>
|
|
|
|
<artifactId>googleauth</artifactId>
|
2016-07-10 18:56:11 +02:00
|
|
|
<version>1.1.1</version>
|
2016-04-27 23:58:00 +02:00
|
|
|
</dependency>
|
2016-06-10 04:39:23 +02:00
|
|
|
|
|
|
|
<!-- Lombok -->
|
2016-02-06 00:09:59 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
<artifactId>lombok</artifactId>
|
2022-10-20 04:30:17 +02:00
|
|
|
<version>1.18.24</version>
|
2016-02-06 00:09:59 +01:00
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</project>
|