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