xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [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> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 6 | <artifactId>adapters</artifactId> |
| 7 | <version>1.1.0-SNAPSHOT</version> |
| 8 | </parent> |
| 9 | |
Rob Daugherty | 9de3ce0 | 2017-08-04 12:15:51 -0400 | [diff] [blame] | 10 | <groupId>org.openecomp.so.adapters</groupId> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 11 | <artifactId>mso-catalog-db-adapter</artifactId> |
| 12 | <packaging>war</packaging> |
| 13 | |
| 14 | <build> |
| 15 | <finalName>${project.artifactId}-${project.version}</finalName> |
| 16 | <plugins> |
| 17 | <plugin> |
| 18 | <artifactId>maven-war-plugin</artifactId> |
| 19 | <version>2.4</version> |
| 20 | <configuration> |
| 21 | <warSourceDirectory>WebContent</warSourceDirectory> |
| 22 | <failOnMissingWebXml>false</failOnMissingWebXml> |
| 23 | <attachClasses>true</attachClasses> |
| 24 | </configuration> |
| 25 | </plugin> |
| 26 | |
| 27 | </plugins> |
| 28 | <pluginManagement> |
| 29 | <plugins> |
| 30 | <!--This plugin's configuration is used to store Eclipse m2e settings |
| 31 | only. It has no influence on the Maven build itself. --> |
| 32 | <plugin> |
| 33 | <groupId>org.eclipse.m2e</groupId> |
| 34 | <artifactId>lifecycle-mapping</artifactId> |
| 35 | <version>1.0.0</version> |
| 36 | <configuration> |
| 37 | <lifecycleMappingMetadata> |
| 38 | <pluginExecutions> |
| 39 | <pluginExecution> |
| 40 | <pluginExecutionFilter> |
| 41 | <groupId> |
| 42 | org.jvnet.jax-ws-commons |
| 43 | </groupId> |
| 44 | <artifactId> |
| 45 | jaxws-maven-plugin |
| 46 | </artifactId> |
| 47 | <versionRange> |
| 48 | [2.3,) |
| 49 | </versionRange> |
| 50 | <goals> |
| 51 | <goal>wsgen</goal> |
| 52 | </goals> |
| 53 | </pluginExecutionFilter> |
| 54 | <action> |
| 55 | <ignore></ignore> |
| 56 | </action> |
| 57 | </pluginExecution> |
| 58 | </pluginExecutions> |
| 59 | </lifecycleMappingMetadata> |
| 60 | </configuration> |
| 61 | </plugin> |
| 62 | </plugins> |
| 63 | </pluginManagement> |
| 64 | </build> |
| 65 | |
| 66 | <dependencies> |
| 67 | <dependency> |
Rob Daugherty | 9de3ce0 | 2017-08-04 12:15:51 -0400 | [diff] [blame] | 68 | <groupId>org.openecomp.so</groupId> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 69 | <artifactId>mso-catalog-db</artifactId> |
| 70 | <version>${project.version}</version> |
| 71 | </dependency> |
| 72 | <dependency> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 73 | <groupId>org.jboss.resteasy</groupId> |
| 74 | <artifactId>resteasy-jaxrs</artifactId> |
| 75 | <version>3.0.19.Final</version> |
| 76 | <scope>provided</scope> |
| 77 | <exclusions> |
| 78 | <exclusion> |
| 79 | <groupId>org.slf4j</groupId> |
| 80 | <artifactId>slf4j-api</artifactId> |
| 81 | </exclusion> |
| 82 | <exclusion> |
| 83 | <groupId>org.slf4j</groupId> |
| 84 | <artifactId>slf4j-simple</artifactId> |
| 85 | </exclusion> |
| 86 | <exclusion> |
| 87 | <groupId>org.apache.httpcomponents</groupId> |
| 88 | <artifactId>httpclient</artifactId> |
| 89 | </exclusion> |
| 90 | </exclusions> |
| 91 | </dependency> |
| 92 | <dependency> |
Determe, Sebastien (sd378r) | 94ee925 | 2017-05-02 03:53:18 -0700 | [diff] [blame] | 93 | <groupId>org.jboss.resteasy</groupId> |
| 94 | <artifactId>resteasy-jackson-provider</artifactId> |
| 95 | <version>3.0.16.Final</version> |
| 96 | </dependency> |
| 97 | <!--<dependency> |
Rob Daugherty | 9de3ce0 | 2017-08-04 12:15:51 -0400 | [diff] [blame] | 98 | <groupId>org.openecomp.so</groupId> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 99 | <artifactId>status-control</artifactId> |
| 100 | <version>${project.version}</version> |
Determe, Sebastien (sd378r) | 94ee925 | 2017-05-02 03:53:18 -0700 | [diff] [blame] | 101 | </dependency>--> |
Arthur Martella | e371d75 | 2017-10-02 11:03:02 -0400 | [diff] [blame^] | 102 | <dependency> |
| 103 | <groupId>org.mockito</groupId> |
| 104 | <artifactId>mockito-all</artifactId> |
| 105 | <version>1.10.19</version> |
| 106 | <scope>test</scope> |
| 107 | </dependency> |
| 108 | <dependency> |
| 109 | <groupId>junit</groupId> |
| 110 | <artifactId>junit</artifactId> |
| 111 | <version>4.11</version> |
| 112 | <scope>test</scope> |
| 113 | </dependency> |
| 114 | <dependency> |
| 115 | <groupId>org.mockito</groupId> |
| 116 | <artifactId>mockito-core</artifactId> |
| 117 | <version>2.0.5-beta</version> |
| 118 | <scope>test</scope> |
| 119 | </dependency> |
| 120 | <dependency> |
| 121 | <groupId>org.powermock</groupId> |
| 122 | <artifactId>powermock-api-mockito</artifactId> |
| 123 | <version>1.6.2</version> |
| 124 | <scope>test</scope> |
| 125 | </dependency> |
| 126 | <dependency> |
| 127 | <groupId>org.powermock</groupId> |
| 128 | <artifactId>powermock-module-junit4</artifactId> |
| 129 | <version>1.6.2</version> |
| 130 | <scope>test</scope> |
| 131 | </dependency> |
| 132 | <dependency> |
| 133 | <groupId>javax.json</groupId> |
| 134 | <artifactId>javax.json-api</artifactId> |
| 135 | <version>1.0</version> |
| 136 | <scope>test</scope> |
| 137 | </dependency> |
| 138 | <dependency> |
| 139 | <groupId>org.glassfish</groupId> |
| 140 | <artifactId>javax.json</artifactId> |
| 141 | <version>1.0.4</version> |
| 142 | <scope>test</scope> |
| 143 | </dependency> |
| 144 | <dependency> |
| 145 | <groupId>org.hamcrest</groupId> |
| 146 | <artifactId>hamcrest-all</artifactId> |
| 147 | <version>1.3</version> |
| 148 | <scope>test</scope> |
| 149 | </dependency> |
| 150 | <dependency> |
| 151 | <groupId>org.jboss.resteasy</groupId> |
| 152 | <artifactId>resteasy-client</artifactId> |
| 153 | <version>3.0.19.Final</version> |
| 154 | <scope>test</scope> |
| 155 | </dependency> |
| 156 | <dependency> |
| 157 | <groupId>javax.servlet</groupId> |
| 158 | <artifactId>javax.servlet-api</artifactId> |
| 159 | <version>3.1.0</version> |
| 160 | <scope>test</scope> |
| 161 | </dependency> |
| 162 | <dependency> |
| 163 | <groupId>org.jboss.resteasy</groupId> |
| 164 | <artifactId>tjws</artifactId> |
| 165 | <version>3.0.19.Final</version> |
| 166 | <scope>test</scope> |
| 167 | </dependency> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 168 | </dependencies> |
| 169 | |
| 170 | </project> |