VM-Operator/build.gradle

27 lines
635 B
Groovy
Raw Normal View History

2023-06-05 10:50:00 +02:00
buildscript {
repositories {
gradlePluginPortal()
}
dependencies {
classpath 'org.ajoberstar.grgit:grgit-gradle:4.1.0'
classpath 'org.ajoberstar:gradle-git-publish:3.0.0'
}
}
2023-05-23 21:38:32 +02:00
plugins {
2023-06-05 10:50:00 +02:00
id 'pl.allegro.tech.build.axion-release' version '1.15.0' apply false
id 'org.jdrupes.vmoperator.java-doc-conventions'
2023-05-23 21:38:32 +02:00
id 'eclipse'
}
2023-06-05 10:50:00 +02:00
project.group = 'org.jdrupes.vmoperator'
2023-05-23 21:38:32 +02:00
eclipse {
project {
file {
project.natures += 'org.eclipse.buildship.core.gradleprojectnature'
project.buildCommand 'org.eclipse.buildship.core.gradleprojectbuilder'
}
}
}