2019-12-05 09:56:52 -05:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2019-10-31 21:43:47 -04:00
|
|
|
<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">
|
2019-10-31 21:43:47 -04:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>ratpack</artifactId>
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
<name>ratpack</name>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
<url>http://maven.apache.org</url>
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>com.baeldung</groupId>
|
|
|
|
<artifactId>parent-modules</artifactId>
|
|
|
|
<version>1.0.0-SNAPSHOT</version>
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.ratpack</groupId>
|
|
|
|
<artifactId>ratpack-spring-boot-starter</artifactId>
|
|
|
|
<version>${ratpack.version}</version>
|
|
|
|
<type>pom</type>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.ratpack</groupId>
|
|
|
|
<artifactId>ratpack-core</artifactId>
|
|
|
|
<version>${ratpack.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2019-12-05 09:56:52 -05:00
|
|
|
<groupId>org.codehaus.groovy</groupId>
|
|
|
|
<artifactId>groovy-sql</artifactId>
|
|
|
|
<version>${groovy.sql.version}</version>
|
|
|
|
</dependency>
|
2019-10-31 21:43:47 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>io.ratpack</groupId>
|
|
|
|
<artifactId>ratpack-hikari</artifactId>
|
|
|
|
<version>${ratpack.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2019-12-05 09:56:52 -05:00
|
|
|
<groupId>io.ratpack</groupId>
|
2019-10-31 21:43:47 -04:00
|
|
|
<artifactId>ratpack-groovy-test</artifactId>
|
|
|
|
<version>${ratpack.test.latest.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.ratpack</groupId>
|
|
|
|
<artifactId>ratpack-hystrix</artifactId>
|
|
|
|
<version>${ratpack.version}</version>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>com.netflix.hystrix</groupId>
|
|
|
|
<artifactId>hystrix-core</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.netflix.hystrix</groupId>
|
|
|
|
<artifactId>hystrix-core</artifactId>
|
|
|
|
<version>${hystrix.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.ratpack</groupId>
|
|
|
|
<artifactId>ratpack-rx</artifactId>
|
|
|
|
<version>${ratpack.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.ratpack</groupId>
|
|
|
|
<artifactId>ratpack-test</artifactId>
|
|
|
|
<version>${ratpack.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.h2database</groupId>
|
|
|
|
<artifactId>h2</artifactId>
|
|
|
|
<version>${h2.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.httpcomponents</groupId>
|
|
|
|
<artifactId>httpclient</artifactId>
|
|
|
|
<version>${httpclient.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.httpcomponents</groupId>
|
|
|
|
<artifactId>httpcore</artifactId>
|
|
|
|
<version>${httpcore.version}</version>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<finalName>${project.artifactId}</finalName>
|
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<directory>src/main/resources</directory>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
<maven.compiler.source>1.8</maven.compiler.source>
|
|
|
|
<maven.compiler.target>1.8</maven.compiler.target>
|
|
|
|
<ratpack.version>1.5.4</ratpack.version>
|
|
|
|
<httpclient.version>4.5.3</httpclient.version>
|
|
|
|
<httpcore.version>4.4.6</httpcore.version>
|
|
|
|
<hystrix.version>1.5.12</hystrix.version>
|
|
|
|
<groovy.sql.version>2.4.15</groovy.sql.version>
|
|
|
|
<ratpack.test.latest.version>1.6.1</ratpack.test.latest.version>
|
|
|
|
</properties>
|
2019-12-05 09:56:52 -05:00
|
|
|
|
2019-10-31 21:43:47 -04:00
|
|
|
</project>
|