-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpom.xml
More file actions
49 lines (44 loc) · 1.52 KB
/
pom.xml
File metadata and controls
49 lines (44 loc) · 1.52 KB
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
<?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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>uk.ac.ou.sjw2547</groupId>
<artifactId>oneof-anyof-example</artifactId>
<packaging>pom</packaging>
<name>Example OpenAPI yaml file</name>
<modules>
<module>oneof-anyof-sample-idl</module>
<module>oneof-anyof-sample-model</module>
</modules>
<version>1.0.0</version>
<scm>
<url>https://github.com/sjw2547/OneOfAnyOfOpenAPI.git</url>
<tag>HEAD</tag>
</scm>
<properties>
<api.specfile.name>openapi.yaml</api.specfile.name>
<dependency-plugin.version>3.8.1</dependency-plugin.version>
<openapi-plugin.version>7.22.0</openapi-plugin.version>
<resources-plugin.version>3.3.1</resources-plugin.version>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>uk.ac.ou.sjw2547</groupId>
<artifactId>oneof-anyof-sample-idl</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>${resources-plugin.version}</version>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>