<?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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
<modelVersion>4.0.0</modelVersion>
|
<parent>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-parent</artifactId>
|
<version>2.2.6.RELEASE</version>
|
<relativePath/> <!-- lookup parent from repository -->
|
</parent>
|
<groupId>za.co.taulite.openapi</groupId>
|
<artifactId>openapi-parser</artifactId>
|
<version>0.0.1</version>
|
<name>openapi-parser</name>
|
<description>OpenAPI Parser</description>
|
|
<properties>
|
<java.version>11</java.version>
|
</properties>
|
|
<dependencies>
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>io.swagger.parser.v3</groupId>
|
<artifactId>swagger-parser</artifactId>
|
<version>2.0.18</version>
|
</dependency>
|
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-test</artifactId>
|
<scope>test</scope>
|
<exclusions>
|
<exclusion>
|
<groupId>org.junit.vintage</groupId>
|
<artifactId>junit-vintage-engine</artifactId>
|
</exclusion>
|
</exclusions>
|
</dependency>
|
</dependencies>
|
|
<repositories>
|
<repository>
|
<id>releases</id>
|
<url>http://ihbuild1.ih.taulite.co.za:8081/repository/maven-releases/</url>
|
</repository>
|
<repository>
|
<id>snapshots</id>
|
<url>http://ihbuild1.ih.taulite.co.za:8081/repository/maven-snapshots/</url>
|
</repository>
|
</repositories>
|
|
<distributionManagement>
|
<snapshotRepository>
|
<id>nexus-snapshots</id>
|
<url>http://admin:admin123@ihbuild1.ih.taulite.co.za:8081/repository/maven-snapshots/</url>
|
</snapshotRepository>
|
<repository>
|
<id>nexus-releases</id>
|
<url>http://admin:admin123@ihbuild1.ih.taulite.co.za:8081/repository/maven-releases/</url>
|
</repository>
|
</distributionManagement>
|
|
<build>
|
<plugins>
|
<plugin>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
<configuration>
|
<mainClass>za.co.taulite.openapi.openapiparser.SwingApp</mainClass>
|
</configuration>
|
</plugin>
|
</plugins>
|
</build>
|
</project>
|