dotwebstack-frontend-openapi
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.dotwebstack.framework</groupId> <artifactId>dotwebstack-frontend-openapi</artifactId> <version>0.1.11</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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.dotwebstack.framework</groupId> <artifactId>dotwebstack-frontend</artifactId> <version>0.1.11</version> </parent> <artifactId>dotwebstack-frontend-openapi</artifactId> <name>DotWebStack Frontend - OpenAPI</name> <dependencies> <dependency> <groupId>org.dotwebstack.framework</groupId> <artifactId>dotwebstack-core</artifactId> </dependency> <dependency> <groupId>org.dotwebstack.framework</groupId> <artifactId>dotwebstack-frontend-http</artifactId> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </dependency> <dependency> <groupId>io.swagger.parser.v3</groupId> <artifactId>swagger-parser-v3</artifactId> <version>2.0.5</version> </dependency> <dependency> <groupId>com.atlassian.oai</groupId> <artifactId>swagger-request-validator-core</artifactId> <version>2.0.0</version> <exclusions> <exclusion> <groupId>io.swagger</groupId> <artifactId>swagger-compat-spec-parser</artifactId> </exclusion> <exclusion> <groupId>io.swagger.parser.v3</groupId> <artifactId>swagger-parser-v2-converter</artifactId> </exclusion> </exclusions> </dependency> <!-- #because the validator is still using old JSON thingamabob --> <!-- https://mvnrepository.com/artifact/io.swagger/swagger-core --> <dependency> <groupId>io.swagger</groupId> <artifactId>swagger-core</artifactId> <version>1.5.3</version> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> <version>3.7</version> </dependency> <!-- test dependencies --> <dependency> <groupId>org.dotwebstack.framework</groupId> <artifactId>dotwebstack-test</artifactId> <scope>test</scope> </dependency> <!-- <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> </dependency> --> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-api</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-params</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.vintage</groupId> <artifactId>junit-vintage-engine</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-library</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-nop</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.marmotta</groupId> <artifactId>ldpath-api</artifactId> </dependency> <dependency> <groupId>org.apache.marmotta</groupId> <artifactId>ldpath-core</artifactId> </dependency> <dependency> <groupId>org.apache.marmotta</groupId> <artifactId>ldpath-functions-text</artifactId> </dependency> <dependency> <groupId>org.skyscreamer</groupId> <artifactId>jsonassert</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>com.taxonic.carml</groupId> <artifactId>carml-engine</artifactId> </dependency> </dependencies> </project>