Skip Wonnell | abe9420 | 2017-08-29 22:39:17 -0500 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
| 3 | ============LICENSE_START======================================================= |
| 4 | ONAP : APPC |
| 5 | ================================================================================ |
John McClung | cd5f4f6 | 2018-06-13 14:03:54 -0400 | [diff] [blame] | 6 | Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved. |
Skip Wonnell | abe9420 | 2017-08-29 22:39:17 -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 | |
Skip Wonnell | abe9420 | 2017-08-29 22:39:17 -0500 | [diff] [blame] | 22 | ============LICENSE_END========================================================= |
| 23 | --> |
| 24 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 25 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 26 | <modelVersion>4.0.0</modelVersion> |
| 27 | <parent> |
| 28 | <artifactId>appc-java-client</artifactId> |
Patrick Brady | 0756759 | 2017-12-13 11:09:30 -0800 | [diff] [blame] | 29 | <groupId>org.onap.appc.client</groupId> |
Patrick Brady | 84d0a25 | 2018-05-22 10:42:55 -0700 | [diff] [blame] | 30 | <version>1.4.0-SNAPSHOT</version> |
Skip Wonnell | abe9420 | 2017-08-29 22:39:17 -0500 | [diff] [blame] | 31 | </parent> |
| 32 | <artifactId>client-simulator</artifactId> |
| 33 | |
| 34 | <properties> |
| 35 | <licenseDir>${project.parent.parent.basedir}</licenseDir> |
| 36 | </properties> |
| 37 | |
| 38 | <build> |
| 39 | <plugins> |
| 40 | <plugin> |
| 41 | <artifactId>maven-assembly-plugin</artifactId> |
| 42 | <version>3.0.0</version> |
| 43 | <executions> |
| 44 | <execution> |
| 45 | <id>make-assembly</id> <!-- this is used for inheritance merges --> |
| 46 | <phase>package</phase> <!-- bind to the packaging phase --> |
| 47 | <goals> |
| 48 | <goal>single</goal> |
| 49 | </goals> |
| 50 | <configuration> |
| 51 | <archive> |
| 52 | <manifest> |
Patrick Brady | 0756759 | 2017-12-13 11:09:30 -0800 | [diff] [blame] | 53 | <mainClass>org.onap.appc.simulator.client.main.ClientRunner</mainClass> |
Skip Wonnell | abe9420 | 2017-08-29 22:39:17 -0500 | [diff] [blame] | 54 | </manifest> |
| 55 | </archive> |
| 56 | <descriptors> |
| 57 | <descriptor>src/main/resources/assembly.xml</descriptor> |
| 58 | </descriptors> |
| 59 | </configuration> |
| 60 | </execution> |
| 61 | <execution> |
| 62 | <id>client</id> |
| 63 | <goals> |
| 64 | <goal>single</goal> |
| 65 | </goals> |
| 66 | <phase>package</phase> |
| 67 | <configuration> |
| 68 | <appendAssemblyId>false</appendAssemblyId> |
| 69 | <attach>true</attach> |
| 70 | <descriptors> |
| 71 | <descriptor>src/main/resources/assembly_zip.xml</descriptor> |
| 72 | </descriptors> |
| 73 | <tarLongFileMode>posix</tarLongFileMode> |
| 74 | </configuration> |
| 75 | </execution> |
| 76 | </executions> |
| 77 | </plugin> |
| 78 | </plugins> |
| 79 | </build> |
| 80 | |
| 81 | <dependencies> |
| 82 | <dependency> |
| 83 | <groupId>com.fasterxml.jackson.core</groupId> |
| 84 | <artifactId>jackson-annotations</artifactId> |
| 85 | <version>${jackson.version}</version> |
| 86 | </dependency> |
| 87 | <dependency> |
| 88 | <groupId>com.fasterxml.jackson.core</groupId> |
| 89 | <artifactId>jackson-databind</artifactId> |
| 90 | <version>${jackson.version}</version> |
| 91 | </dependency> |
| 92 | <dependency> |
mojahidi | 5c0ab1d | 2017-09-26 17:39:23 +0530 | [diff] [blame] | 93 | <groupId>com.fasterxml.jackson.core</groupId> |
| 94 | <artifactId>jackson-core</artifactId> |
| 95 | <version>${jackson.version}</version> |
| 96 | </dependency> |
| 97 | <dependency> |
Patrick Brady | 0756759 | 2017-12-13 11:09:30 -0800 | [diff] [blame] | 98 | <groupId>org.onap.appc.client</groupId> |
Skip Wonnell | abe9420 | 2017-08-29 22:39:17 -0500 | [diff] [blame] | 99 | <artifactId>client-kit</artifactId> |
| 100 | <version>${project.version}</version> |
| 101 | </dependency> |
| 102 | <dependency> |
| 103 | <groupId>commons-io</groupId> |
| 104 | <artifactId>commons-io</artifactId> |
| 105 | <version>2.4</version> |
| 106 | </dependency> |
| 107 | </dependencies> |
| 108 | </project> |