Michael Lando | 5b59349 | 2018-07-29 16:13:45 +0300 | [diff] [blame] | 1 | <project xmlns="http://maven.apache.org/POM/4.0.0" |
| 2 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 3 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 4 | <modelVersion>4.0.0</modelVersion> |
amitjai | 42c920b | 2018-04-27 13:28:57 +0530 | [diff] [blame] | 5 | |
Michael Lando | 5b59349 | 2018-07-29 16:13:45 +0300 | [diff] [blame] | 6 | <groupId>org.onap.sdc.common</groupId> |
| 7 | <name>onap-configuration-management-cli</name> |
| 8 | <artifactId>onap-configuration-management-cli</artifactId> |
amitjai | 42c920b | 2018-04-27 13:28:57 +0530 | [diff] [blame] | 9 | |
Michael Lando | 5b59349 | 2018-07-29 16:13:45 +0300 | [diff] [blame] | 10 | <parent> |
| 11 | <artifactId>onap-common-configuration-management</artifactId> |
| 12 | <groupId>org.onap.sdc.common</groupId> |
| 13 | <version>1.2.0-SNAPSHOT</version> |
Michael Lando | 5b59349 | 2018-07-29 16:13:45 +0300 | [diff] [blame] | 14 | </parent> |
amitjai | 42c920b | 2018-04-27 13:28:57 +0530 | [diff] [blame] | 15 | |
Michael Lando | 5b59349 | 2018-07-29 16:13:45 +0300 | [diff] [blame] | 16 | <dependencies> |
| 17 | <dependency> |
| 18 | <groupId>org.onap.sdc.common</groupId> |
| 19 | <artifactId>onap-configuration-management-api</artifactId> |
| 20 | <version>${project.version}</version> |
| 21 | </dependency> |
| 22 | <dependency> |
| 23 | <groupId>tools</groupId> |
| 24 | <artifactId>tools</artifactId> |
| 25 | <version>1.8</version> |
| 26 | <optional>true</optional> |
| 27 | </dependency> |
| 28 | </dependencies> |
amitjai | 42c920b | 2018-04-27 13:28:57 +0530 | [diff] [blame] | 29 | |
Michael Lando | 5b59349 | 2018-07-29 16:13:45 +0300 | [diff] [blame] | 30 | <build> |
| 31 | <plugins> |
| 32 | <plugin> |
| 33 | <groupId>org.apache.maven.plugins</groupId> |
| 34 | <artifactId>maven-shade-plugin</artifactId> |
| 35 | <version>1.5</version> |
| 36 | <executions> |
| 37 | <execution> |
| 38 | <phase>package</phase> |
| 39 | <goals> |
| 40 | <goal>shade</goal> |
| 41 | </goals> |
| 42 | <configuration> |
| 43 | <transformers> |
| 44 | <transformer |
| 45 | implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer"> |
| 46 | <mainClass>org.onap.config.gui.app.Configuration</mainClass> |
| 47 | </transformer> |
| 48 | </transformers> |
| 49 | </configuration> |
| 50 | </execution> |
| 51 | </executions> |
| 52 | </plugin> |
amitjai | 42c920b | 2018-04-27 13:28:57 +0530 | [diff] [blame] | 53 | </plugins> |
Michael Lando | 5b59349 | 2018-07-29 16:13:45 +0300 | [diff] [blame] | 54 | </build> |
amitjai | 42c920b | 2018-04-27 13:28:57 +0530 | [diff] [blame] | 55 | |
| 56 | </project> |