diff options
author | AviZi <avi.ziv@amdocs.com> | 2017-06-09 02:39:56 +0300 |
---|---|---|
committer | AviZi <avi.ziv@amdocs.com> | 2017-06-09 02:39:56 +0300 |
commit | 280f8015d06af1f41a3ef12e8300801c7a5e0d54 (patch) | |
tree | 9c1d3978c04cd28068f02073038c936bb49ca9e0 /openecomp-be/tools/swagger-ui/pom.xml | |
parent | fd3821dad11780d33c5373d74c957c442489945e (diff) |
[SDC-29] Amdocs OnBoard 1707 initial commit.
Change-Id: Ie4d12a3f574008b792899b368a0902a8b46b5370
Signed-off-by: AviZi <avi.ziv@amdocs.com>
Diffstat (limited to 'openecomp-be/tools/swagger-ui/pom.xml')
-rw-r--r-- | openecomp-be/tools/swagger-ui/pom.xml | 38 |
1 files changed, 34 insertions, 4 deletions
diff --git a/openecomp-be/tools/swagger-ui/pom.xml b/openecomp-be/tools/swagger-ui/pom.xml index 26b315a445..b2b608cd3a 100644 --- a/openecomp-be/tools/swagger-ui/pom.xml +++ b/openecomp-be/tools/swagger-ui/pom.xml @@ -4,7 +4,13 @@ <modelVersion>4.0.0</modelVersion> <artifactId>api-docs</artifactId> <groupId>org.openecomp.sdc.onboarding</groupId> - <version>1.0-SNAPSHOT</version> + + <parent> + <groupId>org.openecomp.sdc</groupId> + <artifactId>openecomp-sdc</artifactId> + <version>1.1.0-SNAPSHOT</version> + <relativePath>../../</relativePath> + </parent> <properties> <plugin.name>api-docs</plugin.name> @@ -15,10 +21,33 @@ </properties> <build> <plugins> + <!-- ============================================= --> + <!-- Clean api-docs folder --> + <!-- ============================================= --> + <plugin> + <artifactId>maven-clean-plugin</artifactId> + <version>2.6.1</version> + <executions> + <execution> + <id>clean.dist.folder</id> + <phase>clean</phase> + <goals> + <goal>clean</goal> + </goals> + <configuration> + <filesets> + <fileset> + <directory>${basedir}/api-docs</directory> + </fileset> + </filesets> + </configuration> + </execution> + </executions> + </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-deploy-plugin</artifactId> - <version>2.4</version> + <version>${mvn.deploy.version}</version> <configuration> <skip>true</skip> </configuration> @@ -26,7 +55,7 @@ <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> - <version>2.4</version> + <version>${mvn.jar.version}</version> <executions> <execution> <id>default-jar</id> @@ -57,6 +86,7 @@ <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-assembly-plugin</artifactId> + <version>${mvn.assembly.version}</version> <configuration> <descriptor>assembly/swagger.xml</descriptor> <finalName>${plugin.name}</finalName> @@ -74,4 +104,4 @@ </plugins> </build> -</project>
\ No newline at end of file +</project> |