Derek Wickern

Results 62 comments of Derek Wickern

You increment the version to force IntelliJ to rebuild the index

@GCheung55 I'm not sure why you only see the one entry for the class. There should be two since the class exists in `app` and `addon`. They have the same...

I don't this problem on UNIX/OSX because `Process.destroy()` sends a `SIGTERM`. Note that the I/O redirection stops so you won't see any stdout/stderr from your shutdown hook, but the hook...

I think it needs to be a "java bean" getter, e.g. ```scala @ApiModel(value = "foo") trait Foo { @ApiModelProperty(value = "x", dataType = "integer", required = true, readOnly = true)...

@sdhawley is this in a public repository? If not, do you think you could put together a reproduction?

I had the same issue running [email protected] (current stable version) installed with corepack. Installing the package `"canvas": "dwickern/canvas-noop"` from yarn 1.22.19: [canvas-https-d4dab75653-31cdc4ba4d.zip](https://github.com/yarnpkg/berry/files/9214610/canvas-https-d4dab75653-31cdc4ba4d.zip) The same package installed with yarn 3.2.2 via...

I published a plugin for this: https://github.com/dwickern/sbt-swagger-play

@softinio It's a bug in jackson on [this line](https://github.com/FasterXML/jackson-module-scala/blob/83001f9029ffd42be2ef981aa4bdbeac71ba1089/src/main/scala/com/fasterxml/jackson/module/scala/introspect/ScalaAnnotationIntrospectorModule.scala#L85): ``` val jsonCreators = PartialFunction[Annotation, JsonCreator]({ case jc: JsonCreator => jc }) ``` should be ``` val jsonCreators: PartialFunction[Annotation, JsonCreator] =...

See the discussion in #220

I had the same issue. You can subclass the `SwaggerBaseApiController` with your own `getResources`: ``` class MyApiController extends SwaggerBaseApiController { def getResources = Action { request => implicit val requestHeader:...