https://github.com/secugrow/java-archetype
https://github.com/secugrow/java-archetype
cucumber java selenium
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/secugrow/java-archetype
- Owner: secugrow
- License: mit
- Created: 2021-11-08T18:45:47.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2026-04-08T09:59:35.000Z (3 months ago)
- Last Synced: 2026-04-08T11:24:52.648Z (3 months ago)
- Topics: cucumber, java, selenium
- Language: Java
- Size: 1.01 MB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://github.com/secugrow/java-archetype/actions/workflows/generate_archetype_output.yml)
[](https://central.sonatype.com/artifact/io.secugrow/secugrow-java-archetype/versions)

# Let your Selenium Cucumber Project grow
### Java Edition
### Looking for the documentation how to use it after generating an project from this archetype?
[follow this link](src/main/resources/archetype-resources/README.md)
## How to generate a ready to start project with this archetype
This archetype will generate you a Selenium Cucumber Skeleton for your projects with your choosen packagenames
A ready to use showcase ca be cloned/downloaded/forked from https://github.com/secugrow/generated_java.
### Installation
Before being able to make use of the `archetype:generate` command, the project has to be built from its root directory
via `mvn install`. This will result in a jar being copied to your local maven-repo.
OR
copy a jar from releases to your local maven repository in the correct path:
/.m2/repository/io/secugrow/secugrow-java-archetype//secugrow-java-archetype-.jar
OR
using a release archetype from a maven repository
You're all set - feel free to use the archetype.
## Use this archetype to generate a project
mvn archetype:generate \
-DarchetypeArtifactId=secugrow-java-archetype \
-DarchetypeGroupId=io.secugrow \
-DarchetypeVersion=1.9.1 \
-DgroupId= \
-DartifactId= \
-DinteractiveMode=false
example
mvn archetype:generate \
-DarchetypeArtifactId=secugrow-java-archetype \
-DarchetypeGroupId=io.secugrow \
-DarchetypeVersion=1.9.1 \
-DgroupId=io.secugrow.demo \
-DartifactId=fromArchetype \
-DinteractiveMode=false