Anand | 36bcd56 | 2018-01-04 19:35:51 -0500 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
| 3 | ============LICENSE_START======================================================= |
| 4 | ONAP : APPC |
| 5 | ================================================================================ |
John McClung | 694852f | 2018-06-13 16:10:33 -0400 | [diff] [blame^] | 6 | Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved. |
Anand | 36bcd56 | 2018-01-04 19:35:51 -0500 | [diff] [blame] | 7 | ================================================================================ |
| 8 | Copyright (C) 2017 Amdocs |
| 9 | ============================================================================= |
| 10 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 11 | you may not use this file except in compliance with the License. |
| 12 | You may obtain a copy of the License at |
| 13 | |
| 14 | http://www.apache.org/licenses/LICENSE-2.0 |
| 15 | |
| 16 | Unless required by applicable law or agreed to in writing, software |
| 17 | distributed under the License is distributed on an "AS IS" BASIS, |
| 18 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 19 | See the License for the specific language governing permissions and |
| 20 | limitations under the License. |
| 21 | |
Anand | 36bcd56 | 2018-01-04 19:35:51 -0500 | [diff] [blame] | 22 | ============LICENSE_END========================================================= |
| 23 | --> |
| 24 | <project xmlns="http://maven.apache.org/POM/4.0.0" |
| 25 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 26 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 27 | <modelVersion>4.0.0</modelVersion> |
| 28 | <parent> |
| 29 | <groupId>org.onap.appc</groupId> |
| 30 | <artifactId>appc</artifactId> |
Patrick Brady | 84d0a25 | 2018-05-22 10:42:55 -0700 | [diff] [blame] | 31 | <version>1.4.0-SNAPSHOT</version> |
Anand | 36bcd56 | 2018-01-04 19:35:51 -0500 | [diff] [blame] | 32 | </parent> |
| 33 | |
| 34 | <artifactId>appc-dispatcher</artifactId> |
| 35 | <packaging>pom</packaging> |
| 36 | <name>APPC Dispatcher</name> |
| 37 | <description>APPC Dispatcher</description> |
| 38 | |
| 39 | |
| 40 | <dependencies> |
beili.zhou | fe0e989 | 2017-08-10 14:54:42 -0400 | [diff] [blame] | 41 | <dependency> |
Anand | 36bcd56 | 2018-01-04 19:35:51 -0500 | [diff] [blame] | 42 | <groupId>org.mockito</groupId> |
| 43 | <artifactId>mockito-core</artifactId> |
beili.zhou | fe0e989 | 2017-08-10 14:54:42 -0400 | [diff] [blame] | 44 | <scope>test</scope> |
| 45 | </dependency> |
| 46 | <dependency> |
beili.zhou | fe0e989 | 2017-08-10 14:54:42 -0400 | [diff] [blame] | 47 | <groupId>org.powermock</groupId> |
Anand | 36bcd56 | 2018-01-04 19:35:51 -0500 | [diff] [blame] | 48 | <artifactId>powermock-api-mockito</artifactId> |
| 49 | </dependency> |
| 50 | <dependency> |
beili.zhou | fe0e989 | 2017-08-10 14:54:42 -0400 | [diff] [blame] | 51 | <groupId>org.powermock</groupId> |
| 52 | <artifactId>powermock-module-junit4</artifactId> |
Anand | 36bcd56 | 2018-01-04 19:35:51 -0500 | [diff] [blame] | 53 | <version>1.6.2</version> |
beili.zhou | fe0e989 | 2017-08-10 14:54:42 -0400 | [diff] [blame] | 54 | <scope>test</scope> |
| 55 | </dependency> |
| 56 | <dependency> |
| 57 | <groupId>org.hamcrest</groupId> |
| 58 | <artifactId>hamcrest-core</artifactId> |
| 59 | <scope>test</scope> |
| 60 | </dependency> |
| 61 | <dependency> |
| 62 | <groupId>org.objenesis</groupId> |
| 63 | <artifactId>objenesis</artifactId> |
| 64 | <version>2.2</version> |
| 65 | <scope>test</scope> |
| 66 | </dependency> |
| 67 | </dependencies> |
| 68 | <build> |
| 69 | <pluginManagement> |
Anand | 36bcd56 | 2018-01-04 19:35:51 -0500 | [diff] [blame] | 70 | <plugins> |
| 71 | <plugin> |
| 72 | <groupId>org.apache.felix</groupId> |
| 73 | <artifactId>maven-bundle-plugin</artifactId> |
| 74 | <extensions>true</extensions> |
| 75 | </plugin> |
| 76 | </plugins> |
beili.zhou | fe0e989 | 2017-08-10 14:54:42 -0400 | [diff] [blame] | 77 | </pluginManagement> |
| 78 | </build> |
| 79 | <!-- ================================================================================== --> |
| 80 | <!-- The modules we build --> |
| 81 | <!-- ================================================================================== --> |
| 82 | <modules> |
| 83 | <module>appc-dispatcher-common</module> |
| 84 | <module>appc-workflow-management</module> |
| 85 | <module>appc-command-executor</module> |
| 86 | <module>appc-request-handler</module> |
| 87 | <module>appc-license-manager</module> |
| 88 | <module>appc-dispatcher-features</module> |
| 89 | <module>appc-dispatcher-installer</module> |
| 90 | </modules> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 91 | |
Anand | 36bcd56 | 2018-01-04 19:35:51 -0500 | [diff] [blame] | 92 | <dependencyManagement> |
| 93 | <dependencies> |
| 94 | <dependency> |
| 95 | <groupId>org.powermock</groupId> |
| 96 | <artifactId>powermock-api-mockito</artifactId> |
| 97 | <version>1.6.4</version> |
| 98 | </dependency> |
| 99 | </dependencies> |
| 100 | </dependencyManagement> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 101 | </project> |