blob: 23f1c84d1b9ceebdd695a12cd65c606b20e52c2b [file] [log] [blame]
/*
* Copyright 2010 NPanday
*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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 npanday.plugin.customlifecycle;
import org.apache.maven.lifecycle.Lifecycle;
import npanday.lifecycle.LifecycleMapping;
import npanday.lifecycle.LifecycleMappingBuilder;
import npanday.lifecycle.LifecyclePhase;
import npanday.lifecycle.LifecycleMap;
import npanday.ArtifactType;
import static LifecycleMappingBuilder.build as forType
/**
* The mapping of all compilable types to an almost empty lifecycle. It only
* executes the default install and deploy plugins in the corresponding phases.
*
* @author Lars Corneliussen
*/
class CustomLifecycleMap extends LifecycleMap
{
def mv_install = 'org.apache.maven.plugins:maven-install-plugin:install'
def mv_deploy = 'org.apache.maven.plugins:maven-deploy-plugin:deploy'
void defineMappings() {
def phases = {LifecycleMappingBuilder b ->
b.install( mv_install )
b.deploy( mv_deploy )
}
ArtifactType.values()
.findAll{ArtifactType type -> type != npanday.ArtifactType.NULL && type.targetCompileType != null}
.each{
add(forType(it, phases))
}
}
}