ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 1 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 2 | 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> |
| 4 | <parent> |
Rob Daugherty | 9de3ce0 | 2017-08-04 12:15:51 -0400 | [diff] [blame] | 5 | <groupId>org.openecomp.so</groupId> |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 6 | <artifactId>adapters</artifactId> |
ChrisC | 1ba1d19 | 2017-03-13 05:01:04 -0700 | [diff] [blame] | 7 | <version>1.1.0-SNAPSHOT</version> |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 8 | </parent> |
| 9 | |
Rob Daugherty | 9de3ce0 | 2017-08-04 12:15:51 -0400 | [diff] [blame] | 10 | <groupId>org.openecomp.so.adapters</groupId> |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 11 | <artifactId>mso-requests-db-adapter</artifactId> |
| 12 | <packaging>war</packaging> |
ChrisC | 1ba1d19 | 2017-03-13 05:01:04 -0700 | [diff] [blame] | 13 | |
| 14 | |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 15 | <dependencies> |
ChrisC | 1ba1d19 | 2017-03-13 05:01:04 -0700 | [diff] [blame] | 16 | |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 17 | <dependency> |
Rob Daugherty | 9de3ce0 | 2017-08-04 12:15:51 -0400 | [diff] [blame] | 18 | <groupId>org.openecomp.so</groupId> |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 19 | <artifactId>mso-requests-db</artifactId> |
| 20 | <version>${project.version}</version> |
| 21 | </dependency> |
| 22 | <dependency> |
| 23 | <groupId>org.jboss.resteasy</groupId> |
| 24 | <artifactId>resteasy-jaxrs</artifactId> |
| 25 | <version>3.0.19.Final</version> |
| 26 | <scope>provided</scope> |
| 27 | <exclusions> |
| 28 | <exclusion> |
| 29 | <groupId>org.slf4j</groupId> |
| 30 | <artifactId>slf4j-api</artifactId> |
| 31 | </exclusion> |
| 32 | <exclusion> |
| 33 | <groupId>org.slf4j</groupId> |
| 34 | <artifactId>slf4j-simple</artifactId> |
| 35 | </exclusion> |
| 36 | <exclusion> |
| 37 | <groupId>org.apache.httpcomponents</groupId> |
| 38 | <artifactId>httpclient</artifactId> |
| 39 | </exclusion> |
| 40 | </exclusions> |
| 41 | </dependency> |
| 42 | <dependency> |
Rob Daugherty | 9de3ce0 | 2017-08-04 12:15:51 -0400 | [diff] [blame] | 43 | <groupId>org.openecomp.so</groupId> |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 44 | <artifactId>status-control</artifactId> |
| 45 | <version>${project.version}</version> |
| 46 | </dependency> |
| 47 | |
| 48 | </dependencies> |
| 49 | |
| 50 | <build> |
| 51 | <finalName>${project.artifactId}-${project.version}</finalName> |
| 52 | <plugins> |
ChrisC | 1ba1d19 | 2017-03-13 05:01:04 -0700 | [diff] [blame] | 53 | |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 54 | <plugin> |
| 55 | <artifactId>maven-war-plugin</artifactId> |
| 56 | <version>2.4</version> |
| 57 | <configuration> |
| 58 | <warSourceDirectory>WebContent</warSourceDirectory> |
| 59 | <failOnMissingWebXml>false</failOnMissingWebXml> |
| 60 | <attachClasses>true</attachClasses> |
| 61 | </configuration> |
| 62 | </plugin> |
| 63 | |
| 64 | <plugin> |
| 65 | <groupId>org.jvnet.jax-ws-commons</groupId> |
| 66 | <artifactId>jaxws-maven-plugin</artifactId> |
| 67 | <version>2.3</version> |
| 68 | <executions> |
| 69 | <execution> |
| 70 | <goals> |
| 71 | <goal>wsgen</goal> |
| 72 | </goals> |
| 73 | </execution> |
| 74 | </executions> |
| 75 | <configuration> |
| 76 | <verbose>true</verbose> |
| 77 | <sei>org.openecomp.mso.adapters.requestsdb.MsoRequestsDbAdapterImpl</sei> |
| 78 | <genWsdl>true</genWsdl> |
| 79 | <inlineSchemas>true</inlineSchemas> |
| 80 | </configuration> |
| 81 | <dependencies> |
| 82 | <dependency> |
| 83 | <groupId>com.sun.xml.ws</groupId> |
| 84 | <artifactId>jaxws-tools</artifactId> |
| 85 | <version>2.2.7</version> |
| 86 | </dependency> |
| 87 | <dependency> |
Rob Daugherty | 9de3ce0 | 2017-08-04 12:15:51 -0400 | [diff] [blame] | 88 | <groupId>org.openecomp.so.adapters</groupId> |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 89 | <artifactId>mso-adapter-utils</artifactId> |
| 90 | <version>${project.version}</version> |
| 91 | </dependency> |
| 92 | </dependencies> |
| 93 | </plugin> |
| 94 | </plugins> |
| 95 | </build> |
| 96 | </project> |