@nx/gradle 21.6.0-canary.20250926-6480d3d → 21.6.0-canary.20250926-7f4a8ea

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nx/gradle",
3
- "version": "21.6.0-canary.20250926-6480d3d",
3
+ "version": "21.6.0-canary.20250926-7f4a8ea",
4
4
  "private": false,
5
5
  "description": "The Nx Plugin for Gradle allows Gradle tasks to be run through Nx",
6
6
  "repository": {
@@ -35,11 +35,11 @@
35
35
  "migrations": "./migrations.json"
36
36
  },
37
37
  "dependencies": {
38
- "@nx/devkit": "21.6.0-canary.20250926-6480d3d",
38
+ "@nx/devkit": "21.6.0-canary.20250926-7f4a8ea",
39
39
  "toml-eslint-parser": "^0.10.0"
40
40
  },
41
41
  "devDependencies": {
42
- "nx": "21.6.0-canary.20250926-6480d3d"
42
+ "nx": "21.6.0-canary.20250926-7f4a8ea"
43
43
  },
44
44
  "publishConfig": {
45
45
  "access": "public"
@@ -38,11 +38,12 @@ exports.createNodesV2 = [
38
38
  },
39
39
  ];
40
40
  const makeCreateNodesForGradleConfigFile = (projects, projectsCache = {}, externalNodes = {}) => async (gradleFilePath, options, context) => {
41
- if (process.env.VERCEL) {
42
- // Vercel does not allow JAVA_VERSION to be set
43
- // skip on Vercel
41
+ // Vercel does not allow JAVA_VERSION to be set, skip on Vercel
42
+ if (process.env.VERCEL)
43
+ return {};
44
+ // Netlify only supports Java 8 but we require 17, skip on Netlify
45
+ if (process.env.NETLIFY)
44
46
  return {};
45
- }
46
47
  const projectRoot = (0, node_path_1.dirname)(gradleFilePath);
47
48
  options = (0, gradle_plugin_options_1.normalizeOptions)(options);
48
49
  const hash = await (0, calculate_hash_for_create_nodes_1.calculateHashForCreateNodes)(projectRoot, options ?? {}, context);