#782 Do not use JDT for the Lombok integration tests

Lombok uses internals of the Java and Eclipse compilers.
In order for it to work with the Eclipse compiler, we need to add some extra jar.
Therefore, we are only testing Lombok with the Java compiler
This commit is contained in:
Filip Hrisafov 2018-02-10 17:40:33 +01:00
parent 22c337a947
commit c3f0099698

View File

@ -27,6 +27,12 @@ import org.mapstruct.itest.testutil.runner.ProcessorSuiteRunner;
*/ */
@RunWith( ProcessorSuiteRunner.class ) @RunWith( ProcessorSuiteRunner.class )
@ProcessorSuite( baseDir = "lombokBuilderTest", @ProcessorSuite( baseDir = "lombokBuilderTest",
processorTypes = ProcessorSuite.ProcessorType.ALL_WITHOUT_PROCESSOR_PLUGIN) processorTypes = {
ProcessorSuite.ProcessorType.ORACLE_JAVA_6,
ProcessorSuite.ProcessorType.ORACLE_JAVA_7,
ProcessorSuite.ProcessorType.ORACLE_JAVA_8,
ProcessorSuite.ProcessorType.ORACLE_JAVA_9,
}
)
public class LombokBuilderTest { public class LombokBuilderTest {
} }