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