|
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | +<!-- |
| 3 | +
|
| 4 | + Copyright 2012-2017 Gunnar Morling (http://www.gunnarmorling.de/) |
| 5 | + and/or other contributors as indicated by the @authors tag. See the |
| 6 | + copyright.txt file in the distribution for a full listing of all |
| 7 | + contributors. |
| 8 | +
|
| 9 | + Licensed under the Apache License, Version 2.0 (the "License"); |
| 10 | + you may not use this file except in compliance with the License. |
| 11 | + You may obtain a copy of the License at |
| 12 | +
|
| 13 | + http://www.apache.org/licenses/LICENSE-2.0 |
| 14 | +
|
| 15 | + Unless required by applicable law or agreed to in writing, software |
| 16 | + distributed under the License is distributed on an "AS IS" BASIS, |
| 17 | + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 18 | + See the License for the specific language governing permissions and |
| 19 | + limitations under the License. |
| 20 | +
|
| 21 | +--> |
| 22 | +<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"> |
| 23 | + <modelVersion>4.0.0</modelVersion> |
| 24 | + <groupId>org.mapstruct.examples.metadata</groupId> |
| 25 | + <artifactId>mapstruct-examples-metadata-with-annotations</artifactId> |
| 26 | + <version>1.0.0</version> |
| 27 | + |
| 28 | + <properties> |
| 29 | + <org.mapstruct.version>1.3.0.Beta1</org.mapstruct.version> |
| 30 | + </properties> |
| 31 | + |
| 32 | + <dependencies> |
| 33 | + <dependency> |
| 34 | + <groupId>org.mapstruct</groupId> |
| 35 | + <artifactId>mapstruct</artifactId> |
| 36 | + <version>${org.mapstruct.version}</version> |
| 37 | + </dependency> |
| 38 | + |
| 39 | + <dependency> |
| 40 | + <groupId>junit</groupId> |
| 41 | + <artifactId>junit</artifactId> |
| 42 | + <version>4.12</version> |
| 43 | + <scope>test</scope> |
| 44 | + </dependency> |
| 45 | + |
| 46 | + <dependency> |
| 47 | + <groupId>org.assertj</groupId> |
| 48 | + <artifactId>assertj-core</artifactId> |
| 49 | + <version>3.9.0</version> |
| 50 | + <scope>test</scope> |
| 51 | + </dependency> |
| 52 | + </dependencies> |
| 53 | + |
| 54 | + <build> |
| 55 | + <plugins> |
| 56 | + <plugin> |
| 57 | + <groupId>org.apache.maven.plugins</groupId> |
| 58 | + <artifactId>maven-compiler-plugin</artifactId> |
| 59 | + <version>3.6.2</version> |
| 60 | + <configuration> |
| 61 | + <source>1.8</source> |
| 62 | + <target>1.8</target> |
| 63 | + <annotationProcessorPaths> |
| 64 | + <path> |
| 65 | + <groupId>org.mapstruct</groupId> |
| 66 | + <artifactId>mapstruct-processor</artifactId> |
| 67 | + <version>${org.mapstruct.version}</version> |
| 68 | + </path> |
| 69 | + </annotationProcessorPaths> |
| 70 | + </configuration> |
| 71 | + </plugin> |
| 72 | + </plugins> |
| 73 | + </build> |
| 74 | + |
| 75 | + |
| 76 | +</project> |
0 commit comments