#381 fix baseDir for JSR 330 integration test, add missing dependency

This commit is contained in:
Christian Schuster 2014-12-09 23:40:05 +01:00 committed by Andreas Gudian
parent 9b8076eff3
commit 677952c2fe
2 changed files with 5 additions and 1 deletions

View File

@ -28,6 +28,6 @@ import org.mapstruct.itest.testutil.runner.ProcessorSuiteRunner;
*
*/
@RunWith( ProcessorSuiteRunner.class )
@ProcessorSuite( baseDir = "springTest", processorTypes = ProcessorType.ALL )
@ProcessorSuite( baseDir = "jsr330Test", processorTypes = ProcessorType.ALL )
public class Jsr330Test {
}

View File

@ -46,5 +46,9 @@
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
</dependency>
<dependency>
<groupId>javax.inject</groupId>
<artifactId>javax.inject</artifactId>
</dependency>
</dependencies>
</project>