|
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 3 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 4 | + <modelVersion>4.0.0</modelVersion> |
| 5 | + |
| 6 | + <groupId>br.com.concrete.mock</groupId> |
| 7 | + <artifactId>mock-api</artifactId> |
| 8 | + <version>3.0.0</version> |
| 9 | + <packaging>war</packaging> |
| 10 | + |
| 11 | + <name>mock-api</name> |
| 12 | + <description>Mock API</description> |
| 13 | + |
| 14 | + <parent> |
| 15 | + <groupId>org.springframework.boot</groupId> |
| 16 | + <artifactId>spring-boot-starter-parent</artifactId> |
| 17 | + <version>1.4.1.RELEASE</version> |
| 18 | + <relativePath/> <!-- lookup parent from repository --> |
| 19 | + </parent> |
| 20 | + |
| 21 | + <properties> |
| 22 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 23 | + <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
| 24 | + <java.version>1.8</java.version> |
| 25 | + <infinispan.version>5.1.7.Final</infinispan.version> |
| 26 | + <json-smart.version>1.0.8</json-smart.version> |
| 27 | + <javax.ws.rs-api.version>2.0</javax.ws.rs-api.version> |
| 28 | + <gson.version>2.3.1</gson.version> |
| 29 | + <guava.version>22.0</guava.version> |
| 30 | + <fixture-factory.version>3.1.0</fixture-factory.version> |
| 31 | + <httpclient.version>4.5.2</httpclient.version> |
| 32 | + <modelmapper.version>0.7.5</modelmapper.version> |
| 33 | + <commons-io.version>2.5</commons-io.version> |
| 34 | + </properties> |
| 35 | + |
| 36 | + <dependencies> |
| 37 | + <dependency> |
| 38 | + <groupId>org.springframework.boot</groupId> |
| 39 | + <artifactId>spring-boot-starter-web</artifactId> |
| 40 | + <exclusions> |
| 41 | + <exclusion> |
| 42 | + <groupId>org.apache.httpcomponents</groupId> |
| 43 | + <artifactId>httpclient</artifactId> |
| 44 | + </exclusion> |
| 45 | + </exclusions> |
| 46 | + </dependency> |
| 47 | + <dependency> |
| 48 | + <groupId>org.springframework.boot</groupId> |
| 49 | + <artifactId>spring-boot-starter-undertow</artifactId> |
| 50 | + </dependency> |
| 51 | + <dependency> |
| 52 | + <groupId>org.springframework.boot</groupId> |
| 53 | + <artifactId>spring-boot-starter-hateoas</artifactId> |
| 54 | + </dependency> |
| 55 | + <dependency> |
| 56 | + <groupId>org.springframework.boot</groupId> |
| 57 | + <artifactId>spring-boot-starter-undertow</artifactId> |
| 58 | + </dependency> |
| 59 | + <dependency> |
| 60 | + <groupId>org.springframework.boot</groupId> |
| 61 | + <artifactId>spring-boot-starter-test</artifactId> |
| 62 | + <scope>test</scope> |
| 63 | + </dependency> |
| 64 | + <dependency> |
| 65 | + <groupId>com.google.code.gson</groupId> |
| 66 | + <artifactId>gson</artifactId> |
| 67 | + </dependency> |
| 68 | + <dependency> |
| 69 | + <groupId>javax.ws.rs</groupId> |
| 70 | + <artifactId>javax.ws.rs-api</artifactId> |
| 71 | + <version>${javax.ws.rs-api.version}</version> |
| 72 | + </dependency> |
| 73 | + <dependency> |
| 74 | + <groupId>net.minidev</groupId> |
| 75 | + <artifactId>json-smart</artifactId> |
| 76 | + <version>${json-smart.version}</version> |
| 77 | + </dependency> |
| 78 | + <dependency> |
| 79 | + <groupId>org.apache.httpcomponents</groupId> |
| 80 | + <artifactId>httpclient</artifactId> |
| 81 | + </dependency> |
| 82 | + <dependency> |
| 83 | + <groupId>com.google.guava</groupId> |
| 84 | + <artifactId>guava</artifactId> |
| 85 | + <version>${guava.version}</version> |
| 86 | + </dependency> |
| 87 | + <dependency> |
| 88 | + <groupId>org.modelmapper</groupId> |
| 89 | + <artifactId>modelmapper</artifactId> |
| 90 | + <version>${modelmapper.version}</version> |
| 91 | + </dependency> |
| 92 | + <dependency> |
| 93 | + <groupId>br.com.six2six</groupId> |
| 94 | + <artifactId>fixture-factory</artifactId> |
| 95 | + <version>${fixture-factory.version}</version> |
| 96 | + <scope>test</scope> |
| 97 | + </dependency> |
| 98 | + <dependency> |
| 99 | + <groupId>commons-io</groupId> |
| 100 | + <artifactId>commons-io</artifactId> |
| 101 | + <version>${commons-io.version}</version> |
| 102 | + </dependency> |
| 103 | + </dependencies> |
| 104 | + |
| 105 | + <build> |
| 106 | + <plugins> |
| 107 | + <plugin> |
| 108 | + <artifactId>maven-compiler-plugin</artifactId> |
| 109 | + <version>3.1</version> |
| 110 | + <configuration> |
| 111 | + <source>${java.version}</source> |
| 112 | + <target>${java.version}</target> |
| 113 | + </configuration> |
| 114 | + </plugin> |
| 115 | + <plugin> |
| 116 | + <groupId>org.springframework.boot</groupId> |
| 117 | + <artifactId>spring-boot-maven-plugin</artifactId> |
| 118 | + </plugin> |
| 119 | + <plugin> |
| 120 | + <groupId>org.apache.maven.plugins</groupId> |
| 121 | + <artifactId>maven-release-plugin</artifactId> |
| 122 | + <version>2.5.3</version> |
| 123 | + </plugin> |
| 124 | + </plugins> |
| 125 | + </build> |
| 126 | + |
| 127 | +</project> |
0 commit comments