Update swaggerDirectory to target folder
This commit is contained in:
parent
fe929871fa
commit
c747712a0e
|
@ -1,57 +0,0 @@
|
||||||
{
|
|
||||||
"swagger" : "2.0",
|
|
||||||
"info" : {
|
|
||||||
"description" : "This is a Baeldung Document Enum Sample Code",
|
|
||||||
"version" : "v1",
|
|
||||||
"title" : "Baeldung - Document Enum",
|
|
||||||
"contact" : {
|
|
||||||
"name" : "Parikshit Murria",
|
|
||||||
"email" : "pmurria@baeldung.com"
|
|
||||||
},
|
|
||||||
"license" : {
|
|
||||||
"name" : "Apache 2.0",
|
|
||||||
"url" : "https://www.apache.org/licenses/LICENSE-2.0.html"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"host" : "baeldung.com",
|
|
||||||
"basePath" : "/api",
|
|
||||||
"schemes" : [ "http", "https" ],
|
|
||||||
"paths" : {
|
|
||||||
"/hire" : {
|
|
||||||
"post" : {
|
|
||||||
"summary" : "This method is used to hire employee with a specific role",
|
|
||||||
"description" : "",
|
|
||||||
"operationId" : "hireEmployee",
|
|
||||||
"produces" : [ "application/json" ],
|
|
||||||
"parameters" : [ {
|
|
||||||
"in" : "body",
|
|
||||||
"name" : "body",
|
|
||||||
"description" : "role",
|
|
||||||
"required" : true,
|
|
||||||
"schema" : {
|
|
||||||
"$ref" : "#/definitions/Employee"
|
|
||||||
}
|
|
||||||
} ],
|
|
||||||
"responses" : {
|
|
||||||
"200" : {
|
|
||||||
"description" : "successful operation",
|
|
||||||
"schema" : {
|
|
||||||
"type" : "string"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"definitions" : {
|
|
||||||
"Employee" : {
|
|
||||||
"type" : "object",
|
|
||||||
"properties" : {
|
|
||||||
"role" : {
|
|
||||||
"type" : "string",
|
|
||||||
"enum" : [ "Engineer", "Clerk", "Driver", "Janitor" ]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -63,7 +63,7 @@
|
||||||
<name>Apache 2.0</name>
|
<name>Apache 2.0</name>
|
||||||
</license>
|
</license>
|
||||||
</info>
|
</info>
|
||||||
<swaggerDirectory>generated/swagger-ui</swaggerDirectory>
|
<swaggerDirectory>${basedir}/target/swagger-ui</swaggerDirectory>
|
||||||
</apiSource>
|
</apiSource>
|
||||||
</apiSources>
|
</apiSources>
|
||||||
</configuration>
|
</configuration>
|
||||||
|
|
Loading…
Reference in New Issue