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-schema</artifactId> |
| 33 | <name>aai-schema</name> |
Kajur, Harish (vk250x) | 009a574 | 2019-04-14 21:32:42 -0400 | [diff] [blame] | 34 | <version>1.0.3-SNAPSHOT</version> |
Kajur, Harish (vk250x) | d8393a8 | 2018-12-13 08:37:13 -0500 | [diff] [blame] | 35 | <properties> |
| 36 | <onap.nexus.url>https://nexus.onap.org</onap.nexus.url> |
| 37 | <!-- Start of Default ONAP Schema Properties --> |
| 38 | <aai.xsd.source>src/main/resources/onap/aai_schema</aai.xsd.source> |
| 39 | <aai.bindings.source>src/main/xjb/bindings-onap.xjb</aai.bindings.source> |
| 40 | <!-- End of Default ONAP Schema Properties --> |
| 41 | </properties> |
| 42 | <dependencies> |
| 43 | <dependency> |
| 44 | <groupId>org.onap.aai.schema-service</groupId> |
| 45 | <artifactId>aai-annotations</artifactId> |
| 46 | <version>${project.version}</version> |
| 47 | </dependency> |
| 48 | <dependency> |
| 49 | <groupId>junit</groupId> |
| 50 | <artifactId>junit</artifactId> |
| 51 | <version>4.12</version> |
| 52 | <scope>test</scope> |
| 53 | </dependency> |
| 54 | <dependency> |
| 55 | <groupId>commons-io</groupId> |
| 56 | <artifactId>commons-io</artifactId> |
| 57 | <version>RELEASE</version> |
| 58 | <scope>test</scope> |
| 59 | </dependency> |
Kajur, Harish (vk250x) | 862083f | 2019-03-29 12:13:14 -0400 | [diff] [blame] | 60 | <dependency> |
| 61 | <groupId>org.jvnet.jaxb2_commons</groupId> |
| 62 | <artifactId>jaxb2-basics</artifactId> |
| 63 | <version>0.11.1</version> |
Jimmy Forsyth | f99e900 | 2019-04-25 10:41:26 -0400 | [diff] [blame^] | 64 | <exclusions> |
| 65 | <exclusion> |
| 66 | <groupId>commons-beanutils</groupId> |
| 67 | <artifactId>commons-beanutils</artifactId> |
| 68 | </exclusion> |
| 69 | </exclusions> |
Kajur, Harish (vk250x) | 862083f | 2019-03-29 12:13:14 -0400 | [diff] [blame] | 70 | </dependency> |
Kajur, Harish (vk250x) | d8393a8 | 2018-12-13 08:37:13 -0500 | [diff] [blame] | 71 | </dependencies> |
| 72 | <build> |
| 73 | <plugins> |
| 74 | <plugin> |
| 75 | <groupId>org.codehaus.mojo</groupId> |
| 76 | <artifactId>jaxb2-maven-plugin</artifactId> |
| 77 | <version>2.2</version> |
| 78 | <executions> |
| 79 | <execution> |
| 80 | <id>xjc</id> |
| 81 | <goals> |
| 82 | <goal>xjc</goal> |
| 83 | </goals> |
| 84 | <configuration> |
| 85 | <outputDirectory>${project.build.directory}/generated-sources</outputDirectory> |
| 86 | <sources> |
| 87 | <source>${aai.xsd.source}</source> |
| 88 | </sources> |
| 89 | <xjbSources> |
| 90 | <xjbSource>${aai.bindings.source}</xjbSource> |
| 91 | </xjbSources> |
| 92 | <xjcSourceExcludeFilters> |
| 93 | <filter |
| 94 | implementation="org.codehaus.mojo.jaxb2.shared.filters.pattern.PatternFileFilter"> |
| 95 | <patterns> |
| 96 | <pattern>edgetagquery\.xsd</pattern> |
| 97 | </patterns> |
| 98 | </filter> |
| 99 | </xjcSourceExcludeFilters> |
| 100 | <extension>true</extension> |
| 101 | <arguments> |
| 102 | <argument>-Xannotate</argument> |
Kajur, Harish (vk250x) | 862083f | 2019-03-29 12:13:14 -0400 | [diff] [blame] | 103 | <argument>-XtoString</argument> |
Kajur, Harish (vk250x) | d8393a8 | 2018-12-13 08:37:13 -0500 | [diff] [blame] | 104 | </arguments> |
| 105 | </configuration> |
| 106 | </execution> |
| 107 | </executions> |
| 108 | <dependencies> |
| 109 | <dependency> |
| 110 | <groupId>org.jvnet.jaxb2_commons</groupId> |
Kajur, Harish (vk250x) | 862083f | 2019-03-29 12:13:14 -0400 | [diff] [blame] | 111 | <artifactId>jaxb2-basics</artifactId> |
| 112 | <version>0.11.1</version> |
| 113 | </dependency> |
| 114 | <dependency> |
| 115 | <groupId>org.jvnet.jaxb2_commons</groupId> |
Kajur, Harish (vk250x) | d8393a8 | 2018-12-13 08:37:13 -0500 | [diff] [blame] | 116 | <artifactId>jaxb2-basics-annotate</artifactId> |
| 117 | <version>1.0.2</version> |
| 118 | </dependency> |
| 119 | <dependency> |
| 120 | <groupId>org.onap.aai.schema-service</groupId> |
| 121 | <artifactId>aai-annotations</artifactId> |
| 122 | <version>${project.version}</version> |
| 123 | </dependency> |
| 124 | </dependencies> |
| 125 | </plugin> |
| 126 | <plugin> |
| 127 | <groupId>org.apache.maven.plugins</groupId> |
| 128 | <artifactId>maven-source-plugin</artifactId> |
| 129 | </plugin> |
| 130 | <plugin> |
| 131 | <groupId>org.apache.maven.plugins</groupId> |
| 132 | <artifactId>maven-site-plugin</artifactId> |
| 133 | </plugin> |
| 134 | <plugin> |
| 135 | <groupId>org.apache.maven.plugins</groupId> |
| 136 | <artifactId>maven-deploy-plugin</artifactId> |
| 137 | </plugin> |
| 138 | <plugin> |
| 139 | <groupId>org.sonatype.plugins</groupId> |
| 140 | <artifactId>nexus-staging-maven-plugin</artifactId> |
| 141 | </plugin> |
| 142 | </plugins> |
| 143 | <resources> |
| 144 | <resource> |
| 145 | <directory>src/main/resources</directory> |
| 146 | <filtering>false</filtering> |
| 147 | <includes> |
| 148 | <include>**/*</include> |
| 149 | </includes> |
| 150 | </resource> |
| 151 | </resources> |
| 152 | </build> |
| 153 | |
| 154 | <!-- Start of ONAP Specific Repositories --> |
| 155 | <pluginRepositories> |
| 156 | <pluginRepository> |
| 157 | <id>central</id> |
| 158 | <url>http://repo1.maven.org/maven2</url> |
| 159 | </pluginRepository> |
| 160 | <pluginRepository> |
| 161 | <id>EvoSuite</id> |
| 162 | <name>EvoSuite Repository</name> |
| 163 | <url>http://www.evosuite.org/m2</url> |
| 164 | </pluginRepository> |
| 165 | </pluginRepositories> |
| 166 | <!-- End of ONAP Specific Repositories --> |
| 167 | </project> |