I think I found a bug: with this in my pom.xml <dependency> <groupId>it.unibo.deis.EsameIS</groupId> <artifactId>MyLib</artifactId> <version>1.0</version> <classifier>test</classifier> <scope>test</scope> <type>dotnet:library</type> </dependency>
the compiler compiles well the code, but can't execute the test because in the directory test-assemblies there's no file MyLib-1.0-test.dll the thing that happens is that I find MyLib-1.0.dll instead of the test library! In the project there are no other MyLib deps
