gradle-archetype-plugin icon indicating copy to clipboard operation
gradle-archetype-plugin copied to clipboard

Gradle plugin that creates projects from your own cookiecutter

Results 14 gradle-archetype-plugin issues
Sort by recently updated
recently updated
newest added

@packageName@ variables not being substituted for annotations. ` @ComponentScan("@packageName") public class ExampleConfig{ } ` I see this error in the console. ` GStringTemplateScript78500.groovy: 18: Unexpected character: '"' @ line 18,...

If I have empty directories in my template, these are not included in the output to the generated directory. e.g. with the following template structure: ``` src/main/resources/templates/src/main/resources/common/log4j2.xml src/main/resources/templates/src/main/resources/dev ``` the...

Using version 1.4.8. Custom properties that are being loaded via bindingsToPrompt are not being resolved in template files.

I clone the project and navigate to **/gradle-archetype-plugin/src/test/resources/sampl**e. When I execute **'gradle cleanArch generate -i'** command, I receive the error: ```sh Initialized native services in: /home/daniloalexandre/.gradle/native The client will now...

Hello ... When running over files that contain \n or \r, the generator automatically converts them into actual new lines. This is unwanted behaviour and can break files that depend...

Hello, I have noticed that "com.orctom.archetype" version "1.4.7" changes the content of a template file (*.java or *.gradle) which is outside of a defined binding. As soon as the file...

Right now, when some token cannot be expanded, only an ERROR is logged: https://github.com/orctom/gradle-archetype-plugin/blob/master/src/main/groovy/com/orctom/gradle/archetype/util/FileUtils.groovy#L128 This might easily be missed by the users, producing a file where no tokens are expanded...

When I run the plugin with Gradle 6.0.1 (./gradlew --warnings-mode all cleanArchetype), I receive the following warning: > Task :cleanArchetype Property 'description' is not annotated with an input or output...

Items in my .nontemplates file seem to be ignored, as the plugin attempts to interpret files, including files in the gradle directory as templates. Details are below. **environment:** ``` $...

I would like to create a GAE project template, but I use and gradle ReplaceTokens to replace some of the the deployment params in the appengine-web.xml: ```xml @appName@ @appVersion@ serviceModule...