buildbot exception in on ofbizTrunkFrameworkPlugins

2020-08-07 Thread buildbot
The Buildbot has detected a build exception on builder 
ofbizTrunkFrameworkPlugins while building ofbiz-plugins. Full details are 
available at:
https://ci.apache.org/builders/ofbizTrunkFrameworkPlugins/builds/1605

Buildbot URL: https://ci.apache.org/

Buildslave for this Build: asf947_ubuntu

Build Reason: The AnyBranchScheduler scheduler named 'onTrunkPluginsCommit' 
triggered this build
Build Source Stamp: [branch trunk] 04b88091248f9c0d17a2ccb3f6ef4582ae29a758
Blamelist: Priya Sharma 

BUILD FAILED: exception javadoc upload test-results part 1

Sincerely,
 -The Buildbot





[ofbiz-framework] branch trunk updated: Improved: Updated tasks.checkstyleMain.maxErrors to 12224 ~(-54)

2020-08-07 Thread surajk
This is an automated email from the ASF dual-hosted git repository.

surajk 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 ad5ab72  Improved: Updated tasks.checkstyleMain.maxErrors to 12224 
~(-54)
ad5ab72 is described below

commit ad5ab7299ecc6d4a59d240ad993dba8a31c0c050
Author: Suraj Khurana 
AuthorDate: Fri Aug 7 19:04:51 2020 +0530

Improved: Updated tasks.checkstyleMain.maxErrors to 12224 ~(-54)
---
 build.gradle | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/build.gradle b/build.gradle
index 1a33d01..ed871bc 100644
--- a/build.gradle
+++ b/build.gradle
@@ -287,7 +287,7 @@ checkstyle {
 // the sum of errors found last time it was changed after using the
 // ‘checkstyle’ tool present in the framework and in the official
 // plugins.
-tasks.checkstyleMain.maxErrors = 12278
+tasks.checkstyleMain.maxErrors = 12224
 // Currently there are a lot of errors so we need to temporarily
 // hide them to avoid polluting the terminal output.
 showViolations = false



[ofbiz-framework] branch trunk updated: Improved: Removed unused imports from Java files for fixinf checkstyle errors

2020-08-07 Thread surajk
This is an automated email from the ASF dual-hosted git repository.

surajk 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 5dbf5cb  Improved: Removed unused imports from Java files for fixinf 
checkstyle errors
5dbf5cb is described below

commit 5dbf5cb9eb825fe229205443248e033c5db0b115
Author: Priya Sharma 
AuthorDate: Fri Aug 7 18:57:02 2020 +0530

Improved: Removed unused imports from Java files for fixinf checkstyle 
errors

(OFBIZ-11930)
Thanks: Priya Sharma
---
 .../java/org/apache/ofbiz/order/shoppingcart/ShoppingCartItem.java| 1 -
 .../main/java/org/apache/ofbiz/base/util/string/NodeELResolver.java   | 1 -
 .../service/src/main/java/org/apache/ofbiz/service/ServiceUtil.java   | 1 -
 .../src/main/java/org/apache/ofbiz/service/job/JobManager.java| 3 ---
 .../service/src/main/java/org/apache/ofbiz/service/job/JobPoller.java | 1 -
 .../src/main/java/org/apache/ofbiz/webapp/control/ControlFilter.java  | 1 -
 .../src/main/java/org/apache/ofbiz/webapp/webdav/RequestHandler.java  | 4 
 7 files changed, 12 deletions(-)

diff --git 
a/applications/order/src/main/java/org/apache/ofbiz/order/shoppingcart/ShoppingCartItem.java
 
b/applications/order/src/main/java/org/apache/ofbiz/order/shoppingcart/ShoppingCartItem.java
index 6018ded..cda6cf6 100644
--- 
a/applications/order/src/main/java/org/apache/ofbiz/order/shoppingcart/ShoppingCartItem.java
+++ 
b/applications/order/src/main/java/org/apache/ofbiz/order/shoppingcart/ShoppingCartItem.java
@@ -53,7 +53,6 @@ import org.apache.ofbiz.entity.util.EntityQuery;
 import org.apache.ofbiz.entity.util.EntityUtil;
 import org.apache.ofbiz.entity.util.EntityUtilProperties;
 import org.apache.ofbiz.order.order.OrderReadHelper;
-import org.apache.ofbiz.order.shoppingcart.ShoppingCart.ShoppingCartItemGroup;
 import org.apache.ofbiz.order.shoppingcart.product.ProductPromoWorker;
 import org.apache.ofbiz.order.shoppinglist.ShoppingListEvents;
 import org.apache.ofbiz.product.catalog.CatalogWorker;
diff --git 
a/framework/base/src/main/java/org/apache/ofbiz/base/util/string/NodeELResolver.java
 
b/framework/base/src/main/java/org/apache/ofbiz/base/util/string/NodeELResolver.java
index 6e212c3..2a66c38 100644
--- 
a/framework/base/src/main/java/org/apache/ofbiz/base/util/string/NodeELResolver.java
+++ 
b/framework/base/src/main/java/org/apache/ofbiz/base/util/string/NodeELResolver.java
@@ -23,7 +23,6 @@ import java.util.ArrayList;
 import java.util.Iterator;
 import java.util.List;
 
-import javax.el.CompositeELResolver;
 import javax.el.ELContext;
 import javax.el.ELResolver;
 import javax.el.PropertyNotWritableException;
diff --git 
a/framework/service/src/main/java/org/apache/ofbiz/service/ServiceUtil.java 
b/framework/service/src/main/java/org/apache/ofbiz/service/ServiceUtil.java
index a4fb855..d55c1e6 100644
--- a/framework/service/src/main/java/org/apache/ofbiz/service/ServiceUtil.java
+++ b/framework/service/src/main/java/org/apache/ofbiz/service/ServiceUtil.java
@@ -27,7 +27,6 @@ import java.util.Map;
 import java.util.TimeZone;
 
 import javax.servlet.http.HttpServletRequest;
-import javax.transaction.Transaction;
 
 import org.apache.ofbiz.base.util.Debug;
 import org.apache.ofbiz.base.util.UtilDateTime;
diff --git 
a/framework/service/src/main/java/org/apache/ofbiz/service/job/JobManager.java 
b/framework/service/src/main/java/org/apache/ofbiz/service/job/JobManager.java
index a85b07a..17908bf 100644
--- 
a/framework/service/src/main/java/org/apache/ofbiz/service/job/JobManager.java
+++ 
b/framework/service/src/main/java/org/apache/ofbiz/service/job/JobManager.java
@@ -28,7 +28,6 @@ import java.util.Date;
 import java.util.List;
 import java.util.Map;
 import java.util.concurrent.ConcurrentHashMap;
-import java.util.concurrent.RejectedExecutionException;
 
 import org.apache.ofbiz.base.config.GenericConfigException;
 import org.apache.ofbiz.base.util.Assert;
@@ -57,8 +56,6 @@ import 
org.apache.ofbiz.service.calendar.RecurrenceInfoException;
 import org.apache.ofbiz.service.config.ServiceConfigUtil;
 import org.apache.ofbiz.service.config.model.RunFromPool;
 
-import com.ibm.icu.util.Calendar;
-
 /**
  * Job manager. The job manager queues and manages jobs. Client code can queue 
a job to be run immediately
  * by calling the {@link #runJob(Job)} method, or schedule a job to be run 
later by calling the
diff --git 
a/framework/service/src/main/java/org/apache/ofbiz/service/job/JobPoller.java 
b/framework/service/src/main/java/org/apache/ofbiz/service/job/JobPoller.java
index 90fe414..8403476 100644
--- 
a/framework/service/src/main/java/org/apache/ofbiz/service/job/JobPoller.java
+++ 
b/framework/service/src/main/java/org/apache/ofbiz/service/job/JobPoller.java
@@ -28,7 +28,6 @@ import java.util.Map;
 import java.util.concurrent.BlockingQueue;
 import java.util.concurrent.ConcurrentHashMap;
 import 

[ofbiz-plugins] branch trunk updated: Improved: Removed unused imports from Java files for fixing checkstyle errors

2020-08-07 Thread surajk
This is an automated email from the ASF dual-hosted git repository.

surajk pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/ofbiz-plugins.git


The following commit(s) were added to refs/heads/trunk by this push:
 new 04b8809  Improved: Removed unused imports from Java files for fixing 
checkstyle errors
04b8809 is described below

commit 04b88091248f9c0d17a2ccb3f6ef4582ae29a758
Author: Priya Sharma 
AuthorDate: Fri Aug 7 18:55:50 2020 +0530

Improved: Removed unused imports from Java files for fixing checkstyle 
errors

(OFBIZ-11930)
Thanks: Priya Sharma
---
 bi/src/main/java/org/apache/ofbiz/bi/util/DimensionServices.java| 2 --
 lucene/src/main/java/org/apache/ofbiz/content/search/SearchEvents.java  | 2 --
 .../src/main/java/org/apache/ofbiz/content/search/SearchServices.java   | 2 --
 .../java/org/apache/ofbiz/webpos/transaction/WebPosTransaction.java | 2 --
 4 files changed, 8 deletions(-)

diff --git a/bi/src/main/java/org/apache/ofbiz/bi/util/DimensionServices.java 
b/bi/src/main/java/org/apache/ofbiz/bi/util/DimensionServices.java
index 062bfd2..5805028 100644
--- a/bi/src/main/java/org/apache/ofbiz/bi/util/DimensionServices.java
+++ b/bi/src/main/java/org/apache/ofbiz/bi/util/DimensionServices.java
@@ -18,8 +18,6 @@ under the License.
 */
 package org.apache.ofbiz.bi.util;
 
-import java.lang.Object;
-import java.lang.String;
 import java.text.SimpleDateFormat;
 import java.util.Calendar;
 import java.util.Date;
diff --git 
a/lucene/src/main/java/org/apache/ofbiz/content/search/SearchEvents.java 
b/lucene/src/main/java/org/apache/ofbiz/content/search/SearchEvents.java
index ac3d6cc..98be142 100644
--- a/lucene/src/main/java/org/apache/ofbiz/content/search/SearchEvents.java
+++ b/lucene/src/main/java/org/apache/ofbiz/content/search/SearchEvents.java
@@ -18,8 +18,6 @@
  
***/
 package org.apache.ofbiz.content.search;
 
-import java.lang.Object;
-import java.lang.String;
 import java.util.HashMap;
 import java.util.Map;
 import javax.servlet.http.HttpServletRequest;
diff --git 
a/lucene/src/main/java/org/apache/ofbiz/content/search/SearchServices.java 
b/lucene/src/main/java/org/apache/ofbiz/content/search/SearchServices.java
index f405330..0dfe4d1 100644
--- a/lucene/src/main/java/org/apache/ofbiz/content/search/SearchServices.java
+++ b/lucene/src/main/java/org/apache/ofbiz/content/search/SearchServices.java
@@ -18,8 +18,6 @@
  
***/
 package org.apache.ofbiz.content.search;
 
-import java.lang.Object;
-import java.lang.String;
 import java.util.List;
 import java.util.Locale;
 import java.util.Map;
diff --git 
a/webpos/src/main/java/org/apache/ofbiz/webpos/transaction/WebPosTransaction.java
 
b/webpos/src/main/java/org/apache/ofbiz/webpos/transaction/WebPosTransaction.java
index 7d48161..cd4df9f 100755
--- 
a/webpos/src/main/java/org/apache/ofbiz/webpos/transaction/WebPosTransaction.java
+++ 
b/webpos/src/main/java/org/apache/ofbiz/webpos/transaction/WebPosTransaction.java
@@ -24,8 +24,6 @@ import java.util.Iterator;
 import java.util.List;
 import java.util.Map;
 
-import groovy.transform.AnnotationCollector;
-import org.apache.commons.math3.analysis.solvers.AllowedSolution;
 import org.apache.ofbiz.base.util.Debug;
 import org.apache.ofbiz.base.util.GeneralException;
 import org.apache.ofbiz.base.util.UtilDateTime;