openapi-generator-core
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.mmalygin</groupId> <artifactId>openapi-generator-core</artifactId> <version>6.2.0</version> </dependency>
<?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>io.github.mmalygin</groupId> <!-- RELEASE_VERSION --> <version>6.2.0</version> <!-- /RELEASE_VERSION --> <relativePath>../..</relativePath> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>openapi-generator-core</artifactId> <name>openapi-generator-core</name> <url>https://github.com/openapitools/openapi-generator</url> <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> <dependencies> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> <version>${guava.version}</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>${slf4j.version}</version> </dependency> <dependency> <groupId>org.testng</groupId> <artifactId>testng</artifactId> <version>${testng.version}</version> <scope>test</scope> </dependency> </dependencies> <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> </project>