/** * Copyright (c) 2000-present Liferay, Inc. All rights reserved. * * This library is free software; you can redistribute it and/or modify it under * the terms of the GNU Lesser General Public License as published by the Free * Software Foundation; either version 2.1 of the License, or (at your option) * any later version. * * This library is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. */ package com.liferay.gradle.plugins.defaults; import com.liferay.gradle.plugins.LiferayPlugin; import com.liferay.gradle.plugins.defaults.internal.LiferayCIPlugin; import com.liferay.gradle.plugins.defaults.internal.LiferayRelengPlugin; import com.liferay.gradle.plugins.defaults.internal.MavenDefaultsPlugin; import com.liferay.gradle.plugins.defaults.internal.NodeDefaultsPlugin; import com.liferay.gradle.util.Validator; import org.gradle.api.Plugin; import org.gradle.api.Project; /** * @author Andrea Di Giorgi */ public class LiferayDefaultsPlugin extends LiferayPlugin { @Override public void apply(Project project) { super.apply(project); if (_isRunningInCIEnvironment()) { LiferayCIPlugin.INSTANCE.apply(project); } LiferayRelengPlugin.INSTANCE.apply(project); MavenDefaultsPlugin.INSTANCE.apply(project); NodeDefaultsPlugin.INSTANCE.apply(project); } @Override protected Class<? extends Plugin<Project>> getAntPluginClass() { return LiferayAntDefaultsPlugin.class; } @Override protected Class<? extends Plugin<Project>> getOSGiPluginClass() { return LiferayOSGiDefaultsPlugin.class; } @Override protected Class<? extends Plugin<Project>> getThemePluginClass() { return LiferayThemeDefaultsPlugin.class; } private boolean _isRunningInCIEnvironment() { if (Validator.isNotNull(System.getenv("JENKINS_HOME"))) { return true; } return false; } }