com.intershop.gradle.icm.cartridge.CartridgePlugin.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of icm-gradle-plugin Show documentation
Show all versions of icm-gradle-plugin Show documentation
Intershop Commerce Management Plugins
The newest version!
/*
* Copyright 2019 Intershop Communications AG.
*
* 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.intershop.gradle.icm.cartridge
import com.intershop.gradle.icm.extension.IntershopExtension
import com.intershop.gradle.icm.tasks.WriteCartridgeDescriptor
import org.gradle.api.Plugin
import org.gradle.api.Project
import org.gradle.api.plugins.JavaPlugin
import org.gradle.api.plugins.JavaPlugin.PROCESS_RESOURCES_TASK_NAME
import org.gradle.api.tasks.TaskContainer
import org.gradle.language.jvm.tasks.ProcessResources
/**
* The base cartridge plugin applies all basic
* configuration and tasks to a cartridge project.
*/
open class CartridgePlugin : Plugin {
companion object {
const val CONFIGURATION_CARTRIDGE = "cartridge"
const val CONFIGURATION_CARTRIDGERUNTIME = "cartridgeRuntime"
/**
* checks if the specified name is available in the list of tasks.
*
* @param taskname the name of the new task
* @param tasks the task container self
*/
fun checkForTask(tasks: TaskContainer, taskname: String): Boolean {
return tasks.names.contains(taskname)
}
}
override fun apply(project: Project) {
with(project) {
with(rootProject) {
extensions.findByType(
IntershopExtension::class.java
) ?: extensions.create(
IntershopExtension.INTERSHOP_EXTENSION_NAME,
IntershopExtension::class.java
)
}
plugins.apply(JavaPlugin::class.java)
configureAddFileCreation( this)
}
}
private fun configureAddFileCreation(project: Project) {
with(project) {
val implementation = configurations.getByName(JavaPlugin.IMPLEMENTATION_CONFIGURATION_NAME)
val cartridge = configurations.maybeCreate(CONFIGURATION_CARTRIDGE)
cartridge.isTransitive = false
implementation.extendsFrom(cartridge)
val cartridgeRuntime = configurations.maybeCreate(CONFIGURATION_CARTRIDGERUNTIME)
cartridgeRuntime.extendsFrom(cartridge)
cartridgeRuntime.isTransitive = true
val prTask = project.tasks.named(PROCESS_RESOURCES_TASK_NAME, ProcessResources::class.java)
val taskWriteCartridgeDescriptor = project.tasks.register(WriteCartridgeDescriptor.DEFAULT_NAME,
WriteCartridgeDescriptor::class.java) { writeCartridgeDescriptor ->
writeCartridgeDescriptor.dependsOn(cartridge, cartridgeRuntime)
}
// ensure resulting dependency chain (simplified):
// assemble -> jar -> processResources -> writeCartridgeDescriptor
prTask.configure {
it.dependsOn(taskWriteCartridgeDescriptor)
it.from(taskWriteCartridgeDescriptor) { cs ->
cs.into("META-INF/${project.name}")
}
}
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy