Skip to content

Commit

Permalink
Update base libraries
Browse files Browse the repository at this point in the history
  • Loading branch information
yamelsenih committed Apr 19, 2024
1 parent 205e556 commit a5bb2ea
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 8 deletions.
11 changes: 11 additions & 0 deletions .settings/org.eclipse.buildship.core.prefs
Original file line number Diff line number Diff line change
@@ -1,2 +1,13 @@
arguments=--init-script /home/yamel/.config/Code/User/globalStorage/redhat.java/1.23.0/config_linux/org.eclipse.osgi/55/0/.cp/gradle/init/init.gradle --init-script /home/yamel/.config/Code/User/globalStorage/redhat.java/1.23.0/config_linux/org.eclipse.osgi/55/0/.cp/gradle/protobuf/init.gradle
auto.sync=false
build.scans.enabled=false
connection.gradle.distribution=GRADLE_DISTRIBUTION(VERSION(8.0.2))
connection.project.dir=
eclipse.preferences.version=1
gradle.user.home=
java.home=/usr/lib/jvm/java-11-openjdk-amd64
jvm.arguments=
offline.mode=false
override.workspace.settings=true
show.console.view=true
show.executions.view=true
12 changes: 6 additions & 6 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
plugins {
id 'java'
id 'com.google.protobuf' version '0.9.2'
id 'com.google.protobuf' version '0.9.4'
id 'idea'
id 'application'
id 'visual-studio'
}
group 'com.nikhilm'
sourceCompatibility = 1.11
def grpcVersion = '1.53.0'
def grpcVersion = '1.62.2'
def baseVersion = '3.9.4'
def baseGroupId = 'io.github.adempiere'
def privateDependencyBaseVersion = "adempiere-3.9.4"
Expand Down Expand Up @@ -116,13 +116,13 @@ dependencies {
)
implementation "io.grpc:grpc-netty-shaded:${grpcVersion}"
implementation "io.grpc:grpc-alts:${grpcVersion}"
implementation "io.netty:netty-handler:4.1.89.Final"
implementation "io.netty:netty-handler:4.1.107.Final"
implementation "io.grpc:grpc-protobuf:${grpcVersion}"
implementation "io.grpc:grpc-stub:${grpcVersion}"
implementation "io.grpc:grpc-netty:${grpcVersion}"
// https://mvnrepository.com/artifact/com.google.protobuf/protobuf-java
implementation 'com.google.protobuf:protobuf-java:3.24.3'
implementation 'com.google.protobuf:protobuf-java-util:3.24.3'
implementation 'com.google.protobuf:protobuf-java:3.25.3'
implementation 'com.google.protobuf:protobuf-java-util:3.25.3'
implementation 'io.jsonwebtoken:jjwt-api:0.11.2'
implementation 'io.jsonwebtoken:jjwt-impl:0.11.2'
implementation 'io.jsonwebtoken:jjwt-jackson:0.11.2'
Expand All @@ -133,7 +133,7 @@ dependencies {
implementation 'com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.15.0'
// ADempiere Core
implementation "${baseGroupId}:base:${baseVersion}"
implementation "${baseGroupId}:adempiere-grpc-utils:1.1.2"
implementation "${baseGroupId}:adempiere-grpc-utils:1.3.6"
implementation "${baseGroupId}:adempiere-business-processors:1.1.0"
// Others
compileOnly 'org.apache.tomcat:annotations-api:6.0.53'
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/spin/processor/service/Converter.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
import org.compiere.util.Env;
import org.compiere.util.Msg;
import org.spin.proto.processor.ProcessorLog;
import org.spin.service.grpc.util.ValueManager;
import org.spin.service.grpc.util.value.ValueManager;

/**
* Class for convert any document
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/spin/processor/service/Service.java
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
import org.spin.eca46.process.WorkflowProcessor;
import org.spin.proto.processor.ProcessorLog;
import org.spin.proto.processor.RunProcessorResponse;
import org.spin.service.grpc.util.ValueManager;
import org.spin.service.grpc.util.value.ValueManager;

public class Service {

Expand Down

0 comments on commit a5bb2ea

Please sign in to comment.