This is an automated email from the ASF dual-hosted git repository.
neilcsmith pushed a commit to branch delivery
in repository https://gitbox.apache.org/repos/asf/netbeans.git
The following commit(s) were added to refs/heads/delivery by this push:
new a173c03c04 Keep using Groovy DSL for Gradle
new bc4d915b31 Merge pull request #6307 from
lkishalmi/gradle-keep-groovy-dsl
a173c03c04 is described below
commit a173c03c04c6450239419821fc7344069bc9858d
Author: Laszlo Kishalmi <[email protected]>
AuthorDate: Sun Aug 6 14:54:28 2023 -0700
Keep using Groovy DSL for Gradle
---
.../modules/gradle/java/newproject/SimpleApplicationProjectWizard.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/java/gradle.java/src/org/netbeans/modules/gradle/java/newproject/SimpleApplicationProjectWizard.java
b/java/gradle.java/src/org/netbeans/modules/gradle/java/newproject/SimpleApplicationProjectWizard.java
index d2ea0be046..f5ba6d5c55 100644
---
a/java/gradle.java/src/org/netbeans/modules/gradle/java/newproject/SimpleApplicationProjectWizard.java
+++
b/java/gradle.java/src/org/netbeans/modules/gradle/java/newproject/SimpleApplicationProjectWizard.java
@@ -65,7 +65,7 @@ public class SimpleApplicationProjectWizard extends
BaseGradleWizardIterator {
final File loc = (File)
params.get(CommonProjectActions.PROJECT_PARENT_FOLDER);
final File root = new File(loc, name);
- ops.createGradleInit(root,
type).basePackage(packageBase).projectName(name).add(); // NOI18N
+ ops.createGradleInit(root,
type).basePackage(packageBase).projectName(name).dsl("groovy").add(); // NOI18N
ops.addProjectPreload(root);
ops.addProjectPreload(new File(root, subFolder));
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]
For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists