2019-04-25 21:52:50 -04:00
<?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 > openapi-generator-project</artifactId>
<groupId > org.openapitools</groupId>
2019-06-24 18:22:10 -04:00
<!-- RELEASE_VERSION -->
2026-01-20 03:13:58 +08:00
<version > 7.20.0-SNAPSHOT</version>
2019-06-24 18:22:10 -04:00
<!-- /RELEASE_VERSION -->
2024-06-01 10:42:26 +02:00
<relativePath > ../../pom.xml</relativePath>
2019-04-25 21:52:50 -04:00
</parent>
<modelVersion > 4.0.0</modelVersion>
<artifactId > openapi-generator-core</artifactId>
<name > openapi-generator-core</name>
<url > https://github.com/openapitools/openapi-generator</url>
2019-06-07 13:07:52 -04:00
2020-01-26 12:45:41 -05:00
<build >
<plugins >
<plugin >
<groupId > org.apache.maven.plugins</groupId>
<artifactId > maven-checkstyle-plugin</artifactId>
<configuration >
<configLocation > ${project.parent.basedir}${file.separator}google_checkstyle.xml</configLocation>
</configuration>
</plugin>
</plugins>
</build>
2019-06-07 13:07:52 -04:00
<dependencies >
<dependency >
<groupId > com.google.guava</groupId>
<artifactId > guava</artifactId>
2021-10-13 07:46:01 +01:00
<version > ${guava.version}</version>
2019-06-07 13:07:52 -04:00
</dependency>
<dependency >
<groupId > org.slf4j</groupId>
<artifactId > slf4j-api</artifactId>
2021-10-13 07:46:01 +01:00
<version > ${slf4j.version}</version>
2019-06-07 13:07:52 -04:00
</dependency>
2019-06-24 18:24:50 -04:00
<dependency >
<groupId > org.testng</groupId>
<artifactId > testng</artifactId>
2021-10-13 07:46:01 +01:00
<version > ${testng.version}</version>
2019-06-24 18:24:50 -04:00
<scope > test</scope>
</dependency>
2019-06-07 13:07:52 -04:00
</dependencies>
2020-01-26 12:45:41 -05:00
<profiles >
<profile >
<id > static-analysis</id>
<build >
<plugins >
<plugin >
<groupId > com.github.spotbugs</groupId>
<artifactId > spotbugs-maven-plugin</artifactId>
<configuration >
<excludeFilterFile > ${project.parent.basedir}${file.separator}spotbugs-exclude.xml</excludeFilterFile>
</configuration>
</plugin>
<plugin >
<groupId > org.apache.maven.plugins</groupId>
<artifactId > maven-pmd-plugin</artifactId>
</plugin>
<plugin >
<groupId > se.bjurr.violations</groupId>
<artifactId > violations-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</profile>
</profiles>
2019-05-13 20:56:47 +08:00
</project>