|
| 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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 3 | + <modelVersion>4.0.0</modelVersion> |
| 4 | + <groupId>de.multimedia.emulation.emil.integration</groupId> |
| 5 | + <artifactId>framework</artifactId> |
| 6 | + <version>1.0-SNAPSHOT</version> |
| 7 | + <name>EMiL - Integration Microservice Framework</name> |
| 8 | + <packaging>jar</packaging> |
| 9 | + |
| 10 | + <properties> |
| 11 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 12 | + <maven.compiler.source>1.8</maven.compiler.source> |
| 13 | + <maven.compiler.target>1.8</maven.compiler.target> |
| 14 | + <!-- Dependencies --> |
| 15 | + <version.mockito>1.10.8</version.mockito> |
| 16 | + <!-- Plugins --> |
| 17 | + <version.jacoco-maven-plugin>0.7.4.201502262128</version.jacoco-maven-plugin> |
| 18 | + </properties> |
| 19 | + |
| 20 | + <parent> |
| 21 | + <groupId>org.springframework.boot</groupId> |
| 22 | + <artifactId>spring-boot-starter-parent</artifactId> |
| 23 | + <version>1.3.3.RELEASE</version> |
| 24 | + </parent> |
| 25 | + |
| 26 | + <dependencies> |
| 27 | + <dependency> |
| 28 | + <groupId>org.springframework.boot</groupId> |
| 29 | + <artifactId>spring-boot-actuator</artifactId> |
| 30 | + </dependency> |
| 31 | + <dependency> |
| 32 | + <groupId>org.springframework.boot</groupId> |
| 33 | + <artifactId>spring-boot-starter-web</artifactId> |
| 34 | + </dependency> |
| 35 | + <dependency> |
| 36 | + <groupId>org.hamcrest</groupId> |
| 37 | + <artifactId>java-hamcrest</artifactId> |
| 38 | + <version>2.0.0.0</version> |
| 39 | + <scope>test</scope> |
| 40 | + </dependency> |
| 41 | + <dependency> |
| 42 | + <groupId>junit</groupId> |
| 43 | + <artifactId>junit</artifactId> |
| 44 | + <scope>test</scope> |
| 45 | + </dependency> |
| 46 | + <dependency> |
| 47 | + <groupId>org.mockito</groupId> |
| 48 | + <artifactId>mockito-all</artifactId> |
| 49 | + <version>${version.mockito}</version> |
| 50 | + <scope>test</scope> |
| 51 | + </dependency> |
| 52 | + </dependencies> |
| 53 | + |
| 54 | + <build> |
| 55 | + <plugins> |
| 56 | + <plugin> |
| 57 | + <artifactId>maven-compiler-plugin</artifactId> |
| 58 | + <version>3.5.1</version> |
| 59 | + <configuration> |
| 60 | + <source>${maven.compiler.source}</source> |
| 61 | + <target>${maven.compiler.target}</target> |
| 62 | + </configuration> |
| 63 | + </plugin> |
| 64 | + <plugin> |
| 65 | + <groupId>org.jacoco</groupId> |
| 66 | + <artifactId>jacoco-maven-plugin</artifactId> |
| 67 | + <version>${version.jacoco-maven-plugin}</version> |
| 68 | + <executions> |
| 69 | + <execution> |
| 70 | + <id>pre-unit-test</id> |
| 71 | + <goals> |
| 72 | + <goal>prepare-agent</goal> |
| 73 | + </goals> |
| 74 | + </execution> |
| 75 | + <execution> |
| 76 | + <phase>test</phase> |
| 77 | + <goals> |
| 78 | + <goal>report</goal> |
| 79 | + </goals> |
| 80 | + </execution> |
| 81 | + </executions> |
| 82 | + </plugin> |
| 83 | + </plugins> |
| 84 | + </build> |
| 85 | + |
| 86 | + <reporting> |
| 87 | + <plugins> |
| 88 | + <plugin> |
| 89 | + <groupId>org.jacoco</groupId> |
| 90 | + <artifactId>jacoco-maven-plugin</artifactId> |
| 91 | + <version>${version.jacoco-maven-plugin}</version> |
| 92 | + </plugin> |
| 93 | + </plugins> |
| 94 | + </reporting> |
| 95 | + |
| 96 | +</project> |
0 commit comments