Skip to content

Commit

Permalink
build(deps): bump org.openapitools:openapi-generator-maven-plugin fro…
Browse files Browse the repository at this point in the history
…m 7.10.0 to 7.11.0 in /backend-worker (#11)

* build(deps): bump org.openapitools:openapi-generator-maven-plugin

Bumps org.openapitools:openapi-generator-maven-plugin from 7.10.0 to 7.11.0.

---
updated-dependencies:
- dependency-name: org.openapitools:openapi-generator-maven-plugin
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* regenerate code

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: nictheboy <[email protected]>
  • Loading branch information
dependabot[bot] and Nictheboy authored Jan 20, 2025
1 parent a49e5ae commit f400438
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion backend-worker/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@
<plugin>
<groupId>org.openapitools</groupId>
<artifactId>openapi-generator-maven-plugin</artifactId>
<version>7.10.0</version>
<version>7.11.0</version>
<executions>
<execution>
<goals>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech)
* (7.10.0). https://openapi-generator.tech Do not edit the class manually.
* (7.11.0). https://openapi-generator.tech Do not edit the class manually.
*/
package org.rucca.snake.worker.api

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech)
* (7.10.0). https://openapi-generator.tech Do not edit the class manually.
* (7.11.0). https://openapi-generator.tech Do not edit the class manually.
*/
package org.rucca.snake.worker.api

Expand Down Expand Up @@ -62,7 +62,7 @@ interface SubmitApi {
@Parameter(description = "Source code file")
@Valid
@RequestPart("src", required = false)
src: org.springframework.core.io.Resource?
src: org.springframework.web.multipart.MultipartFile?
): ResponseEntity<SubmitPost200ResponseDTO> {
return ResponseEntity(HttpStatus.NOT_IMPLEMENTED)
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@ package org.rucca.snake.worker.controller

import org.rucca.snake.worker.api.SubmitApi
import org.rucca.snake.worker.model.SubmitPost200ResponseDTO
import org.springframework.core.io.Resource
import org.springframework.http.ResponseEntity
import org.springframework.web.bind.annotation.RestController
import org.springframework.web.multipart.MultipartFile

@RestController
class SubmitController : SubmitApi {
override fun submitPost(src: Resource?): ResponseEntity<SubmitPost200ResponseDTO> {
override fun submitPost(src: MultipartFile?): ResponseEntity<SubmitPost200ResponseDTO> {
return super.submitPost(src)
}
}

0 comments on commit f400438

Please sign in to comment.