Benjamin, Max (mb388a) | 1372894 | 2017-11-06 15:01:36 -0500 | [diff] [blame] | 1 | <?xml version="1.0"?> |
Boslet, Cory | 3db9a38 | 2020-04-02 15:17:22 -0400 | [diff] [blame] | 2 | <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 3 | xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> |
| 4 | <modelVersion>4.0.0</modelVersion> |
| 5 | <parent> |
| 6 | <groupId>org.onap.so</groupId> |
| 7 | <artifactId>bpmn</artifactId> |
waqas.ikram | 9853763 | 2021-06-24 11:51:34 +0100 | [diff] [blame] | 8 | <version>1.9.0-SNAPSHOT</version> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 9 | </parent> |
| 10 | <artifactId>MSOCommonBPMN</artifactId> |
| 11 | <name>MSOCommonBPMN</name> |
| 12 | <packaging>jar</packaging> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 13 | <build> |
| 14 | <plugins> |
| 15 | <plugin> |
| 16 | <groupId>org.apache.maven.plugins</groupId> |
| 17 | <artifactId>maven-compiler-plugin</artifactId> |
Boslet, Cory | 3db9a38 | 2020-04-02 15:17:22 -0400 | [diff] [blame] | 18 | <configuration> |
Benjamin, Max | 2627532 | 2020-03-16 10:09:29 -0400 | [diff] [blame] | 19 | <compilerId>groovy-eclipse-compiler</compilerId> |
| 20 | </configuration> |
Benjamin, Max | 2627532 | 2020-03-16 10:09:29 -0400 | [diff] [blame] | 21 | <dependencies> |
| 22 | <dependency> |
| 23 | <groupId>org.codehaus.groovy</groupId> |
| 24 | <artifactId>groovy-eclipse-compiler</artifactId> |
| 25 | <version>3.6.0-03</version> |
| 26 | </dependency> |
| 27 | <dependency> |
| 28 | <groupId>org.codehaus.groovy</groupId> |
| 29 | <artifactId>groovy-eclipse-batch</artifactId> |
Benjamin, Max | 9868f17 | 2020-05-18 16:37:51 -0400 | [diff] [blame] | 30 | <version>2.5.8-03</version> |
Benjamin, Max | 2627532 | 2020-03-16 10:09:29 -0400 | [diff] [blame] | 31 | </dependency> |
| 32 | </dependencies> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 33 | </plugin> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 34 | <plugin> |
| 35 | <groupId>org.apache.maven.plugins</groupId> |
| 36 | <artifactId>maven-jar-plugin</artifactId> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 37 | <executions> |
| 38 | <execution> |
| 39 | <goals> |
| 40 | <goal>test-jar</goal> |
| 41 | </goals> |
| 42 | <configuration> |
| 43 | <skip>false</skip> |
| 44 | <excludes> |
| 45 | <exclude>**/validation/*</exclude> |
| 46 | </excludes> |
| 47 | </configuration> |
| 48 | </execution> |
| 49 | </executions> |
| 50 | </plugin> |
| 51 | <plugin> |
| 52 | <groupId>org.apache.cxf</groupId> |
| 53 | <artifactId>cxf-codegen-plugin</artifactId> |
| 54 | <version>2.5.2</version> |
| 55 | </plugin> |
| 56 | <plugin> |
| 57 | <groupId>org.apache.maven.plugins</groupId> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 58 | <artifactId>maven-surefire-plugin</artifactId> |
| 59 | <executions> |
| 60 | <execution> |
| 61 | <id>default-test</id> |
| 62 | <goals> |
| 63 | <goal>test</goal> |
| 64 | </goals> |
| 65 | <configuration> |
| 66 | <includes> |
| 67 | <include>**/AllTestSuites.java</include> |
| 68 | </includes> |
| 69 | </configuration> |
| 70 | </execution> |
| 71 | <execution> |
| 72 | <id>non-spring-tests</id> |
| 73 | <goals> |
| 74 | <goal>test</goal> |
| 75 | </goals> |
| 76 | <configuration> |
| 77 | <includes> |
| 78 | <include>**/NonSpringSuite.java</include> |
| 79 | </includes> |
| 80 | </configuration> |
| 81 | </execution> |
| 82 | <execution> |
| 83 | <id>groovy-tests</id> |
| 84 | <goals> |
| 85 | <goal>test</goal> |
| 86 | </goals> |
| 87 | <configuration> |
| 88 | <includes> |
| 89 | <include>**/AllGroovyTestSuites.java</include> |
| 90 | </includes> |
| 91 | </configuration> |
| 92 | </execution> |
| 93 | </executions> |
| 94 | <configuration> |
| 95 | <parallel>suites</parallel> |
| 96 | </configuration> |
| 97 | </plugin> |
| 98 | </plugins> |
| 99 | <pluginManagement> |
| 100 | <plugins> |
Benjamin, Max | 2627532 | 2020-03-16 10:09:29 -0400 | [diff] [blame] | 101 | <!--This plugin's configuration is used to store Eclipse m2e settings |
| 102 | only. It has no influence on the Maven build itself. --> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 103 | <plugin> |
| 104 | <groupId>org.eclipse.m2e</groupId> |
| 105 | <artifactId>lifecycle-mapping</artifactId> |
| 106 | <version>1.0.0</version> |
| 107 | <configuration> |
| 108 | <lifecycleMappingMetadata> |
| 109 | <pluginExecutions> |
| 110 | <pluginExecution> |
| 111 | <pluginExecutionFilter> |
| 112 | <groupId> |
Benjamin, Max | 2627532 | 2020-03-16 10:09:29 -0400 | [diff] [blame] | 113 | org.apache.maven.plugins |
| 114 | </groupId> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 115 | <artifactId> |
Benjamin, Max | 2627532 | 2020-03-16 10:09:29 -0400 | [diff] [blame] | 116 | maven-antrun-plugin |
| 117 | </artifactId> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 118 | <versionRange> |
Benjamin, Max | 2627532 | 2020-03-16 10:09:29 -0400 | [diff] [blame] | 119 | [1.3,) |
| 120 | </versionRange> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 121 | <goals> |
Benjamin, Max | 9868f17 | 2020-05-18 16:37:51 -0400 | [diff] [blame] | 122 | <goal>execute</goal> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 123 | </goals> |
| 124 | </pluginExecutionFilter> |
| 125 | <action> |
Benjamin, Max | 9868f17 | 2020-05-18 16:37:51 -0400 | [diff] [blame] | 126 | <execute> |
| 127 | <runOnIncremental>true</runOnIncremental> |
| 128 | </execute> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 129 | </action> |
| 130 | </pluginExecution> |
| 131 | </pluginExecutions> |
| 132 | </lifecycleMappingMetadata> |
| 133 | </configuration> |
| 134 | </plugin> |
| 135 | </plugins> |
| 136 | </pluginManagement> |
| 137 | </build> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 138 | <dependencies> |
| 139 | <dependency> |
| 140 | <groupId>org.camunda.bpm.springboot</groupId> |
| 141 | <artifactId>camunda-bpm-spring-boot-starter</artifactId> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 142 | <scope>test</scope> |
| 143 | </dependency> |
| 144 | <dependency> |
| 145 | <groupId>org.springframework.cloud</groupId> |
| 146 | <artifactId>spring-cloud-contract-wiremock</artifactId> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 147 | <scope>test</scope> |
| 148 | </dependency> |
| 149 | <dependency> |
| 150 | <groupId>org.springframework.boot</groupId> |
| 151 | <artifactId>spring-boot-starter-test</artifactId> |
| 152 | <scope>test</scope> |
| 153 | </dependency> |
| 154 | <dependency> |
| 155 | <groupId>org.camunda.bpm.extension.mockito</groupId> |
| 156 | <artifactId>camunda-bpm-mockito</artifactId> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 157 | <scope>test</scope> |
| 158 | </dependency> |
| 159 | <dependency> |
| 160 | <groupId>org.camunda.connect</groupId> |
| 161 | <artifactId>camunda-connect-connectors-all</artifactId> |
| 162 | </dependency> |
| 163 | <dependency> |
| 164 | <groupId>commons-beanutils</groupId> |
| 165 | <artifactId>commons-beanutils</artifactId> |
waqas.ikram | abfaee8 | 2021-06-16 16:54:04 +0100 | [diff] [blame] | 166 | </dependency> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 167 | <dependency> |
| 168 | <!-- Needed for InMemoryH2Test --> |
| 169 | <groupId>com.h2database</groupId> |
| 170 | <artifactId>h2</artifactId> |
| 171 | <scope>test</scope> |
| 172 | </dependency> |
| 173 | <dependency> |
| 174 | <groupId>org.codehaus.groovy</groupId> |
Benjamin, Max | 9868f17 | 2020-05-18 16:37:51 -0400 | [diff] [blame] | 175 | <artifactId>groovy-xml</artifactId> |
| 176 | </dependency> |
| 177 | <dependency> |
| 178 | <groupId>org.codehaus.groovy</groupId> |
| 179 | <artifactId>groovy-json</artifactId> |
| 180 | </dependency> |
| 181 | <dependency> |
| 182 | <groupId>org.codehaus.groovy</groupId> |
| 183 | <artifactId>groovy-jsr223</artifactId> |
| 184 | </dependency> |
| 185 | <dependency> |
| 186 | <groupId>org.codehaus.groovy</groupId> |
| 187 | <artifactId>groovy-test</artifactId> |
| 188 | <scope>test</scope> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 189 | </dependency> |
| 190 | <dependency> |
| 191 | <groupId>org.onap.so</groupId> |
| 192 | <artifactId>MSOCoreBPMN</artifactId> |
| 193 | <version>${project.version}</version> |
| 194 | </dependency> |
| 195 | <dependency> |
| 196 | <groupId>org.onap.so</groupId> |
| 197 | <artifactId>mso-catalog-db</artifactId> |
| 198 | <version>${project.version}</version> |
| 199 | </dependency> |
| 200 | <dependency> |
| 201 | <groupId>org.onap.so</groupId> |
| 202 | <artifactId>mso-requests-db</artifactId> |
| 203 | <version>${project.version}</version> |
| 204 | </dependency> |
| 205 | <dependency> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 206 | <groupId>org.onap.so.adapters</groupId> |
| 207 | <artifactId>mso-adapters-rest-interface</artifactId> |
| 208 | <version>${project.version}</version> |
| 209 | </dependency> |
| 210 | <dependency> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 211 | <groupId>commons-lang</groupId> |
| 212 | <artifactId>commons-lang</artifactId> |
| 213 | <version>2.6</version> |
| 214 | </dependency> |
| 215 | <dependency> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 216 | <groupId>org.onap.appc.client</groupId> |
| 217 | <artifactId>client-lib</artifactId> |
eeginux | 8ef2ec8 | 2019-05-23 10:51:36 +0100 | [diff] [blame] | 218 | <version>${appc.client.version}</version> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 219 | <exclusions> |
| 220 | <exclusion> |
| 221 | <groupId>org.mockito</groupId> |
| 222 | <artifactId>mockito-core</artifactId> |
| 223 | </exclusion> |
| 224 | <exclusion> |
| 225 | <groupId>org.powermock</groupId> |
| 226 | <artifactId>powermock-module-junit4</artifactId> |
| 227 | </exclusion> |
| 228 | <exclusion> |
| 229 | <groupId>org.powermock</groupId> |
| 230 | <artifactId>powermock-api-mockito</artifactId> |
| 231 | </exclusion> |
| 232 | </exclusions> |
| 233 | </dependency> |
| 234 | <dependency> |
| 235 | <groupId>org.onap.appc.client</groupId> |
| 236 | <artifactId>client-kit</artifactId> |
eeginux | 8ef2ec8 | 2019-05-23 10:51:36 +0100 | [diff] [blame] | 237 | <version>${appc.client.version}</version> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 238 | <exclusions> |
| 239 | <exclusion> |
| 240 | <groupId>org.mockito</groupId> |
| 241 | <artifactId>mockito-core</artifactId> |
| 242 | </exclusion> |
| 243 | </exclusions> |
| 244 | </dependency> |
| 245 | <dependency> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 246 | <groupId>org.glassfish.jersey.core</groupId> |
| 247 | <artifactId>jersey-client</artifactId> |
| 248 | </dependency> |
| 249 | <dependency> |
| 250 | <groupId>org.glassfish.jersey.inject</groupId> |
| 251 | <artifactId>jersey-hk2</artifactId> |
| 252 | <version>2.26</version> |
| 253 | </dependency> |
| 254 | <dependency> |
| 255 | <groupId>org.glassfish.jersey.media</groupId> |
| 256 | <artifactId>jersey-media-json-jackson</artifactId> |
| 257 | </dependency> |
| 258 | <dependency> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 259 | <groupId>org.springframework.boot</groupId> |
| 260 | <artifactId>spring-boot-starter-test</artifactId> |
| 261 | <scope>test</scope> |
| 262 | </dependency> |
| 263 | <dependency> |
| 264 | <groupId>uk.co.blackpepper.bowman</groupId> |
| 265 | <artifactId>bowman-client</artifactId> |
Benjamin, Max | 9868f17 | 2020-05-18 16:37:51 -0400 | [diff] [blame] | 266 | <version>${bowman.client.version}</version> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 267 | </dependency> |
| 268 | <dependency> |
| 269 | <groupId>pl.pragmatists</groupId> |
| 270 | <artifactId>JUnitParams</artifactId> |
BOSLET, CORY | 8aca451 | 2021-03-09 22:57:29 -0500 | [diff] [blame] | 271 | <scope>test</scope> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 272 | </dependency> |
| 273 | <dependency> |
| 274 | <groupId>ch.vorburger.mariaDB4j</groupId> |
| 275 | <artifactId>mariaDB4j</artifactId> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 276 | <scope>test</scope> |
| 277 | </dependency> |
| 278 | <dependency> |
| 279 | <groupId>org.assertj</groupId> |
| 280 | <artifactId>assertj-core</artifactId> |
| 281 | <version>3.11.1</version> |
| 282 | <scope>test</scope> |
| 283 | </dependency> |
| 284 | </dependencies> |
Benjamin, Max (mb388a) | 1372894 | 2017-11-06 15:01:36 -0500 | [diff] [blame] | 285 | </project> |