Skip to content

Latest commit

 

History

History
64 lines (41 loc) · 1.56 KB

README.md

File metadata and controls

64 lines (41 loc) · 1.56 KB

ADempiere Template Project

Fill it with a comment about project.

Requirements

Packages Names

you should change the follows packages for your own implementation, just change the word template by your implementation

org.spin.template.model.validator
org.spin.template.setup
org.spin.template.util

Model Validators

Change the org.spin.template.model.validator.Validator by your implementation, example: org.spin.template.model.validator.MyOwnFunctionality

Model Deploy class

Change the org.spin.template.setup.Deploy by your implementation, example: org.spin.template.setup.MyOwnSetupForDeploy

Model Util class for core changes

Change the org.spin.template.util.Changes by your implementation, example: org.spin.template.util.MyOwnChanges

Binary Project

You can get all binaries from github here.

All contruction is from github actions

Some XML's:

All dictionary changes are writing from XML and all XML's hare xml/migration

How to add this library?

Is very easy.

  • Gradle
implementation 'io.github.adempiere:adempiere-template-project:1.0.0'
  • SBT
libraryDependencies += "io.github.adempiere" % "adempiere-template-project" % "1.0.0"
  • Apache Maven
<dependency>
    <groupId>io.github.adempiere</groupId>
    <artifactId>adempiere-template-project</artifactId>
    <version>1.0.0</version>
</dependency>