4.0.0 org.mvndaemon.mvnd mvnd 0.5.3-SNAPSHOT pom Maven Daemon - Parent 2019 UTF-8 1.8 1.8 false 1.0.0 3.16.1 1.21 20.3.2 3.0.7 1.0 2.3.2 3.20.0 5.7.2 1.2.3 3.8.2 1.6.2 1.7.29 1.4 3.8.1 2.15.0 2.1.1 1.6.0 3.0 3.2.0 2.4 3.2.4 1.2.0 3.0.0-M5 1.3.2 1.13.9 1.0.15 3.27.0-GA build-plugin native agent helper common client daemon sync dist integration-tests scm:git:git@github.com:mvndaemon/mvnd.git scm:git:git@github.com:mvndaemon/mvnd.git https://github.com/mvndaemon/mvnd head ch.qos.logback logback-classic ${logback.version} org.slf4j slf4j-api ${slf4j.version} org.slf4j slf4j-simple ${slf4j.version} org.apache.commons commons-compress ${commons-compress.version} org.graalvm.sdk graal-sdk ${graalvm.version} org.codehaus.groovy groovy ${groovy.version} org.graalvm.nativeimage svm ${graalvm.version} org.junit junit-bom ${junit.jupiter.version} import pom jakarta.inject jakarta.inject-api ${jakarta.inject.version} org.apache.maven maven-model ${maven.version} org.apache.maven maven-embedder ${maven.version} org.apache.maven apache-maven tar.gz bin ${maven.version} org.assertj assertj-core ${assertj.version} org.mvndaemon.mvnd mvnd-native 0.5.3-SNAPSHOT org.mvndaemon.mvnd mvnd-agent 0.5.3-SNAPSHOT org.mvndaemon.mvnd mvnd-client 0.5.3-SNAPSHOT org.mvndaemon.mvnd mvnd-common 0.5.3-SNAPSHOT org.mvndaemon.mvnd mvnd-dist pom 0.5.3-SNAPSHOT org.mvndaemon.mvnd mvnd-daemon 0.5.3-SNAPSHOT org.mvndaemon.mvnd mvnd-helper-agent 0.5.3-SNAPSHOT org.jline jline-terminal ${jline.version} org.jline jline-terminal-jansi ${jline.version} org.fusesource.jansi jansi ${jansi.version} org.slf4j log4j-over-slf4j ${slf4j.version} org.slf4j jcl-over-slf4j ${slf4j.version} org.slf4j jul-to-slf4j ${slf4j.version} org.javassist javassist ${javassist.version} com.mycila license-maven-plugin ${license-maven-plugin.version} Copyright ${project.inceptionYear} the original author or authors. 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. **/*.adoc **/README.* **/.cache/** **/.gitkeep **/mvnd.properties.template **/m2.conf **/mvnd **/.mvn/maven.config .gitattributes/ .mvn/maven.config .mvn/wrapper/ LICENSE.txt NOTICE.txt mvnw mvnw.cmd pom.xml.versionsBackup **/*.so **/*.dll **/*.jnilib **/Makefile* **/docker/* SCRIPT_STYLE SLASHSTAR_STYLE SLASHSTAR_STYLE SCRIPT_STYLE SCRIPT_STYLE SCRIPT_STYLE APOSTROPHE_STYLE true true ca.vanzyl.provisio.maven.plugins provisio-maven-plugin ${takari-provisio.version} com.thoughtworks.xstream xstream 1.4.17 io.takari.maven.plugins takari-lifecycle-plugin ${takari-lifecycle.version} net.revelc.code.formatter formatter-maven-plugin ${formatter-maven-plugin.version} ${maven.multiModuleProjectDirectory}/build/eclipse-formatter-config.xml ${format.skip} KEEP ${project.build.directory}/cache net.revelc.code impsort-maven-plugin ${impsort-maven-plugin.version} true true KEEP ${format.skip} ${project.build.directory}/cache org.apache.maven.plugins maven-compiler-plugin ${compiler.version} org.apache.maven.plugins maven-failsafe-plugin ${surefire.version} org.apache.maven.plugins maven-surefire-plugin ${surefire.version} org.apache.maven.plugins maven-jar-plugin ${maven-jar-plugin.version} org.apache.maven.plugins maven-install-plugin ${maven-install-plugin.version} org.apache.maven.plugins maven-shade-plugin ${maven-shade-plugin.version} org.codehaus.gmaven groovy-maven-plugin ${groovy-maven-plugin.version} org.codehaus.groovy groovy-all ${groovy.version} pom org.codehaus.groovy groovy-testng org.codehaus.mojo mrm-maven-plugin ${mrm.version} org.codehaus.mojo buildnumber-maven-plugin ${buildnumber-maven-plugin.version} org.graalvm.nativeimage native-image-maven-plugin ${graalvm.version} com.mycila license-maven-plugin process-sources format net.revelc.code.formatter formatter-maven-plugin format format process-sources net.revelc.code impsort-maven-plugin sort-imports sort process-sources org.codehaus.gmaven groovy-maven-plugin set-platform-properties generate-sources execute // Naming conventions coined by GraalVM // https://github.com/graalvm/graalvm-ce-builds/releases/ String osName = System.getProperty('os.name').toLowerCase(Locale.ROOT) if (osName.startsWith('windows')) { project.properties['os.detected.name'] = 'windows' } else if (osName.startsWith('linux')) { project.properties['os.detected.name'] = 'linux' } else if (osName.startsWith('osx') || osName.startsWith('mac os x')) { project.properties['os.detected.name'] = 'darwin' } else { project.properties['os.detected.name'] = osName } String osArch = System.getProperty('os.arch').toLowerCase(Locale.ROOT) if (osArch.equals('amd64') || osArch.equals('x86_64')) { project.properties['os.detected.arch'] = 'amd64' } else { project.properties['os.detected.arch'] = osArch }