I was trying a simple test using glassfish 5.0 embedded, but it was failing until I added
<dependency>
<groupId>org.glassfish.main.extras</groupId>
<artifactId>glassfish-embedded-all</artifactId>
<version>5.0</version>
<scope>test</scope>
</dependency>
to my pom.xml
I am not experienced in arquillian, so I don't know where the error actually originates from, and if it's an actual bug,
but my expectation was it should have worked without additional deps (nothing special with my test, just a simple @Inject statement)
I was trying a simple test using glassfish 5.0 embedded, but it was failing until I added
to my pom.xml
I am not experienced in arquillian, so I don't know where the error actually originates from, and if it's an actual bug,
but my expectation was it should have worked without additional deps (nothing special with my test, just a simple @Inject statement)