@nx/maven 22.6.0-rc.2 → 22.6.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -50,7 +50,7 @@ function isMaven4(workspaceRoot) {
50
50
  function detectMavenExecutable(workspaceRoot) {
51
51
  // First priority: Check for Maven Daemon
52
52
  try {
53
- (0, child_process_1.execSync)('mvnd --version', { stdio: 'pipe' });
53
+ (0, child_process_1.execSync)('mvnd --version', { stdio: 'pipe', windowsHide: true });
54
54
  devkit_1.logger.verbose(`[Maven] Found Maven Daemon, using: mvnd`);
55
55
  return 'mvnd';
56
56
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nx/maven",
3
- "version": "22.6.0-rc.2",
3
+ "version": "22.6.1",
4
4
  "private": false,
5
5
  "description": "Nx plugin for Maven integration",
6
6
  "repository": {
@@ -46,7 +46,7 @@
46
46
  "author": "Victor Savkin",
47
47
  "license": "MIT",
48
48
  "dependencies": {
49
- "@nx/devkit": "22.6.0-rc.2",
49
+ "@nx/devkit": "22.6.1",
50
50
  "@xmldom/xmldom": "^0.8.10",
51
51
  "tslib": "^2.3.0"
52
52
  },
@@ -56,7 +56,7 @@
56
56
  "@types/xmldom": "^0.1.34",
57
57
  "jest": "^30.0.2",
58
58
  "memfs": "^4.9.2",
59
- "nx": "22.6.0-rc.2",
59
+ "nx": "22.6.1",
60
60
  "ts-jest": "^29.4.0",
61
61
  "typescript": "~5.9.2"
62
62
  },