diff options
author | YuanHu <yuan.hu1@zte.com.cn> | 2018-02-09 16:13:05 +0800 |
---|---|---|
committer | YuanHu <yuan.hu1@zte.com.cn> | 2018-02-09 16:13:05 +0800 |
commit | 77acffcf7152040d381b1808a1ca8f8fe8bed721 (patch) | |
tree | 5603b743b260f7523662fa39b7d4029678bab7e1 /sdc-workflow-designer-ui | |
parent | 97f57847360ecabcde9200a17db9d527671c7dc3 (diff) |
Organized FE Resources in a jar.
Package FE Resources and output a jar for Integration with Server.
Issue-ID: SDC-1011
Change-Id: Ief938117ebe23466849f9643d9217a10a8e95160
Signed-off-by: YuanHu <yuan.hu1@zte.com.cn>
Diffstat (limited to 'sdc-workflow-designer-ui')
-rw-r--r-- | sdc-workflow-designer-ui/pom.xml | 18 |
1 files changed, 14 insertions, 4 deletions
diff --git a/sdc-workflow-designer-ui/pom.xml b/sdc-workflow-designer-ui/pom.xml index 5b43a259..bb4ea111 100644 --- a/sdc-workflow-designer-ui/pom.xml +++ b/sdc-workflow-designer-ui/pom.xml @@ -18,22 +18,21 @@ <parent> <groupId>org.onap.sdc.sdc-workflow-designer</groupId> <artifactId>sdc-workflow-designer</artifactId> - <version>1.0.0</version> + <version>1.1.0-SNAPSHOT</version> </parent> <modelVersion>4.0.0</modelVersion> <groupId>org.onap.sdc.sdc-workflow-designer</groupId> <artifactId>sdc-workflow-designer-ui</artifactId> - <version>1.0.0</version> - <packaging>pom</packaging> <name>sdc-workflow-designer-ui</name> + <packaging>jar</packaging> <properties> <frontend-maven-plugin-version>1.4</frontend-maven-plugin-version> + <version.output>target/version</version.output> </properties> <build> - <finalName>workflow-gui</finalName> <plugins> <plugin> <groupId>com.github.eirslett</groupId> @@ -81,5 +80,16 @@ </plugin> </plugins> + + <resources> + <resource> + <targetPath>workflow-modeler</targetPath> + <directory>dist</directory> + <includes> + <include>**/**</include> + </includes> + <filtering>false</filtering> + </resource> + </resources> </build> </project> |