|
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | +<!-- |
| 3 | +Copyright 2018 The original authors. |
| 4 | +
|
| 5 | +Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | +you may not use this file except in compliance with the License. |
| 7 | +You may obtain a copy of the License at |
| 8 | +
|
| 9 | + http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | +
|
| 11 | +Unless required by applicable law or agreed to in writing, software |
| 12 | +distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | +See the License for the specific language governing permissions and |
| 15 | +limitations under the License. |
| 16 | +
|
| 17 | +--> |
| 18 | +<project xmlns="http://maven.apache.org/POM/4.0.0" |
| 19 | + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 20 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 21 | + <modelVersion>4.0.0</modelVersion> |
| 22 | + |
| 23 | + <parent> |
| 24 | + <artifactId>dekorate-tests</artifactId> |
| 25 | + <groupId>io.dekorate</groupId> |
| 26 | + <version>2.9-SNAPSHOT</version> |
| 27 | + <relativePath>../</relativePath> |
| 28 | + </parent> |
| 29 | + |
| 30 | + <groupId>io.dekorate</groupId> |
| 31 | + <artifactId>issue-100-docker-registry-docker-file-needs-Dockerfile</artifactId> |
| 32 | + <packaging>jar</packaging> |
| 33 | + <name>Dekorate :: Tests :: Annotations :: Kubernetes :: Integration Test for #1000</name> |
| 34 | + <description>Docker registry is defined</description> |
| 35 | + |
| 36 | + <properties> |
| 37 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 38 | + <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
| 39 | + </properties> |
| 40 | + |
| 41 | + <dependencies> |
| 42 | + <dependency> |
| 43 | + <groupId>io.dekorate</groupId> |
| 44 | + <artifactId>kubernetes-annotations</artifactId> |
| 45 | + <version>${project.version}</version> |
| 46 | + </dependency> |
| 47 | + <!-- Testing --> |
| 48 | + <dependency> |
| 49 | + <groupId>org.junit.jupiter</groupId> |
| 50 | + <artifactId>junit-jupiter-api</artifactId> |
| 51 | + <scope>test</scope> |
| 52 | + </dependency> |
| 53 | + <dependency> |
| 54 | + <groupId>org.junit.jupiter</groupId> |
| 55 | + <artifactId>junit-jupiter-engine</artifactId> |
| 56 | + <scope>test</scope> |
| 57 | + </dependency> |
| 58 | + </dependencies> |
| 59 | + |
| 60 | + <build> |
| 61 | + <plugins> |
| 62 | + <plugin> |
| 63 | + <groupId>org.apache.maven.plugins</groupId> |
| 64 | + <artifactId>maven-surefire-plugin</artifactId> |
| 65 | + <version>${version.maven-surefire-plugin}</version> |
| 66 | + <inherited>true</inherited> |
| 67 | + <configuration> |
| 68 | + <useSystemClassLoader>false</useSystemClassLoader> |
| 69 | + </configuration> |
| 70 | + </plugin> |
| 71 | + <plugin> |
| 72 | + <groupId>org.apache.maven.plugins</groupId> |
| 73 | + <artifactId>maven-compiler-plugin</artifactId> |
| 74 | + <version>${version.maven-compiler-plugin}</version> |
| 75 | + <configuration> |
| 76 | + <source>${java.source}</source> |
| 77 | + <target>${java.target}</target> |
| 78 | + </configuration> |
| 79 | + </plugin> |
| 80 | + </plugins> |
| 81 | + </build> |
| 82 | +</project> |
0 commit comments