com.intershop.gradle.icm.utils.PackageUtil.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
/*
* 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.utils
import com.intershop.gradle.icm.extension.FilePackage
import org.gradle.api.Project
import org.gradle.api.artifacts.ExternalModuleDependency
import org.gradle.api.file.CopySpec
import org.gradle.api.file.DuplicatesStrategy
import org.gradle.api.internal.artifacts.ivyservice.DefaultLenientConfiguration
import java.io.File
/**
* This object provides methods to handle
* dependencies for packages.
*/
object PackageUtil {
fun downloadPackage(project: Project, dependency: String, classifier: String): File? {
val dependencyHandler = project.dependencies
val dep = dependencyHandler.create(dependency) as ExternalModuleDependency
dep.artifact {
it.name = dep.name
it.classifier = classifier
it.extension = "zip"
it.type = "zip"
}
val configuration = project.configurations.detachedConfiguration(dep)
configuration.setVisible(false)
.setTransitive(false)
.setDescription("$classifier for package download: $dependency")
.defaultDependencies { ds ->
ds.add(dep)
}
try {
val files = configuration.resolve()
return files.first()
} catch (anfe: DefaultLenientConfiguration.ArtifactResolveException) {
project.logger.warn("No package '{}' is available for {}!", classifier, dependency)
}
return null
}
private fun addSpecConfig(cs: CopySpec, pkg: FilePackage) {
with(pkg) {
excludes.get().forEach {
cs.exclude(it)
}
includes.get().forEach {
cs.include(it)
}
if (targetPath.isPresent && ! targetPath.get().isNullOrEmpty()) {
cs.into(targetPath)
}
if (duplicateStrategy.isPresent && duplicateStrategy.get() != DuplicatesStrategy.INHERIT) {
cs.duplicatesStrategy = duplicateStrategy.get()
}
}
}
fun addPackageToCS(project: Project,
dependency: String,
classifier: String,
copySpec: CopySpec,
filePackage: FilePackage,
excludes: List,
fileBase: File?) {
val file = fileBase ?: downloadPackage(project, dependency, classifier)
if(file != null) {
val pkgCS = project.copySpec()
if(file.isDirectory) {
pkgCS.from(file)
} else {
pkgCS.from(project.zipTree(file))
}
addSpecConfig(pkgCS, filePackage)
if(excludes.isNotEmpty()) {
pkgCS.exclude(*excludes.toTypedArray())
}
copySpec.with(pkgCS)
} else {
project.logger.debug("No package '{}' available for dependency {}", classifier, dependency)
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy