Update SDC version to 1.9.1-SNAPSHOT
[sdc.git] / openecomp-be / tools / swagger-ui / pom.xml
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/maven-v4_0_0.xsd">
4     <modelVersion>4.0.0</modelVersion>
5     <artifactId>api-docs</artifactId>
6     <groupId>org.openecomp.sdc.onboarding</groupId>
7
8     <parent>
9         <groupId>org.openecomp.sdc</groupId>
10         <artifactId>openecomp-sdc</artifactId>
11         <version>1.9.1-SNAPSHOT</version>
12         <relativePath>../../</relativePath>
13     </parent>
14     <dependencies>
15         <dependency>
16             <groupId>org.openecomp.sdc</groupId>
17             <artifactId>catalog-be</artifactId>
18             <version>${project.version}</version>
19             <classifier>classes</classifier>
20             <exclusions>
21                 <exclusion>
22                     <groupId>org.eclipse.jetty</groupId>
23                     <artifactId>jetty-http</artifactId>
24                 </exclusion>
25                 <exclusion>
26                     <groupId>org.eclipse.jetty</groupId>
27                     <artifactId>jetty-servlets</artifactId>
28                 </exclusion>
29                 <exclusion>
30                     <groupId>org.springframework</groupId>
31                     <artifactId>spring-core</artifactId>
32                 </exclusion>
33                 <exclusion>
34                     <groupId>org.springframework</groupId>
35                     <artifactId>spring-web</artifactId>
36                 </exclusion>
37             </exclusions>
38         </dependency>
39     </dependencies>
40     <properties>
41         <plugin.name>api-docs</plugin.name>
42         <rest.api.dir>${basedir}/../../api/openecomp-sdc-rest-webapp/onboarding-rest-war
43         </rest.api.dir>
44         <catalog-be.api.dir>${basedir}/../../../catalog-be</catalog-be.api.dir>
45     </properties>
46     <build>
47         <plugins>
48             <plugin>
49                 <groupId>org.apache.maven.plugins</groupId>
50                 <artifactId>maven-deploy-plugin</artifactId>
51                 <version>${mvn.deploy.version}</version>
52                 <configuration>
53                     <skip>true</skip>
54                 </configuration>
55             </plugin>
56             <plugin>
57                 <groupId>org.apache.maven.plugins</groupId>
58                 <artifactId>maven-jar-plugin</artifactId>
59                 <version>${mvn.jar.version}</version>
60                 <executions>
61                     <execution>
62                         <id>default-jar</id>
63                         <phase>none</phase>
64                     </execution>
65                 </executions>
66             </plugin>
67             <plugin>
68                 <groupId>org.apache.maven.plugins</groupId>
69                 <artifactId>maven-antrun-plugin</artifactId>
70                 <version>${maven-antrun-plugin.version}</version>
71                 <executions>
72                     <execution>
73                         <id>copy</id>
74                         <phase>package</phase>
75                         <configuration>
76                             <target>
77                                 <echo message="Copy api json files"/>
78                                 <copy todir="${basedir}/target/${plugin.name}/">
79                                     <fileset dir="${rest.api.dir}/target/generated/swagger-ui/">
80                                         <include name="*.json"/>
81                                     </fileset>
82                                 </copy>
83                                 <copy todir="${basedir}/target/${plugin.name}/">
84                                     <fileset dir="${catalog-be.api.dir}/target/generated/swagger/">
85                                         <include name="*.json"/>
86                                     </fileset>
87                                 </copy>
88                             </target>
89                         </configuration>
90                         <goals>
91                             <goal>run</goal>
92                         </goals>
93                     </execution>
94                 </executions>
95             </plugin>
96             <plugin>
97                 <groupId>org.apache.maven.plugins</groupId>
98                 <artifactId>maven-assembly-plugin</artifactId>
99                 <version>${mvn.assembly.version}</version>
100                 <configuration>
101                     <descriptor>assembly/swagger.xml</descriptor>
102                     <finalName>${plugin.name}</finalName>
103                     <outputDirectory>${basedir}/target/${plugin.name}</outputDirectory>
104                     <appendAssemblyId>false</appendAssemblyId>
105                 </configuration>
106                 <executions>
107                     <execution>
108                         <phase>package</phase>
109                         <goals>
110                             <goal>single</goal>
111                         </goals>
112                     </execution>
113                 </executions>
114             </plugin>
115         </plugins>
116     </build>
117
118 </project>