Kajur, Harish (vk250x) | d8393a8 | 2018-12-13 08:37:13 -0500 | [diff] [blame] | 1 | <?xml version="1.0"?> |
| 2 | <!-- |
| 3 | |
| 4 | ============LICENSE_START======================================================= |
| 5 | org.onap.aai |
| 6 | ================================================================================ |
| 7 | Copyright © 2017-2018 AT&T Intellectual Property. All rights reserved. |
| 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 |
| 24 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" |
| 25 | xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> |
| 26 | <modelVersion>4.0.0</modelVersion> |
| 27 | <parent> |
| 28 | <groupId>org.onap.aai.schema-service</groupId> |
| 29 | <artifactId>schema-service</artifactId> |
Kajur, Harish (vk250x) | 009a574 | 2019-04-14 21:32:42 -0400 | [diff] [blame^] | 30 | <version>1.0.3-SNAPSHOT</version> |
Kajur, Harish (vk250x) | d8393a8 | 2018-12-13 08:37:13 -0500 | [diff] [blame] | 31 | </parent> |
| 32 | <artifactId>aai-annotations</artifactId> |
| 33 | <name>aai-annotations</name> |
| 34 | <packaging>jar</packaging> |
Kajur, Harish (vk250x) | 009a574 | 2019-04-14 21:32:42 -0400 | [diff] [blame^] | 35 | <version>1.0.3-SNAPSHOT</version> |
Kajur, Harish (vk250x) | d8393a8 | 2018-12-13 08:37:13 -0500 | [diff] [blame] | 36 | <properties> |
| 37 | <onap.nexus.url>https://nexus.onap.org</onap.nexus.url> |
| 38 | </properties> |
| 39 | <dependencies> |
| 40 | <dependency> |
| 41 | <groupId>junit</groupId> |
| 42 | <artifactId>junit</artifactId> |
| 43 | <version>3.8.1</version> |
| 44 | <scope>test</scope> |
| 45 | </dependency> |
| 46 | </dependencies> |
| 47 | |
| 48 | <build> |
| 49 | <plugins> |
| 50 | <plugin> |
| 51 | <groupId>org.apache.maven.plugins</groupId> |
| 52 | <artifactId>maven-source-plugin</artifactId> |
| 53 | </plugin> |
| 54 | <plugin> |
| 55 | <groupId>org.apache.maven.plugins</groupId> |
| 56 | <artifactId>maven-deploy-plugin</artifactId> |
| 57 | </plugin> |
| 58 | <plugin> |
| 59 | <groupId>org.sonatype.plugins</groupId> |
| 60 | <artifactId>nexus-staging-maven-plugin</artifactId> |
| 61 | </plugin> |
| 62 | </plugins> |
| 63 | </build> |
| 64 | |
| 65 | <!-- Plugins and repositories --> |
| 66 | <pluginRepositories> |
| 67 | <pluginRepository> |
| 68 | <id>central</id> |
| 69 | <url>http://repo1.maven.org/maven2</url> |
| 70 | </pluginRepository> |
| 71 | <pluginRepository> |
| 72 | <id>EvoSuite</id> |
| 73 | <name>EvoSuite Repository</name> |
| 74 | <url>http://www.evosuite.org/m2</url> |
| 75 | </pluginRepository> |
| 76 | </pluginRepositories> |
| 77 | |
| 78 | </project> |