add Swagger module

This commit is contained in:
2024-08-29 13:19:07 +10:00
parent 78438ce3d0
commit 9ca50f5eff
4 changed files with 111 additions and 0 deletions

55
pom.xml Normal file
View File

@@ -0,0 +1,55 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
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>sydney.cheng</groupId>
<artifactId>ec-super-pom</artifactId>
<version>1.0.1</version>
</parent>
<artifactId>ec-microservice-commons</artifactId>
<version>1.0.0-SNAPSHOT</version>
<packaging>pom</packaging>
<licenses>
<license>
<name>MIT License</name>
<url>https://www.opensource.org/licenses/mit-license.php</url>
</license>
</licenses>
<developers>
<developer>
<name>Edward Cheng</name>
<email>edward@cheng.sydney</email>
<organization>cheng.sydney</organization>
<organizationUrl>https://3dwardch3ng.github.io/</organizationUrl>
</developer>
</developers>
<scm>
<connection>scm:git:git://github.com/3dwardch3ng/ec-microservice-commons.git</connection>
<developerConnection>scm:git:ssh://github.com:3dwardch3ng/ec-microservice-commons.git</developerConnection>
<url>https://github.com/3dwardch3ng/ec-microservice-commons/tree/main</url>
</scm>
<issueManagement>
<system>GitHub</system>
<url>https://github.com/3dwardch3ng/ec-microservice-commons/issues</url>
</issueManagement>
<modules>
<module>swagger</module>
</modules>
<properties>
<!-- Sonar Properties -->
<sonar.java.coveragePlugin>jacoco</sonar.java.coveragePlugin>
<sonar.dynamicAnalysis>reuseReports</sonar.dynamicAnalysis>
<sonar.jacoco.xmlReportPath>${project.basedir}/../target/site/jacoco/jacoco.xml</sonar.jacoco.xmlReportPath>
<sonar.language>java</sonar.language>
<sonar.coverage.exclusions>**/config/*</sonar.coverage.exclusions>
<sonar.organization>3dwardch3ng</sonar.organization>
<sonar.host.url>https://sonarqube.cluster.edward.sydney</sonar.host.url>
</properties>
</project>