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> |
Ravi Geda | 1931e66 | 2018-09-25 21:54:30 +0100 | [diff] [blame] | 25 | <groupId>org.onap.aaf.cadi.sidecar</groupId> |
Ravi Geda | 6c3031e | 2018-09-17 12:57:44 +0100 | [diff] [blame] | 26 | <artifactId>sidecar</artifactId> |
Sai Gandham | a14cb89 | 2018-10-07 19:05:09 -0500 | [diff] [blame^] | 27 | <version>2.1.2-SNAPSHOT</version> |
Ravi Geda | 6c3031e | 2018-09-17 12:57:44 +0100 | [diff] [blame] | 28 | <name>aaf-cadi-sidecar</name> |
| 29 | <packaging>pom</packaging> |
| 30 | |
| 31 | <parent> |
| 32 | <groupId>org.onap.oparent</groupId> |
| 33 | <artifactId>oparent</artifactId> |
Sai Gandham | ade2207 | 2018-10-04 21:48:01 -0500 | [diff] [blame] | 34 | <version>1.2.1</version> |
Ravi Geda | 6c3031e | 2018-09-17 12:57:44 +0100 | [diff] [blame] | 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> |
Ravi Geda | 1931e66 | 2018-09-25 21:54:30 +0100 | [diff] [blame] | 49 | <module>rproxy</module> |
| 50 | <module>tproxy-config</module> |
Ravi Geda | 6c3031e | 2018-09-17 12:57:44 +0100 | [diff] [blame] | 51 | </modules> |
| 52 | |
| 53 | <build> |
| 54 | <pluginManagement> |
| 55 | <plugins> |
| 56 | <plugin> |
| 57 | <groupId>com.mycila</groupId> |
| 58 | <artifactId>license-maven-plugin</artifactId> |
| 59 | <version>3.0</version> |
| 60 | <configuration> |
| 61 | <header>License.txt</header> |
| 62 | <includes> |
| 63 | <include>src/main/java/**</include> |
| 64 | <include>src/test/java/**</include> |
| 65 | <include>pom.xml</include> |
| 66 | </includes> |
| 67 | <skipExistingHeaders>true</skipExistingHeaders> |
| 68 | </configuration> |
| 69 | <executions> |
| 70 | <execution> |
| 71 | <goals> |
| 72 | <!-- Set goal from "check" to "format" to auto update license headers --> |
| 73 | <goal>check</goal> |
| 74 | </goals> |
| 75 | <phase>validate</phase> |
| 76 | </execution> |
| 77 | </executions> |
| 78 | </plugin> |
| 79 | </plugins> |
| 80 | </pluginManagement> |
| 81 | </build> |
| 82 | </project> |