All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.redhat.ceylon.maven.CeylonTestCompileMojo Maven / Gradle / Ivy

There is a newer version: 1.3.3
Show newest version
package com.redhat.ceylon.maven;

import org.apache.maven.plugins.annotations.LifecyclePhase;
import org.apache.maven.plugins.annotations.Mojo;

@Mojo(name = "testCompile", defaultPhase = LifecyclePhase.TEST_COMPILE)
public class CeylonTestCompileMojo extends CeylonCompileMojo {

	@Override
	protected String getPhase() {
		return "test";
	}

	@Override
	protected String getClassesOutput() {
		return project.getBuild().getTestOutputDirectory();
	}
	
	@Override
	protected boolean isTest() {
		return true;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy