Skip to content

Commit

Permalink
Update builder
Browse files Browse the repository at this point in the history
  • Loading branch information
yamelsenih committed Dec 9, 2024
1 parent 5c39470 commit 4058245
Showing 1 changed file with 13 additions and 7 deletions.
20 changes: 13 additions & 7 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,18 @@ repositories {
mavenCentral()
maven {
// Adempiere GitHub Organization
url = findProperty("deployRepository") ?: System.properties['deploy.repository'] ?: System.getenv("GITHUB_DEPLOY_REPOSITORY") ?: 'https://maven.pkg.github.com/adempiere/adempiere'
url = 'https://maven.pkg.github.com/solop-develop/adempiere-solop'
credentials {
// project property, system property, enviroment variable
// project property, system properrty, enviroment variable
username = findProperty("deployUsername") ?: System.properties['deploy.user'] ?: System.getenv("GITHUB_DEPLOY_USER")
password = findProperty("deployToken") ?: System.properties['deploy.token'] ?: System.getenv("GITHUB_DEPLOY_TOKEN")
}
}
maven {
// Adempiere GitHub Organization
url = 'https://maven.pkg.github.com/adempiere/adempiere'
credentials {
// project property, system properrty, enviroment variable
username = findProperty("deployUsername") ?: System.properties['deploy.user'] ?: System.getenv("GITHUB_DEPLOY_USER")
password = findProperty("deployToken") ?: System.properties['deploy.token'] ?: System.getenv("GITHUB_DEPLOY_TOKEN")
}
Expand Down Expand Up @@ -162,11 +171,8 @@ dependencies {
//implementation 'com.sun.xml.bind:jaxb-core:3.0.0-M4'
//implementation 'javax.activation:activation:1.1.1'
implementation 'com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.17.2'

// ADempiere Core
implementation "${baseGroupId}:base:${baseVersion}"
implementation "${baseGroupId}:adempiere-grpc-utils:1.5.6"
implementation "${baseGroupId}:adempiere-business-processors:1.1.8"
// Others
compileOnly 'org.apache.tomcat:annotations-api:6.0.53'
// ADempiere Core + Patches + Features
implementation "com.solop:adempiere.solop_libs:3.9.4.001-spuy-0.0.1-rc-14"
}

0 comments on commit 4058245

Please sign in to comment.