Stefan Oehme

Results 22 issues of Stefan Oehme

### Steps to reproduce * JaCoCo version: 0.8.6 * Tool integration: Ant (and Gradle, because it uses the Ant task) * Steps: Run the report generator task on faulty data...

type: bug :bug:
component: report

Instead of doing `sourceSets.test.compileClasspath += sourceSets.main.output`, the Java plugin should use `dependencies { testImplementation thisProject }` and Gradle will automatically wire in the main variant of the project.

a:feature
in:jvm-ecosystem
in:java-plugins

``` include 'a:foo' include 'b:foo' ``` ``` allprojects { apply plugin: 'java' group 'org.test' } project(':a:foo') { dependencies { compile project(':b:foo') } } ``` ### Expected Behavior `:a:foo` depends on...

a:bug
in:dependency-resolution
in:multi-projects

I was trying to write a [Micronaut test](https://micronaut-projects.github.io/micronaut-test/latest/guide/#junit5) using the `@MicronautTest` annotation. This annotaiton is a meta-annotation that includes `@ExtendWith(MicronautJunit5Extension)`. However, I also needed to start up some other services...

type: enhancement
theme: ordering
theme: extensions
theme: programming model
component: Jupiter
status: stale
status: new

https://github.com/johncarl81/transfuse/blob/a8ee2e9b7263f4c88d93f0f85113a5e99b2a9011/transfuse-core/src/main/java/org/androidtransfuse/gen/FilerSourceCodeWriter.java#L53 This method returns an output stream that writes each byte individually, which makes builds very slow. This Javac bug exists all the way up to JDK 15. The [FilerOutputStream](https://github.com/AdoptOpenJDK/openjdk-jdk15u/blob/master/src/jdk.compiler/share/classes/com/sun/tools/javac/processing/JavacFiler.java#L261)...

It seems that GitHub pages no longer sets JEKYLL_ENV. I tried it locally and your plugin works just fine, but when built by GitHub pages, analytics are disabled. Can you...

Continuing the discussion from https://github.com/junit-team/junit5/issues/483: It would be cool if Degraph came with a Gradle plugin that allowed users to check their Java code for violations. I did a very...

Users should never have to use `--no-daemon`, it makes builds very slow. I don't quite understand what problem this section in the readme is about, but we should fix the...

I was just trying to optimize the cache archive size in a project by excluding some unnecessary files like so: ``` path: | ~/.gradle/wrapper/dists !~/.gradle/wrapper/dists/**/gradle*.zip ``` The zip files still...

bug

Right now, if I have a fan curve like 50°C - 0% 60°C - 15% 70°C - 25% and I'm running a light load (e.g. a 2D game) the graphics...