2019-10-31 21:43:47 -04: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"
|
2019-12-05 09:56:52 -05:00
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<groupId>com.baeldung.jooby</groupId>
|
|
|
|
<artifactId>jooby</artifactId>
|
|
|
|
<version>1.0</version>
|
|
|
|
<name>jooby</name>
|
2019-10-31 21:43:47 -04:00
|
|
|
|
2019-12-05 09:56:52 -05:00
|
|
|
<parent>
|
|
|
|
<groupId>com.baeldung</groupId>
|
|
|
|
<artifactId>parent-modules</artifactId>
|
|
|
|
<version>1.0.0-SNAPSHOT</version>
|
|
|
|
</parent>
|
2019-10-31 21:43:47 -04:00
|
|
|
|
2019-12-05 09:56:52 -05:00
|
|
|
<dependencyManagement>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.jooby</groupId>
|
|
|
|
<artifactId>modules</artifactId>
|
|
|
|
<version>${jooby.version}</version>
|
|
|
|
<type>pom</type>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</dependencyManagement>
|
2019-10-31 21:43:47 -04:00
|
|
|
|
2019-12-05 09:56:52 -05:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.jooby</groupId>
|
|
|
|
<artifactId>jooby-netty</artifactId>
|
|
|
|
<version>${jooby.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.jooby</groupId>
|
|
|
|
<artifactId>jooby-jedis</artifactId>
|
|
|
|
<version>${jooby.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.rest-assured</groupId>
|
|
|
|
<artifactId>rest-assured</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
<version>${rest-assured.version}</version>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2019-10-31 21:43:47 -04:00
|
|
|
|
2019-12-05 09:56:52 -05:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-shade-plugin</artifactId>
|
|
|
|
<version>${maven-shade-plugin.version}</version>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2019-10-31 21:43:47 -04:00
|
|
|
|
2019-12-05 09:56:52 -05:00
|
|
|
<properties>
|
|
|
|
<jooby.version>1.1.3</jooby.version>
|
|
|
|
<rest-assured.version>3.1.1</rest-assured.version>
|
|
|
|
<application.class>com.baeldung.jooby.App</application.class>
|
|
|
|
<maven-shade-plugin.version>2.4.3</maven-shade-plugin.version>
|
|
|
|
</properties>
|
2019-10-31 21:43:47 -04:00
|
|
|
|
|
|
|
</project>
|