Ravi Geda | 6c3031e | 2018-09-17 12:57:44 +0100 | [diff] [blame^] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
| 3 | |
| 4 | ============LICENSE_START======================================================= |
| 5 | org.onap.aaf |
| 6 | ================================================================================ |
| 7 | Copyright © 2018 European Software Marketing Ltd. |
| 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 | ============LICENSE_END========================================================= |
| 21 | |
| 22 | --> |
| 23 | <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"> |
| 24 | <modelVersion>4.0.0</modelVersion> |
| 25 | <groupId>org.onap.aaf.cadi</groupId> |
| 26 | <artifactId>sidecar</artifactId> |
| 27 | <version>1.0.0-SNAPSHOT</version> |
| 28 | <name>aaf-cadi-sidecar</name> |
| 29 | <packaging>pom</packaging> |
| 30 | |
| 31 | <parent> |
| 32 | <groupId>org.onap.oparent</groupId> |
| 33 | <artifactId>oparent</artifactId> |
| 34 | <version>1.2.0</version> |
| 35 | <relativePath /> |
| 36 | </parent> |
| 37 | |
| 38 | <properties> |
| 39 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 40 | <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
| 41 | <java.version>1.8</java.version> |
| 42 | </properties> |
| 43 | |
| 44 | <!-- ============================================================== --> |
| 45 | <!-- Define sub-projects (modules) --> |
| 46 | <!-- ============================================================== --> |
| 47 | <modules> |
| 48 | <module>fproxy</module> |
| 49 | </modules> |
| 50 | |
| 51 | <build> |
| 52 | <pluginManagement> |
| 53 | <plugins> |
| 54 | <plugin> |
| 55 | <groupId>com.mycila</groupId> |
| 56 | <artifactId>license-maven-plugin</artifactId> |
| 57 | <version>3.0</version> |
| 58 | <configuration> |
| 59 | <header>License.txt</header> |
| 60 | <includes> |
| 61 | <include>src/main/java/**</include> |
| 62 | <include>src/test/java/**</include> |
| 63 | <include>pom.xml</include> |
| 64 | </includes> |
| 65 | <skipExistingHeaders>true</skipExistingHeaders> |
| 66 | </configuration> |
| 67 | <executions> |
| 68 | <execution> |
| 69 | <goals> |
| 70 | <!-- Set goal from "check" to "format" to auto update license headers --> |
| 71 | <goal>check</goal> |
| 72 | </goals> |
| 73 | <phase>validate</phase> |
| 74 | </execution> |
| 75 | </executions> |
| 76 | </plugin> |
| 77 | </plugins> |
| 78 | </pluginManagement> |
| 79 | </build> |
| 80 | </project> |