-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpom.xml
68 lines (63 loc) · 2.54 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<artifactId>wuxp-codegen-examples</artifactId>
<groupId>com.wuxp.codegen</groupId>
<version>${revision}</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>wuxp-codegen-examples-swagger-3-maven-plugin</artifactId>
<dependencies>
<dependency>
<groupId>org.springdoc</groupId>
<artifactId>springdoc-openapi-webmvc-core</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.springdoc</groupId>
<artifactId>springdoc-openapi-ui</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>io.github.classgraph</groupId>
<artifactId>classgraph</artifactId>
</dependency>
<dependency>
<groupId>com.wuxp.codegen</groupId>
<artifactId>wuxp-codegen-swagger3</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.wuxp.codegen</groupId>
<artifactId>wuxp-codegen-loong-starter</artifactId>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-core</artifactId>
<scope>compile</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>com.wuxp.codegen</groupId>
<artifactId>wuxp-codegen-loong-maven-plugin</artifactId>
<version>${project.version}</version>
<configuration>
<skip>false</skip>
<projectName>swagger-3-example-maven-plugin</projectName>
<clientProviderTypes>spring_cloud_openfeign,typescript_feign</clientProviderTypes>
<pluginCodeGeneratorClass>com.wuxp.codegen.swagger3.example.Swagger3MavenPluginInvokeCodeGenerator</pluginCodeGeneratorClass>
<loongCodegenServer>http://localhost:8080</loongCodegenServer>
</configuration>
</plugin>
</plugins>
</build>
</project>