This is an automated email from the ASF dual-hosted git repository.
dixitdeepak pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/ofbiz-framework.git
The following commit(s) were added to refs/heads/trunk by this push:
new adcde723ea Improved: Move REST-API dependencies from rest-api
build.gradle to dependencies.gradle (OFBIZ-13415)
adcde723ea is described below
commit adcde723eadc79514593b9b9817879ea5084f6f8
Author: Deepak Dixit <[email protected]>
AuthorDate: Tue Jun 16 13:14:41 2026 +0530
Improved: Move REST-API dependencies from rest-api build.gradle to
dependencies.gradle (OFBIZ-13415)
---
dependencies.gradle | 7 +++++++
docs/asciidoc/developer-manual.adoc | 4 ++++
framework/rest-api/build.gradle | 28 ----------------------------
3 files changed, 11 insertions(+), 28 deletions(-)
diff --git a/dependencies.gradle b/dependencies.gradle
index b890c4dac1..a0696c3c23 100644
--- a/dependencies.gradle
+++ b/dependencies.gradle
@@ -74,6 +74,13 @@ dependencies {
implementation 'org.springframework:spring-test:6.2.18'
implementation 'org.springframework:spring-web:6.2.18'
implementation 'com.fasterxml.jackson.core:jackson-databind:2.21.3'
+ implementation
'org.glassfish.jersey.containers:jersey-container-servlet:3.1.11'
+ implementation 'org.glassfish.jersey.inject:jersey-hk2:3.1.11'
+ implementation 'org.glassfish.jersey.media:jersey-media-multipart:3.1.11'
+ implementation
'org.glassfish.jersey.media:jersey-media-json-jackson:3.1.11'
+ implementation 'io.swagger.core.v3:swagger-jaxrs2:2.2.50'
+ implementation
'io.swagger.core.v3:swagger-jaxrs2-servlet-initializer:2.2.50'
+ implementation 'io.swagger.core.v3:swagger-annotations:2.2.50'
implementation 'oro:oro:2.0.8'
implementation 'wsdl4j:wsdl4j:1.6.3'
implementation 'com.auth0:java-jwt:4.5.2'
diff --git a/docs/asciidoc/developer-manual.adoc
b/docs/asciidoc/developer-manual.adoc
index 059ffca181..d058745023 100644
--- a/docs/asciidoc/developer-manual.adoc
+++ b/docs/asciidoc/developer-manual.adoc
@@ -229,6 +229,10 @@
include::applications/datamodel/DATAMODEL_CHANGES.adoc[leveloffset=+2]
A description of the service engine can be found at the
https://cwiki.apache.org/confluence/display/OFBIZ/Service+Engine+Guide[OFBiz
wiki Service Engine Guide]
+== REST API
+
+include::framework/rest-api/src/docs/asciidoc/rest-api.adoc[leveloffset=+1]
+
=== Declaration and Implementation
=== Supported languages
diff --git a/framework/rest-api/build.gradle b/framework/rest-api/build.gradle
deleted file mode 100644
index d9e14704fe..0000000000
--- a/framework/rest-api/build.gradle
+++ /dev/null
@@ -1,28 +0,0 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
-dependencies {
- pluginLibsCompile
'org.glassfish.jersey.containers:jersey-container-servlet:3.1.11'
- pluginLibsCompile 'org.glassfish.jersey.inject:jersey-hk2:3.1.11'
- pluginLibsCompile
'org.glassfish.jersey.media:jersey-media-multipart:3.1.11'
- pluginLibsCompile
'org.glassfish.jersey.media:jersey-media-json-jackson:3.1.11'
- pluginLibsCompile 'io.swagger.core.v3:swagger-jaxrs2:2.2.50'
- pluginLibsCompile
'io.swagger.core.v3:swagger-jaxrs2-servlet-initializer:2.2.50'
- pluginLibsCompile 'io.swagger.core.v3:swagger-annotations:2.2.50'
-}