blob: 08c4eec3c10791fe1e7f32938c4be833977a80fe [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>
andre.schmid6f9721e2022-06-24 17:20:08 +010011 <version>1.11.6-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>
vasraze4055452022-07-13 23:11:18 +010037 <exclusion>
38 <groupId>org.functionaljava</groupId>
39 <artifactId>functionaljava</artifactId>
40 </exclusion>
vasraza86a4ce2021-06-11 19:02:58 +010041 </exclusions>
42 </dependency>
43 </dependencies>
Michael Landof5f13c42017-02-19 12:35:04 +020044 <properties>
45 <plugin.name>api-docs</plugin.name>
vasraz787cfd52021-03-23 17:47:51 +000046 <rest.api.dir>${basedir}/../../api/openecomp-sdc-rest-webapp/onboarding-rest-war
47 </rest.api.dir>
vasraza86a4ce2021-06-11 19:02:58 +010048 <catalog-be.api.dir>${basedir}/../../../catalog-be</catalog-be.api.dir>
Michael Landof5f13c42017-02-19 12:35:04 +020049 </properties>
50 <build>
51 <plugins>
52 <plugin>
53 <groupId>org.apache.maven.plugins</groupId>
54 <artifactId>maven-deploy-plugin</artifactId>
AviZi280f8012017-06-09 02:39:56 +030055 <version>${mvn.deploy.version}</version>
Michael Landof5f13c42017-02-19 12:35:04 +020056 <configuration>
57 <skip>true</skip>
58 </configuration>
59 </plugin>
60 <plugin>
61 <groupId>org.apache.maven.plugins</groupId>
62 <artifactId>maven-jar-plugin</artifactId>
Michael Landof5f13c42017-02-19 12:35:04 +020063 <executions>
64 <execution>
65 <id>default-jar</id>
66 <phase>none</phase>
67 </execution>
68 </executions>
69 </plugin>
70 <plugin>
vasraz787cfd52021-03-23 17:47:51 +000071 <groupId>org.apache.maven.plugins</groupId>
Michael Landof5f13c42017-02-19 12:35:04 +020072 <artifactId>maven-antrun-plugin</artifactId>
vasraz787cfd52021-03-23 17:47:51 +000073 <version>${maven-antrun-plugin.version}</version>
Michael Landof5f13c42017-02-19 12:35:04 +020074 <executions>
75 <execution>
76 <id>copy</id>
77 <phase>package</phase>
78 <configuration>
vasraz787cfd52021-03-23 17:47:51 +000079 <target>
Michael Landof5f13c42017-02-19 12:35:04 +020080 <echo message="Copy api json files"/>
vasraza86a4ce2021-06-11 19:02:58 +010081 <copy todir="${basedir}/target/${plugin.name}/">
82 <fileset dir="${rest.api.dir}/target/generated/swagger-ui/">
83 <include name="*.json"/>
84 </fileset>
85 </copy>
86 <copy todir="${basedir}/target/${plugin.name}/">
87 <fileset dir="${catalog-be.api.dir}/target/generated/swagger/">
88 <include name="*.json"/>
89 </fileset>
90 </copy>
vasraz787cfd52021-03-23 17:47:51 +000091 </target>
Michael Landof5f13c42017-02-19 12:35:04 +020092 </configuration>
93 <goals>
94 <goal>run</goal>
95 </goals>
96 </execution>
97 </executions>
98 </plugin>
99 <plugin>
100 <groupId>org.apache.maven.plugins</groupId>
101 <artifactId>maven-assembly-plugin</artifactId>
AviZi280f8012017-06-09 02:39:56 +0300102 <version>${mvn.assembly.version}</version>
Michael Landof5f13c42017-02-19 12:35:04 +0200103 <configuration>
104 <descriptor>assembly/swagger.xml</descriptor>
105 <finalName>${plugin.name}</finalName>
Gautam Shah09a41f52018-04-11 19:55:29 +0530106 <outputDirectory>${basedir}/target/${plugin.name}</outputDirectory>
vasraz787cfd52021-03-23 17:47:51 +0000107 <appendAssemblyId>false</appendAssemblyId>
Michael Landof5f13c42017-02-19 12:35:04 +0200108 </configuration>
109 <executions>
110 <execution>
111 <phase>package</phase>
112 <goals>
113 <goal>single</goal>
114 </goals>
115 </execution>
116 </executions>
117 </plugin>
118 </plugins>
119 </build>
120
AviZi280f8012017-06-09 02:39:56 +0300121</project>