UNPKG

@nxrocks/common-jvm

Version:

Common library to share code among the JVM-related plugins.

13 lines 756 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.GRADLE_WRAPPER_EXECUTABLE = exports.MAVEN_WRAPPER_EXECUTABLE_LEGACY = exports.MAVEN_WRAPPER_EXECUTABLE = exports.GRADLE_EXECUTABLE = exports.MAVEN_EXECUTABLE = void 0; const common_1 = require("@nxrocks/common"); exports.MAVEN_EXECUTABLE = 'mvn'; exports.GRADLE_EXECUTABLE = 'gradle'; exports.MAVEN_WRAPPER_EXECUTABLE = common_1.IS_WINDOWS ? 'mvnw.cmd' : './mvnw'; // previous versions of the wrapper were using '.bat' extension for Windows executable exports.MAVEN_WRAPPER_EXECUTABLE_LEGACY = common_1.IS_WINDOWS ? 'mvnw.bat' : './mvnw'; exports.GRADLE_WRAPPER_EXECUTABLE = common_1.IS_WINDOWS ? 'gradlew.bat' : './gradlew'; //# sourceMappingURL=constants.js.map