com.intershop.gradle.icm.docker.extension.Images.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of icm-docker-plugin Show documentation
Show all versions of icm-docker-plugin Show documentation
Intershop Commerce Management Plugins for Docker Integration
/*
* Copyright 2020 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.docker.extension
import org.gradle.api.model.ObjectFactory
import org.gradle.api.provider.Property
import javax.inject.Inject
/**
* Extension to configure images for ICM projects.
*/
open class Images @Inject constructor(objectFactory: ObjectFactory) {
val icmsetup: Property = objectFactory.property(String::class.java)
val webadapter: Property = objectFactory.property(String::class.java)
val webadapteragent: Property = objectFactory.property(String::class.java)
val solr: Property = objectFactory.property(String::class.java)
val zookeeper: Property = objectFactory.property(String::class.java)
val icmbase: Property = objectFactory.property(String::class.java)
val icminit: Property = objectFactory.property(String::class.java)
val mssqldb: Property = objectFactory.property(String::class.java)
val oracledb: Property = objectFactory.property(String::class.java)
val mailsrv: Property = objectFactory.property(String::class.java)
val testmailsrv: Property = objectFactory.property(String::class.java)
init {
icmbase.convention("docker.intershop.de/intershop/icm-as:latest")
icminit.convention("docker.intershop.de/intershop/icm-as-init:latest")
icmsetup.convention("intershophub/icm-base:8.282.3")
webadapter.convention("intershophub/icm-webadapter:2.0.20")
webadapteragent.convention("intershophub/icm-webadapteragent:3.0.8")
solr.convention("solr:latest")
zookeeper.convention("zookeeper:latest")
mssqldb.convention("intershophub/mssql-intershop:2019-latest")
oracledb.convention("intershophub/oracle-intershop:latest")
mailsrv.convention("mailhog/mailhog:latest")
testmailsrv.convention("docker-internal.rnd.intershop.de/icm-test/iste-mail:latest")
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy