blob: 777a1cc0c77191bfc3581cf1d67f0ceaa3795b6a [file] [log] [blame]
Michael Landof5f13c42017-02-19 12:35:04 +02001<project xmlns="http://maven.apache.org/POM/4.0.0"
vasraz787cfd52021-03-23 17:47:51 +00002 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">
Michael Landof5f13c42017-02-19 12:35:04 +02004 <modelVersion>4.0.0</modelVersion>
5 <artifactId>api-docs</artifactId>
6 <groupId>org.openecomp.sdc.onboarding</groupId>
AviZi280f8012017-06-09 02:39:56 +03007
8 <parent>
9 <groupId>org.openecomp.sdc</groupId>
10 <artifactId>openecomp-sdc</artifactId>
MichaelMorris53aed702021-09-28 16:08:53 +010011 <version>1.10.0-SNAPSHOT</version>
AviZi280f8012017-06-09 02:39:56 +030012 <relativePath>../../</relativePath>
13 </parent>
vasraza86a4ce2021-06-11 19:02:58 +010014 <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>
vasraz7edf3d32021-08-18 13:54:08 +010029 <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>
vasraza86a4ce2021-06-11 19:02:58 +010037 </exclusions>
38 </dependency>
39 </dependencies>
Michael Landof5f13c42017-02-19 12:35:04 +020040 <properties>
41 <plugin.name>api-docs</plugin.name>
vasraz787cfd52021-03-23 17:47:51 +000042 <rest.api.dir>${basedir}/../../api/openecomp-sdc-rest-webapp/onboarding-rest-war
43 </rest.api.dir>
vasraza86a4ce2021-06-11 19:02:58 +010044 <catalog-be.api.dir>${basedir}/../../../catalog-be</catalog-be.api.dir>
Michael Landof5f13c42017-02-19 12:35:04 +020045 </properties>
46 <build>
47 <plugins>
48 <plugin>
49 <groupId>org.apache.maven.plugins</groupId>
50 <artifactId>maven-deploy-plugin</artifactId>
AviZi280f8012017-06-09 02:39:56 +030051 <version>${mvn.deploy.version}</version>
Michael Landof5f13c42017-02-19 12:35:04 +020052 <configuration>
53 <skip>true</skip>
54 </configuration>
55 </plugin>
56 <plugin>
57 <groupId>org.apache.maven.plugins</groupId>
58 <artifactId>maven-jar-plugin</artifactId>
AviZi280f8012017-06-09 02:39:56 +030059 <version>${mvn.jar.version}</version>
Michael Landof5f13c42017-02-19 12:35:04 +020060 <executions>
61 <execution>
62 <id>default-jar</id>
63 <phase>none</phase>
64 </execution>
65 </executions>
66 </plugin>
67 <plugin>
vasraz787cfd52021-03-23 17:47:51 +000068 <groupId>org.apache.maven.plugins</groupId>
Michael Landof5f13c42017-02-19 12:35:04 +020069 <artifactId>maven-antrun-plugin</artifactId>
vasraz787cfd52021-03-23 17:47:51 +000070 <version>${maven-antrun-plugin.version}</version>
Michael Landof5f13c42017-02-19 12:35:04 +020071 <executions>
72 <execution>
73 <id>copy</id>
74 <phase>package</phase>
75 <configuration>
vasraz787cfd52021-03-23 17:47:51 +000076 <target>
Michael Landof5f13c42017-02-19 12:35:04 +020077 <echo message="Copy api json files"/>
vasraza86a4ce2021-06-11 19:02:58 +010078 <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>
vasraz787cfd52021-03-23 17:47:51 +000088 </target>
Michael Landof5f13c42017-02-19 12:35:04 +020089 </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>
AviZi280f8012017-06-09 02:39:56 +030099 <version>${mvn.assembly.version}</version>
Michael Landof5f13c42017-02-19 12:35:04 +0200100 <configuration>
101 <descriptor>assembly/swagger.xml</descriptor>
102 <finalName>${plugin.name}</finalName>
Gautam Shah09a41f52018-04-11 19:55:29 +0530103 <outputDirectory>${basedir}/target/${plugin.name}</outputDirectory>
vasraz787cfd52021-03-23 17:47:51 +0000104 <appendAssemblyId>false</appendAssemblyId>
Michael Landof5f13c42017-02-19 12:35:04 +0200105 </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
AviZi280f8012017-06-09 02:39:56 +0300118</project>