I am trying to share a java class output from a subproject which is compiled from src/main to another subproject and access it in it’s src/test. I read the gradle docs (Sharing outputs between projects) and can’t seem to get it working and it seems to only work for jars?
“Sharing outputs between projects” should not really apply here.
You just declare a dependency from one subproject to the other and it will work.
If something is not working as expected, you should probably share an MCVE of what you try.