AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [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 | |
| 5 | <groupId>org.openecomp.sdc.common</groupId> |
| 6 | <name>openecomp-configuration-management-cli</name> |
| 7 | <artifactId>openecomp-configuration-management-cli</artifactId> |
| 8 | |
| 9 | <parent> |
| 10 | <artifactId>openecomp-common-configuration-management</artifactId> |
| 11 | <groupId>org.openecomp.sdc.common</groupId> |
Michael Lando | 0ad3c80 | 2017-09-19 16:32:59 +0300 | [diff] [blame] | 12 | <version>1.2.0-SNAPSHOT</version> |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 13 | <relativePath>..</relativePath> |
| 14 | </parent> |
| 15 | |
| 16 | <dependencies> |
| 17 | <dependency> |
| 18 | <groupId>org.openecomp.sdc.common</groupId> |
| 19 | <artifactId>openecomp-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> |
| 29 | |
| 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 implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer"> |
| 45 | <mainClass>org.openecomp.config.gui.app.Configuration</mainClass> |
| 46 | </transformer> |
| 47 | </transformers> |
| 48 | </configuration> |
| 49 | </execution> |
| 50 | </executions> |
| 51 | </plugin> |
| 52 | </plugins> |
| 53 | </build> |
| 54 | |
| 55 | </project> |