forked from kokuwaio/micronaut-openapi-codegen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
110 lines (94 loc) · 3.18 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
<?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">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>io.kokuwa</groupId>
<artifactId>maven-parent</artifactId>
<version>0.2.4</version>
<relativePath />
</parent>
<groupId>io.kokuwa.micronaut</groupId>
<artifactId>micronaut-openapi-codegen</artifactId>
<version>2.0.2-SNAPSHOT</version>
<name>OpenApi codegen for Micronaut</name>
<description>This is an openapi generator for Micronaut.</description>
<url>https://github.com/kokuwaio/micronaut-openapi-codegen</url>
<inceptionYear>2019</inceptionYear>
<licenses>
<license>
<name>Apache License 2.0</name>
<url>https://www.apache.org/licenses/LICENSE-2.0</url>
</license>
</licenses>
<developers>
<developer>
<name>Stephan Schnabel</name>
<url>https://github.com/stephanschnabel</url>
</developer>
</developers>
<scm>
<url>https://github.com/kokuwaio/micronaut-openapi-codegen</url>
<connection>scm:git:https://github.com/kokuwaio/micronaut-openapi-codegen.git</connection>
<developerConnection>scm:git:https://github.com/kokuwaio/micronaut-openapi-codegen.git</developerConnection>
<tag>HEAD</tag>
</scm>
<issueManagement>
<system>github</system>
<url>https://github.com/kokuwaio/micronaut-openapi-codegen/issues</url>
</issueManagement>
<properties>
<!-- ===================================================================== -->
<!-- ============================= Libaries ============================== -->
<!-- ===================================================================== -->
<version.io.micronaut>2.3.3</version.io.micronaut>
<version.org.openapitools>5.0.1</version.org.openapitools>
<version.org.openapitools.jackson.nullable>0.2.1</version.org.openapitools.jackson.nullable>
</properties>
<dependencies>
<!-- micronaut -->
<dependency>
<groupId>io.micronaut</groupId>
<artifactId>micronaut-http</artifactId>
<version>${version.io.micronaut}</version>
</dependency>
<!-- openapi -->
<dependency>
<groupId>org.openapitools</groupId>
<artifactId>openapi-generator</artifactId>
<version>${version.org.openapitools}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.openapitools</groupId>
<artifactId>jackson-databind-nullable</artifactId>
<version>${version.org.openapitools.jackson.nullable}</version>
<scope>provided</scope>
</dependency>
</dependencies>
<build>
<plugins>
<!-- run tests -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-invoker-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>install</goal>
<goal>integration-test</goal>
<goal>verify</goal>
</goals>
</execution>
</executions>
<configuration>
<cloneProjectsTo>${project.build.directory}/it</cloneProjectsTo>
<goals>
<goal>clean</goal>
<goal>verify</goal>
</goals>
<writeJunitReport>true</writeJunitReport>
</configuration>
</plugin>
</plugins>
</build>
</project>