-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
cadc589
commit 19c30df
Showing
1,535 changed files
with
105,886 additions
and
13 deletions.
There are no files selected for viewing
4 changes: 4 additions & 0 deletions
4
...-dependencies/com/atlassian/oai/swagger-request-validator-core/2.39.0/_maven.repositories
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
#NOTE: This is an internal implementation file, its format can be changed without prior notice. | ||
#Wed Nov 29 14:36:13 CET 2023 | ||
swagger-request-validator-core-2.39.0.pom>central= | ||
swagger-request-validator-core-2.39.0.jar>central= |
Binary file added
BIN
+206 KB
...ssian/oai/swagger-request-validator-core/2.39.0/swagger-request-validator-core-2.39.0.jar
Binary file not shown.
5 changes: 5 additions & 0 deletions
5
...agger-request-validator-core/2.39.0/swagger-request-validator-core-2.39.0.jar.lastUpdated
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
#NOTE: This is an internal implementation file, its format can be changed without prior notice. | ||
#Wed Nov 29 14:36:13 CET 2023 | ||
https\://repo.maven.apache.org/maven2/.lastUpdated=1701264973875 | ||
file\:////home/seb/src/openapi-validator/apigateway-dependencies/.error= | ||
file\:////home/seb/src/openapi-validator/apigateway-dependencies/.lastUpdated=1701264970140 |
1 change: 1 addition & 0 deletions
1
.../oai/swagger-request-validator-core/2.39.0/swagger-request-validator-core-2.39.0.jar.sha1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
44dc7847dccf334f2519e08f76e6724ed56e4438 |
93 changes: 93 additions & 0 deletions
93
...ssian/oai/swagger-request-validator-core/2.39.0/swagger-request-validator-core-2.39.0.pom
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,93 @@ | ||
<?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>com.atlassian.oai</groupId> | ||
<artifactId>swagger-request-validator</artifactId> | ||
<version>2.39.0</version> | ||
<relativePath>../pom.xml</relativePath> | ||
</parent> | ||
|
||
<artifactId>swagger-request-validator-core</artifactId> | ||
|
||
<description> | ||
Core OpenAPI / Swagger validation logic. | ||
</description> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>io.swagger.parser.v3</groupId> | ||
<artifactId>swagger-parser</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.github.java-json-tools</groupId> | ||
<artifactId>json-schema-validator</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.slf4j</groupId> | ||
<artifactId>slf4j-api</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.google.guava</groupId> | ||
<artifactId>guava</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.google.code.findbugs</groupId> | ||
<artifactId>jsr305</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.fasterxml.jackson.datatype</groupId> | ||
<artifactId>jackson-datatype-jdk8</artifactId> | ||
<version>${jackson.version}</version> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>junit</groupId> | ||
<artifactId>junit</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</artifactId> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>ch.qos.logback</groupId> | ||
<artifactId>logback-classic</artifactId> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.spotify</groupId> | ||
<artifactId>hamcrest-optional</artifactId> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.openjdk.jmh</groupId> | ||
<artifactId>jmh-core</artifactId> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.openjdk.jmh</groupId> | ||
<artifactId>jmh-generator-annprocess</artifactId> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.skyscreamer</groupId> | ||
<artifactId>jsonassert</artifactId> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.github.tomakehurst</groupId> | ||
<artifactId>wiremock-jre8</artifactId> | ||
<scope>test</scope> | ||
</dependency> | ||
</dependencies> | ||
|
||
</project> |
5 changes: 5 additions & 0 deletions
5
...agger-request-validator-core/2.39.0/swagger-request-validator-core-2.39.0.pom.lastUpdated
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
#NOTE: This is an internal implementation file, its format can be changed without prior notice. | ||
#Wed Nov 29 14:36:00 CET 2023 | ||
https\://repo.maven.apache.org/maven2/.lastUpdated=1701264960942 | ||
file\:////home/seb/src/openapi-validator/apigateway-dependencies/.error= | ||
file\:////home/seb/src/openapi-validator/apigateway-dependencies/.lastUpdated=1701264960903 |
1 change: 1 addition & 0 deletions
1
.../oai/swagger-request-validator-core/2.39.0/swagger-request-validator-core-2.39.0.pom.sha1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
29f555f20140338bf342f3d1edf9c38971e97e7f |
3 changes: 3 additions & 0 deletions
3
...teway-dependencies/com/atlassian/oai/swagger-request-validator/2.39.0/_maven.repositories
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
#NOTE: This is an internal implementation file, its format can be changed without prior notice. | ||
#Wed Nov 29 14:36:01 CET 2023 | ||
swagger-request-validator-2.39.0.pom>central= |
Oops, something went wrong.