|
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | +<!-- |
| 3 | +Licensed to the Apache Software Foundation (ASF) under one |
| 4 | +or more contributor license agreements. See the NOTICE file |
| 5 | +distributed with this work for additional information |
| 6 | +regarding copyright ownership. The ASF licenses this file |
| 7 | +to you under the Apache License, Version 2.0 (the |
| 8 | +"License"); you may not use this file except in compliance |
| 9 | +with the License. You may obtain a copy of the License at |
| 10 | +
|
| 11 | + http://www.apache.org/licenses/LICENSE-2.0 |
| 12 | +
|
| 13 | +Unless required by applicable law or agreed to in writing, |
| 14 | +software distributed under the License is distributed on an |
| 15 | +"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| 16 | +KIND, either express or implied. See the License for the |
| 17 | +specific language governing permissions and limitations |
| 18 | +under the License. |
| 19 | +--> |
| 20 | +<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"> |
| 21 | + <modelVersion>4.0.0</modelVersion> |
| 22 | + |
| 23 | + <groupId>org.apache.maven.its.mng7344</groupId> |
| 24 | + <artifactId>mng-7344-maven-plugin</artifactId> |
| 25 | + <version>1.0-SNAPSHOT</version> |
| 26 | + <packaging>maven-plugin</packaging> |
| 27 | + |
| 28 | + <prerequisites> |
| 29 | + <maven>${mavenVersion}</maven> |
| 30 | + </prerequisites> |
| 31 | + |
| 32 | + <properties> |
| 33 | + <javaVersion>8</javaVersion> |
| 34 | + <mavenVersion>3.6.3</mavenVersion> |
| 35 | + <mavenPluginToolsVersion>3.9.0</mavenPluginToolsVersion> |
| 36 | + </properties> |
| 37 | + |
| 38 | + <dependencies> |
| 39 | + <dependency> |
| 40 | + <groupId>org.apache.maven</groupId> |
| 41 | + <artifactId>maven-plugin-api</artifactId> |
| 42 | + <version>${mavenVersion}</version> |
| 43 | + <scope>provided</scope> |
| 44 | + </dependency> |
| 45 | + <dependency> |
| 46 | + <groupId>org.apache.maven</groupId> |
| 47 | + <artifactId>maven-core</artifactId> |
| 48 | + <version>${mavenVersion}</version> |
| 49 | + <scope>provided</scope> |
| 50 | + </dependency> |
| 51 | + <dependency> |
| 52 | + <groupId>org.apache.maven</groupId> |
| 53 | + <artifactId>maven-model</artifactId> |
| 54 | + <version>${mavenVersion}</version> |
| 55 | + <scope>provided</scope> |
| 56 | + </dependency> |
| 57 | + <dependency> |
| 58 | + <groupId>org.apache.maven.plugin-tools</groupId> |
| 59 | + <artifactId>maven-plugin-annotations</artifactId> |
| 60 | + <version>${mavenPluginToolsVersion}</version> |
| 61 | + <scope>provided</scope> |
| 62 | + </dependency> |
| 63 | + </dependencies> |
| 64 | + |
| 65 | + <build> |
| 66 | + <pluginManagement> |
| 67 | + <plugins> |
| 68 | + <plugin> |
| 69 | + <groupId>org.apache.maven.plugins</groupId> |
| 70 | + <artifactId>maven-plugin-plugin</artifactId> |
| 71 | + <version>${mavenPluginToolsVersion}</version> |
| 72 | + </plugin> |
| 73 | + </plugins> |
| 74 | + </pluginManagement> |
| 75 | + </build> |
| 76 | +</project> |
0 commit comments