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 2a115c38b1 Revert "Improved: Move REST-API dependencies from rest-api
build.gradle to dependencies.gradle (OFBIZ-13415)"
2a115c38b1 is described below
commit 2a115c38b18c2f19f621562003ebfc2adc56e1d1
Author: Deepak Dixit <[email protected]>
AuthorDate: Tue Jun 16 12:24:55 2026 +0530
Revert "Improved: Move REST-API dependencies from rest-api build.gradle to
dependencies.gradle (OFBIZ-13415)"
This reverts commit f204975850687540eeb6b29b76dd77248a7c78f2.
---
dependencies.gradle | 7 -------
framework/rest-api/build.gradle | 28 ++++++++++++++++++++++++++++
2 files changed, 28 insertions(+), 7 deletions(-)
diff --git a/dependencies.gradle b/dependencies.gradle
index a0696c3c23..b890c4dac1 100644
--- a/dependencies.gradle
+++ b/dependencies.gradle
@@ -74,13 +74,6 @@ 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/framework/rest-api/build.gradle b/framework/rest-api/build.gradle
new file mode 100644
index 0000000000..d9e14704fe
--- /dev/null
+++ b/framework/rest-api/build.gradle
@@ -0,0 +1,28 @@
+/*
+ * 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'
+}