Dan Timoney | 5363b27 | 2017-07-18 20:23:07 -0400 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
Timoney, Dan (dt5972) | 21ec655 | 2019-01-08 12:14:12 -0500 | [diff] [blame] | 2 | <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"> |
| 3 | <modelVersion>4.0.0</modelVersion> |
Dan Timoney | 1dc3bcf | 2018-02-15 16:13:28 -0500 | [diff] [blame] | 4 | |
Timoney, Dan (dt5972) | 21ec655 | 2019-01-08 12:14:12 -0500 | [diff] [blame] | 5 | <parent> |
| 6 | <groupId>org.onap.ccsdk.parent</groupId> |
| 7 | <artifactId>binding-parent</artifactId> |
Timoney, Dan (dt5972) | 4736bef | 2019-09-10 16:16:07 -0400 | [diff] [blame] | 8 | <version>1.5.0-SNAPSHOT</version> |
Timoney, Dan (dt5972) | 21ec655 | 2019-01-08 12:14:12 -0500 | [diff] [blame] | 9 | <relativePath/> |
| 10 | </parent> |
Dan Timoney | 1dc3bcf | 2018-02-15 16:13:28 -0500 | [diff] [blame] | 11 | |
Timoney, Dan (dt5972) | 21ec655 | 2019-01-08 12:14:12 -0500 | [diff] [blame] | 12 | <groupId>org.onap.ccsdk.sli.adaptors</groupId> |
| 13 | <artifactId>aai-service-provider</artifactId> |
Timoney, Dan (dt5972) | 4736bef | 2019-09-10 16:16:07 -0400 | [diff] [blame] | 14 | <version>0.7.0-SNAPSHOT</version> |
Timoney, Dan (dt5972) | 21ec655 | 2019-01-08 12:14:12 -0500 | [diff] [blame] | 15 | <packaging>bundle</packaging> |
Dan Timoney | 1dc3bcf | 2018-02-15 16:13:28 -0500 | [diff] [blame] | 16 | |
Timoney, Dan (dt5972) | 21ec655 | 2019-01-08 12:14:12 -0500 | [diff] [blame] | 17 | <name>ccsdk-sli-adaptors :: aai-service :: ${project.artifactId}</name> |
Timoney, Dan (dt5972) | dbbd392 | 2019-07-03 14:30:56 -0400 | [diff] [blame] | 18 | <url>http://maven.apache.org</url> |
Dan Timoney | 1dc3bcf | 2018-02-15 16:13:28 -0500 | [diff] [blame] | 19 | |
Timoney, Dan (dt5972) | 21ec655 | 2019-01-08 12:14:12 -0500 | [diff] [blame] | 20 | <properties> |
| 21 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 22 | <ccsdk.sli.adaptors.version>${project.version}</ccsdk.sli.adaptors.version> |
| 23 | </properties> |
Timoney, Dan (dt5972) | f200a72 | 2019-01-03 16:24:22 -0500 | [diff] [blame] | 24 | |
| 25 | <dependencyManagement> |
| 26 | <dependencies> |
| 27 | <dependency> |
| 28 | <groupId>org.onap.ccsdk.sli.core</groupId> |
| 29 | <artifactId>sli-core-artifacts</artifactId> |
| 30 | <version>${ccsdk.sli.core.version}</version> |
| 31 | <type>pom</type> |
| 32 | <scope>import</scope> |
| 33 | </dependency> |
| 34 | </dependencies> |
| 35 | </dependencyManagement> |
Dan Timoney | 1dc3bcf | 2018-02-15 16:13:28 -0500 | [diff] [blame] | 36 | |
Timoney, Dan (dt5972) | 21ec655 | 2019-01-08 12:14:12 -0500 | [diff] [blame] | 37 | <dependencies> |
| 38 | <dependency> |
| 39 | <groupId>junit</groupId> |
| 40 | <artifactId>junit</artifactId> |
| 41 | <scope>test</scope> |
| 42 | </dependency> |
| 43 | <dependency> |
| 44 | <groupId>org.mockito</groupId> |
| 45 | <artifactId>mockito-core</artifactId> |
| 46 | <scope>test</scope> |
| 47 | </dependency> |
| 48 | <dependency> |
| 49 | <groupId>org.onap.ccsdk.sli.core</groupId> |
| 50 | <artifactId>sli-common</artifactId> |
Timoney, Dan (dt5972) | dbbd392 | 2019-07-03 14:30:56 -0400 | [diff] [blame] | 51 | <scope>compile</scope> |
Timoney, Dan (dt5972) | 21ec655 | 2019-01-08 12:14:12 -0500 | [diff] [blame] | 52 | </dependency> |
| 53 | <dependency> |
| 54 | <groupId>org.onap.ccsdk.sli.core</groupId> |
| 55 | <artifactId>sli-provider</artifactId> |
Timoney, Dan (dt5972) | dbbd392 | 2019-07-03 14:30:56 -0400 | [diff] [blame] | 56 | <scope>compile</scope> |
Timoney, Dan (dt5972) | 21ec655 | 2019-01-08 12:14:12 -0500 | [diff] [blame] | 57 | </dependency> |
| 58 | <dependency> |
| 59 | <groupId>org.onap.ccsdk.sli.core</groupId> |
| 60 | <artifactId>utils-provider</artifactId> |
Timoney, Dan (dt5972) | 793f714 | 2019-06-20 19:16:28 -0400 | [diff] [blame] | 61 | <version>${ccsdk.sli.core.version}</version> |
Timoney, Dan (dt5972) | 21ec655 | 2019-01-08 12:14:12 -0500 | [diff] [blame] | 62 | </dependency> |
| 63 | <dependency> |
| 64 | <groupId>org.osgi</groupId> |
| 65 | <artifactId>org.osgi.core</artifactId> |
| 66 | <scope>provided</scope> |
| 67 | </dependency> |
| 68 | <dependency> |
| 69 | <groupId>org.slf4j</groupId> |
| 70 | <artifactId>slf4j-api</artifactId> |
| 71 | </dependency> |
| 72 | <dependency> |
| 73 | <groupId>org.slf4j</groupId> |
| 74 | <artifactId>jcl-over-slf4j</artifactId> |
| 75 | </dependency> |
| 76 | <dependency> |
Timoney, Dan (dt5972) | 889d1c0 | 2019-04-02 10:23:20 -0700 | [diff] [blame] | 77 | <groupId>org.glassfish.jersey.core</groupId> |
Timoney, Dan (dt5972) | 21ec655 | 2019-01-08 12:14:12 -0500 | [diff] [blame] | 78 | <artifactId>jersey-client</artifactId> |
| 79 | </dependency> |
| 80 | <dependency> |
Timoney, Dan (dt5972) | 889d1c0 | 2019-04-02 10:23:20 -0700 | [diff] [blame] | 81 | <groupId>org.glassfish.jersey.core</groupId> |
| 82 | <artifactId>jersey-common</artifactId> |
Timoney, Dan (dt5972) | 21ec655 | 2019-01-08 12:14:12 -0500 | [diff] [blame] | 83 | </dependency> |
| 84 | <dependency> |
| 85 | <groupId>org.apache.httpcomponents</groupId> |
| 86 | <artifactId>httpcore</artifactId> |
Timoney, Dan (dt5972) | 21ec655 | 2019-01-08 12:14:12 -0500 | [diff] [blame] | 87 | </dependency> |
| 88 | <dependency> |
| 89 | <groupId>org.apache.httpcomponents</groupId> |
| 90 | <artifactId>httpclient</artifactId> |
Timoney, Dan (dt5972) | 21ec655 | 2019-01-08 12:14:12 -0500 | [diff] [blame] | 91 | </dependency> |
| 92 | <dependency> |
| 93 | <groupId>com.fasterxml.jackson.core</groupId> |
| 94 | <artifactId>jackson-databind</artifactId> |
| 95 | </dependency> |
| 96 | <dependency> |
| 97 | <groupId>com.fasterxml.jackson.module</groupId> |
| 98 | <artifactId>jackson-module-jaxb-annotations</artifactId> |
| 99 | </dependency> |
| 100 | <dependency> |
| 101 | <groupId>com.fasterxml.jackson.core</groupId> |
| 102 | <artifactId>jackson-annotations</artifactId> |
| 103 | </dependency> |
| 104 | <dependency> |
| 105 | <groupId>com.fasterxml.jackson.core</groupId> |
| 106 | <artifactId>jackson-core</artifactId> |
| 107 | </dependency> |
| 108 | <dependency> |
| 109 | <groupId>commons-lang</groupId> |
| 110 | <artifactId>commons-lang</artifactId> |
| 111 | </dependency> |
Dan Timoney | 1dc3bcf | 2018-02-15 16:13:28 -0500 | [diff] [blame] | 112 | |
Timoney, Dan (dt5972) | 21ec655 | 2019-01-08 12:14:12 -0500 | [diff] [blame] | 113 | <dependency> |
| 114 | <groupId>org.jsoup</groupId> |
| 115 | <artifactId>jsoup</artifactId> |
Timoney, Dan (dt5972) | 21ec655 | 2019-01-08 12:14:12 -0500 | [diff] [blame] | 116 | <scope>test</scope> |
| 117 | </dependency> |
| 118 | <dependency> |
| 119 | <groupId>org.springframework</groupId> |
| 120 | <artifactId>spring-core</artifactId> |
Timoney, Dan (dt5972) | 21ec655 | 2019-01-08 12:14:12 -0500 | [diff] [blame] | 121 | <scope>test</scope> |
| 122 | </dependency> |
| 123 | </dependencies> |
Dan Timoney | 5363b27 | 2017-07-18 20:23:07 -0400 | [diff] [blame] | 124 | |
Timoney, Dan (dt5972) | 21ec655 | 2019-01-08 12:14:12 -0500 | [diff] [blame] | 125 | <build> |
| 126 | <plugins> |
| 127 | <plugin> |
| 128 | <groupId>org.jvnet.jaxb2.maven2</groupId> |
| 129 | <artifactId>maven-jaxb2-plugin</artifactId> |
| 130 | <version>0.13.1</version> |
| 131 | <executions> |
| 132 | <execution> |
| 133 | <id>gen-xjc</id> |
| 134 | <goals> |
| 135 | <goal>generate</goal> |
| 136 | </goals> |
| 137 | </execution> |
| 138 | </executions> |
| 139 | <configuration> |
| 140 | <schemaDirectory>${project.basedir}/src/main/resources</schemaDirectory> |
| 141 | <schemaIncludes> |
prakash.e | ce3c030 | 2019-05-15 18:08:52 +0530 | [diff] [blame] | 142 | <value>aai_schema_v16.xsd</value> |
Timoney, Dan (dt5972) | 21ec655 | 2019-01-08 12:14:12 -0500 | [diff] [blame] | 143 | </schemaIncludes> |
| 144 | <bindingIncludes> |
| 145 | <include>aai-schema-bindings.xjb</include> |
| 146 | </bindingIncludes> |
| 147 | <generateDirectory>${project.build.directory}/generated-sources/main/java</generateDirectory> |
prakash.e | ce3c030 | 2019-05-15 18:08:52 +0530 | [diff] [blame] | 148 | <generatePackage>org.onap.aai.inventory.v16</generatePackage> |
Timoney, Dan (dt5972) | 21ec655 | 2019-01-08 12:14:12 -0500 | [diff] [blame] | 149 | <extension>true</extension> |
| 150 | <args> |
| 151 | <arg>-Xannotate</arg> |
| 152 | </args> |
| 153 | <plugins> |
| 154 | <plugin> |
| 155 | <groupId>org.jvnet.jaxb2_commons</groupId> |
| 156 | <artifactId>jaxb2-basics-annotate</artifactId> |
| 157 | <version>0.6.4</version> |
| 158 | </plugin> |
| 159 | </plugins> |
| 160 | </configuration> |
| 161 | </plugin> |
| 162 | </plugins> |
| 163 | </build> |
Dan Timoney | 5363b27 | 2017-07-18 20:23:07 -0400 | [diff] [blame] | 164 | </project> |