Skip to content

Commit b2e1f46

Browse files
committed
Merge remote-tracking branch 'origin/master'
2 parents c24e28f + 3745c32 commit b2e1f46

File tree

13 files changed

+26
-52
lines changed

13 files changed

+26
-52
lines changed

pom.xml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
1-
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2-
xmlns="http://maven.apache.org/POM/4.0.0"
3-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
1+
<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">
42
<modelVersion>4.0.0</modelVersion>
53
<groupId>org.springdoc</groupId>
64
<artifactId>springdoc-openapi</artifactId>
7-
<version>1.6.13-SNAPSHOT</version>
5+
<version>1.6.14-SNAPSHOT</version>
86
<packaging>pom</packaging>
97
<name>Spring openapi documentation</name>
108
<description>Spring openapi documentation</description>

springdoc-openapi-common/pom.xml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,9 @@
1-
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2-
xmlns="http://maven.apache.org/POM/4.0.0"
3-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
1+
<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">
42
<modelVersion>4.0.0</modelVersion>
53
<parent>
64
<groupId>org.springdoc</groupId>
75
<artifactId>springdoc-openapi</artifactId>
8-
<version>1.6.13-SNAPSHOT</version>
6+
<version>1.6.14-SNAPSHOT</version>
97
</parent>
108
<artifactId>springdoc-openapi-common</artifactId>
119
<dependencies>

springdoc-openapi-data-rest/pom.xml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,10 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3-
xmlns="http://maven.apache.org/POM/4.0.0"
4-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
2+
<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">
53
<modelVersion>4.0.0</modelVersion>
64
<parent>
75
<artifactId>springdoc-openapi</artifactId>
86
<groupId>org.springdoc</groupId>
9-
<version>1.6.13-SNAPSHOT</version>
7+
<version>1.6.14-SNAPSHOT</version>
108
</parent>
119
<artifactId>springdoc-openapi-data-rest</artifactId>
1210
<dependencies>

springdoc-openapi-groovy/pom.xml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,10 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3-
xmlns="http://maven.apache.org/POM/4.0.0"
4-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
2+
<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">
53
<modelVersion>4.0.0</modelVersion>
64
<parent>
75
<artifactId>springdoc-openapi</artifactId>
86
<groupId>org.springdoc</groupId>
9-
<version>1.6.13-SNAPSHOT</version>
7+
<version>1.6.14-SNAPSHOT</version>
108
</parent>
119
<artifactId>springdoc-openapi-groovy</artifactId>
1210
<dependencies>

springdoc-openapi-hateoas/pom.xml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,10 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3-
xmlns="http://maven.apache.org/POM/4.0.0"
4-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
2+
<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">
53
<modelVersion>4.0.0</modelVersion>
64
<parent>
75
<artifactId>springdoc-openapi</artifactId>
86
<groupId>org.springdoc</groupId>
9-
<version>1.6.13-SNAPSHOT</version>
7+
<version>1.6.14-SNAPSHOT</version>
108
</parent>
119
<artifactId>springdoc-openapi-hateoas</artifactId>
1210
<dependencies>

springdoc-openapi-javadoc/pom.xml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,9 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3-
xmlns="http://maven.apache.org/POM/4.0.0"
4-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
2+
<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">
53
<parent>
64
<artifactId>springdoc-openapi</artifactId>
75
<groupId>org.springdoc</groupId>
8-
<version>1.6.13-SNAPSHOT</version>
6+
<version>1.6.14-SNAPSHOT</version>
97
</parent>
108
<modelVersion>4.0.0</modelVersion>
119

springdoc-openapi-kotlin/pom.xml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,9 @@
1-
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2-
xmlns="http://maven.apache.org/POM/4.0.0"
3-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
1+
<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">
42
<modelVersion>4.0.0</modelVersion>
53
<parent>
64
<groupId>org.springdoc</groupId>
75
<artifactId>springdoc-openapi</artifactId>
8-
<version>1.6.13-SNAPSHOT</version>
6+
<version>1.6.14-SNAPSHOT</version>
97
</parent>
108
<properties>
119
<spring.version>5.3.6</spring.version>

springdoc-openapi-native/pom.xml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,9 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3-
xmlns="http://maven.apache.org/POM/4.0.0"
4-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
2+
<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">
53
<parent>
64
<artifactId>springdoc-openapi</artifactId>
75
<groupId>org.springdoc</groupId>
8-
<version>1.6.13-SNAPSHOT</version>
6+
<version>1.6.14-SNAPSHOT</version>
97
</parent>
108
<modelVersion>4.0.0</modelVersion>
119

springdoc-openapi-security/pom.xml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,10 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3-
xmlns="http://maven.apache.org/POM/4.0.0"
4-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
2+
<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">
53
<modelVersion>4.0.0</modelVersion>
64
<parent>
75
<artifactId>springdoc-openapi</artifactId>
86
<groupId>org.springdoc</groupId>
9-
<version>1.6.13-SNAPSHOT</version>
7+
<version>1.6.14-SNAPSHOT</version>
108
</parent>
119
<artifactId>springdoc-openapi-security</artifactId>
1210
<properties>

springdoc-openapi-ui/pom.xml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,9 @@
1-
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2-
xmlns="http://maven.apache.org/POM/4.0.0"
3-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
1+
<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">
42
<modelVersion>4.0.0</modelVersion>
53
<parent>
64
<groupId>org.springdoc</groupId>
75
<artifactId>springdoc-openapi</artifactId>
8-
<version>1.6.13-SNAPSHOT</version>
6+
<version>1.6.14-SNAPSHOT</version>
97
</parent>
108
<artifactId>springdoc-openapi-ui</artifactId>
119
<dependencies>

springdoc-openapi-webflux-core/pom.xml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,9 @@
1-
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2-
xmlns="http://maven.apache.org/POM/4.0.0"
3-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
1+
<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">
42
<modelVersion>4.0.0</modelVersion>
53
<parent>
64
<groupId>org.springdoc</groupId>
75
<artifactId>springdoc-openapi</artifactId>
8-
<version>1.6.13-SNAPSHOT</version>
6+
<version>1.6.14-SNAPSHOT</version>
97
</parent>
108
<artifactId>springdoc-openapi-webflux-core</artifactId>
119
<dependencies>

springdoc-openapi-webflux-ui/pom.xml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,9 @@
1-
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2-
xmlns="http://maven.apache.org/POM/4.0.0"
3-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
1+
<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">
42
<modelVersion>4.0.0</modelVersion>
53
<parent>
64
<groupId>org.springdoc</groupId>
75
<artifactId>springdoc-openapi</artifactId>
8-
<version>1.6.13-SNAPSHOT</version>
6+
<version>1.6.14-SNAPSHOT</version>
97
</parent>
108
<artifactId>springdoc-openapi-webflux-ui</artifactId>
119
<dependencies>

springdoc-openapi-webmvc-core/pom.xml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,9 @@
1-
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2-
xmlns="http://maven.apache.org/POM/4.0.0"
3-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
1+
<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">
42
<modelVersion>4.0.0</modelVersion>
53
<parent>
64
<groupId>org.springdoc</groupId>
75
<artifactId>springdoc-openapi</artifactId>
8-
<version>1.6.13-SNAPSHOT</version>
6+
<version>1.6.14-SNAPSHOT</version>
97
</parent>
108
<artifactId>springdoc-openapi-webmvc-core</artifactId>
119
<dependencies>

0 commit comments

Comments
 (0)