com.tenderowls.opensource.haxemojos.components.lifecycle.AbstractHaxeLifecycleMapping Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of haxemojos-maven-plugin Show documentation
Show all versions of haxemojos-maven-plugin Show documentation
Maven plugin created to build Haxe projects
The newest version!
/**
* Copyright (C) 2012 https://github.com/tenderowls/haxemojos
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.tenderowls.opensource.haxemojos.components.lifecycle;
import java.util.LinkedHashMap;
import java.util.List;
import java.util.Map;
import org.apache.maven.lifecycle.mapping.Lifecycle;
public abstract class AbstractHaxeLifecycleMapping
{
private Map lifecycleMap;
public AbstractHaxeLifecycleMapping()
{
super();
}
public Map getLifecycles()
{
if ( lifecycleMap != null )
{
return lifecycleMap;
}
lifecycleMap = new LinkedHashMap();
Lifecycle lifecycle = new Lifecycle();
lifecycle.setId( "default" );
Map phases = new LinkedHashMap();
phases.put( "process-resources", "org.apache.maven.plugins:maven-resources-plugin:resources" );
phases.put( "compile", getCompiler() );
phases.put( "process-test-resources", "org.apache.maven.plugins:maven-resources-plugin:testResources" );
phases.put( "test-compile", "com.tenderowls.opensource:haxemojos-maven-plugin:testCompile");
phases.put( "test", "com.tenderowls.opensource:haxemojos-maven-plugin:testRun" );
if ( getPackage() != null )
{
phases.put( "package", getPackage() );
}
phases.put( "install", "org.apache.maven.plugins:maven-install-plugin:install" );
phases.put( "deploy", "org.apache.maven.plugins:maven-deploy-plugin:deploy" );
lifecycle.setPhases( phases );
lifecycleMap.put( "default", lifecycle );
return lifecycleMap;
}
protected String getPackage()
{
return null;
}
public abstract String getCompiler();
@Deprecated
public List getOptionalMojos( String lifecycle )
{
return null;
}
@Deprecated
public Map getPhases( String lifecycle )
{
Lifecycle lifecycleMapping = getLifecycles().get( lifecycle );
if ( lifecycleMapping != null )
{
return lifecycleMapping.getPhases();
}
return null;
}
}