4.0.0 org.mvndaemon.mvnd mvnd 0.4.3 pom Maven Daemon - Parent 2019 UTF-8 8 8 false 3.16.1 1.20 20.3.0 3.0.7 1.0 2.3.2 3.18.0 5.6.0 1.2.3 3.6.3 1.7.29 0.11.2 1.4 3.8.1 2.12.1 2.1.1 1.4.1 3.0 3.2.0 2.4 3.2.4 1.2.0 2.22.2 1.3.1 1.13.9 1.0.15 3.27.0-GA build-plugin agent helper common client daemon 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 io.takari.aether takari-local-repository ${takari-local-repository.version} 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-agent 0.4.3 org.mvndaemon.mvnd mvnd-client 0.4.3 org.mvndaemon.mvnd mvnd-common 0.4.3 org.mvndaemon.mvnd mvnd-dist pom 0.4.3 org.mvndaemon.mvnd mvnd-daemon 0.4.3 org.mvndaemon.mvnd mvnd-helper-agent 0.4.3 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 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.15 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 net.revelc.code impsort-maven-plugin ${impsort-maven-plugin.version} true true KEEP ${format.skip} 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 }