Step version to 1.10.3-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.10.3-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                 <executions>
60                     <execution>
61                         <id>default-jar</id>
62                         <phase>none</phase>
63                     </execution>
64                 </executions>
65             </plugin>
66             <plugin>
67                 <groupId>org.apache.maven.plugins</groupId>
68                 <artifactId>maven-antrun-plugin</artifactId>
69                 <version>${maven-antrun-plugin.version}</version>
70                 <executions>
71                     <execution>
72                         <id>copy</id>
73                         <phase>package</phase>
74                         <configuration>
75                             <target>
76                                 <echo message="Copy api json files"/>
77                                 <copy todir="${basedir}/target/${plugin.name}/">
78                                     <fileset dir="${rest.api.dir}/target/generated/swagger-ui/">
79                                         <include name="*.json"/>
80                                     </fileset>
81                                 </copy>
82                                 <copy todir="${basedir}/target/${plugin.name}/">
83                                     <fileset dir="${catalog-be.api.dir}/target/generated/swagger/">
84                                         <include name="*.json"/>
85                                     </fileset>
86                                 </copy>
87                             </target>
88                         </configuration>
89                         <goals>
90                             <goal>run</goal>
91                         </goals>
92                     </execution>
93                 </executions>
94             </plugin>
95             <plugin>
96                 <groupId>org.apache.maven.plugins</groupId>
97                 <artifactId>maven-assembly-plugin</artifactId>
98                 <version>${mvn.assembly.version}</version>
99                 <configuration>
100                     <descriptor>assembly/swagger.xml</descriptor>
101                     <finalName>${plugin.name}</finalName>
102                     <outputDirectory>${basedir}/target/${plugin.name}</outputDirectory>
103                     <appendAssemblyId>false</appendAssemblyId>
104                 </configuration>
105                 <executions>
106                     <execution>
107                         <phase>package</phase>
108                         <goals>
109                             <goal>single</goal>
110                         </goals>
111                     </execution>
112                 </executions>
113             </plugin>
114         </plugins>
115     </build>
116
117 </project>