Skip to content

Commit 8ce02ea

Browse files
committed
Include http-api in module release
1 parent 8a0809e commit 8ce02ea

File tree

3 files changed

+41
-8
lines changed

3 files changed

+41
-8
lines changed

http-api/pom.xml

Lines changed: 13 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,22 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<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">
33
<modelVersion>4.0.0</modelVersion>
4+
<parent>
5+
<groupId>io.avaje</groupId>
6+
<artifactId>avaje-http-generator-parent</artifactId>
7+
<version>1.3-SNAPSHOT</version>
8+
<relativePath>..</relativePath>
9+
</parent>
410

5-
<groupId>io.avaje</groupId>
611
<artifactId>avaje-http-api</artifactId>
7-
<version>1.2</version>
812

9-
<parent>
10-
<groupId>org.avaje</groupId>
11-
<artifactId>java8-oss</artifactId>
12-
<version>2.3</version>
13-
</parent>
13+
<!-- <groupId>io.avaje</groupId>-->
14+
<!-- <version>1.2</version>-->
15+
<!-- <parent>-->
16+
<!-- <groupId>org.avaje</groupId>-->
17+
<!-- <artifactId>java8-oss</artifactId>-->
18+
<!-- <version>2.3</version>-->
19+
<!-- </parent>-->
1420

1521
<scm>
1622
<developerConnection>scm:git:git@github.com:avaje/avaje-http.git</developerConnection>

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
</dependencies>
3434

3535
<modules>
36-
<!-- <module>http-api</module>-->
36+
<module>http-api</module>
3737
<module>http-generator-core</module>
3838
<module>http-generator-javalin</module>
3939
<module>http-generator-jex</module>

tests/test-jex/src/main/resources/public/openapi.json

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,33 @@
6969
}
7070
}
7171
}
72+
},
73+
"/splat/{name}/*/other/*" : {
74+
"get" : {
75+
"tags" : [ ],
76+
"summary" : "",
77+
"description" : "",
78+
"parameters" : [ {
79+
"name" : "name",
80+
"in" : "path",
81+
"required" : true,
82+
"schema" : {
83+
"type" : "string"
84+
}
85+
} ],
86+
"responses" : {
87+
"200" : {
88+
"description" : "",
89+
"content" : {
90+
"text/plain" : {
91+
"schema" : {
92+
"type" : "string"
93+
}
94+
}
95+
}
96+
}
97+
}
98+
}
7299
}
73100
},
74101
"components" : {

0 commit comments

Comments
 (0)