Skip to content

Commit

Permalink
feat: ADempiere Projects with additional features
Browse files Browse the repository at this point in the history
  • Loading branch information
EdwinBetanc0urt committed Mar 25, 2024
1 parent 9008593 commit ee96ee7
Showing 1 changed file with 23 additions and 14 deletions.
37 changes: 23 additions & 14 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
apply plugin: 'java'
apply plugin: 'war'
//apply plugin: "org.gretty"
// Provide convenience executables for trying out the examples.
apply plugin: 'application'
// Generate Visual Studio Code .vscode & .json project files
apply plugin: "visual-studio"
plugins {
id 'java'
id 'war'
// id "org.gretty"
// Provide convenience executables for trying out the examples.
id 'application'
// Generate Visual Studio Code .vscode & .json project files
id "visual-studio"
}

buildscript {
repositories {
Expand Down Expand Up @@ -32,9 +34,11 @@ repositories {
}

sourceCompatibility = 1.11

def baseVersion = '3.9.4'
def baseGroupId = 'io.github.adempiere'
def customBaseVersion = "adempiere-3.9.4"

dependencies {
implementation fileTree(
dir: 'lib',
Expand Down Expand Up @@ -70,12 +74,7 @@ dependencies {
implementation "${baseGroupId}:telegram-notifier:${baseVersion}"
implementation "${baseGroupId}:tools:${baseVersion}"
implementation "${baseGroupId}:jasperreports:${baseVersion}"

implementation "${baseGroupId}:adempiere-business-processors:1.0.9"
implementation "${baseGroupId}:adempiere-jwt-token:1.0.2"
implementation "${baseGroupId}:adempiere-dashboard-improvements:1.0.7"
implementation "${baseGroupId}:adempiere-pos-improvements:1.0.0"
implementation "${baseGroupId}:adempiere-kafka-connector:1.0.0"

// ADempiere External Libraries
implementation 'com.github.jjYBdx4IL:ecs:1.4.2.1'
implementation 'org.telegram:telegrambots:6.0.1'
Expand Down Expand Up @@ -137,6 +136,16 @@ dependencies {
implementation group: 'org.beanshell', name: 'bsh', version: '2.0b5'
// ZK
//implementation 'org.zkoss.zk:zk:3.6.3'

// ADempiere Projects with additional features
// Dashboard Improvements
implementation "${baseGroupId}:adempiere-dashboard-improvements:1.0.8"
// Point Of Sales Improvements
implementation "${baseGroupId}:adempiere-pos-improvements:1.0.2"
// Business Processors (To Task's and Schedulers)
implementation "${baseGroupId}:adempiere-business-processors:1.1.0"
// Engine as Queue
implementation "${baseGroupId}:adempiere-kafka-connector:1.1.4"
// Third part access using JWT
implementation "${baseGroupId}:adempiere-jwt-token:1.0.2"
// https://mvnrepository.com/artifact/com.nimbusds/oauth2-oidc-sdk
Expand All @@ -149,7 +158,7 @@ dependencies {
implementation 'net.minidev:json-smart:2.4.8'
// https://mvnrepository.com/artifact/net.minidev/accessors-smart
implementation 'net.minidev:accessors-smart:2.4.8'
// Temporary projects
// Temporary projects
// Keycloak and Okta connector (Open-ID based)
implementation "${baseGroupId}:adempiere-open-id-connector:1.0.0"
}
Expand Down

0 comments on commit ee96ee7

Please sign in to comment.