org.devocative:dmodule-archetype

A Maven archetype to create initial project for a DModule

License

License

GroupId

GroupId

org.devocative
ArtifactId

ArtifactId

dmodule-archetype
Last Version

Last Version

1.0
Release Date

Release Date

Type

Type

jar
Description

Description

org.devocative:dmodule-archetype
A Maven archetype to create initial project for a DModule
Project URL

Project URL

https://github.com/mbizhani/DModuleArchetype
Source Code Management

Source Code Management

https://github.com/mbizhani/DModuleArchetype.git

Download dmodule-archetype

How to add to project

<!-- https://jarcasting.com/artifacts/org.devocative/dmodule-archetype/ -->
<dependency>
    <groupId>org.devocative</groupId>
    <artifactId>dmodule-archetype</artifactId>
    <version>1.0</version>
</dependency>
// https://jarcasting.com/artifacts/org.devocative/dmodule-archetype/
implementation 'org.devocative:dmodule-archetype:1.0'
// https://jarcasting.com/artifacts/org.devocative/dmodule-archetype/
implementation ("org.devocative:dmodule-archetype:1.0")
'org.devocative:dmodule-archetype:jar:1.0'
<dependency org="org.devocative" name="dmodule-archetype" rev="1.0">
  <artifact name="dmodule-archetype" type="jar" />
</dependency>
@Grapes(
@Grab(group='org.devocative', module='dmodule-archetype', version='1.0')
)
libraryDependencies += "org.devocative" % "dmodule-archetype" % "1.0"
[org.devocative/dmodule-archetype "1.0"]

Dependencies

There are no dependencies for this project. It is a standalone project that does not depend on any other jars.

Project Modules

There are no modules declared in this project.

DModuleArchetype

Maven Central

A Maven archetype to create initial project for a DModule

Just execute the following command:

mvn -B archetype:generate \
	-DarchetypeGroupId=org.devocative \
	-DarchetypeArtifactId=dmodule-archetype \
	-DarchetypeVersion=1.0 \
	-DgroupId=? \
	-DartifactId=? \
	-Dversion=1.0-SNAPSHOT \
	-Dpackage=? \
	-DModuleName=? \
	-DModuleShortName=?

Note: the value for ModuleShortName must be in capital form, and exactly have length of 3 characters!

This is the command for Store example:

mvn -B archetype:generate \
	-DarchetypeGroupId=org.devocative \
	-DarchetypeArtifactId=dmodule-archetype \
	-DarchetypeVersion=1.0 \
	-DgroupId=my.pkg \
	-DartifactId=store \
	-Dversion=1.0-SNAPSHOT \
	-Dpackage=my.pkg.store \
	-DModuleName=Store \
	-DModuleShortName=STR

Versions

Version
1.0