Will Sargent

Results 199 comments of Will Sargent

@akkie 2.8.1 is out now https://github.com/playframework/playframework/releases/tag/2.8.1

Possibly off topic, but it is possible to use markers rather than MDC to pass contextual information around, i.e. https://www.playframework.com/documentation/2.6.x/Highlights26#Logging-Marker-API

This appears to happen for me only when I run JDK 14 or 15, so using https://github.com/shyiko/jabba is enough to work around it: ``` jabba use [email protected] ``` or ```...

The gradle project is configured for a gradle plugin though, not a library. I'm looking for an actual example, like the kind you see in https://github.com/playframework/play-java-hello-world-tutorial for example. I've created...

Thanks! This helps a lot. I added bintray publishing and got it pushed to bintray successfuly -- now I'm currently working through how to increment the version number, and incorporating...

I have signing and publishing working with Travis working now, and I'm on to getting javadoc and an asciidoctor site working: https://github.com/tersesystems/terse-logback/pull/15 Not quite sure how to aggregate javadoc but...

Is there an easy way to get at the project's list of library dependencies? I want to auto-add them based off their resolver if possible: https://github.com/tersesystems/terse-logback/pull/15/files#diff-c197962302397baf3a4cc36463dce5eaR113 On Thu, Mar 7,...

I have automatic external javadoc working with a basic OOTB gradle project: https://gist.github.com/wsargent/33126a35d7a02ab9a265af1ad996e7b3 But when I try it with 'subproj' in the kordamp style, the dependencies are always an empty...

> I'm afraid I don't follow, do you mean this doesn't work for you? Yeah, it always prints out []. If I define the javadoc in the subproject, i.e. https://github.com/tersesystems/terse-logback/pull/31/files#diff-6f798219f69a7b5170beb582c0b11272R13...

I fixed it! I needed to have the following in my subprojects, so the javadoc section was under the config section: ``` dependencies { compile "org.slf4j:slf4j-api:$slf4jVersion" compile "net.bytebuddy:byte-buddy:$bytebuddyVersion" compile "net.bytebuddy:byte-buddy-agent:$bytebuddyVersion"...