Page 1 of 1

SEO Module error

Posted: Thu Aug 22, 2013 2:05 am
by hiteshsingla
Hi,
I am able to add SEO module in my project. In Admin while adding new MyproductImpl, we got four new field under SEO Properties:

Seo_Meta_Description
Seo_Meta _Keywords
Seo_Meta_Robot
Seo_Title_fragment

Now i am trying to add new product after submitting i am getting following error:

//EX[2,1,["org.broadleafcommerce.common.exception.ServiceException/1744595097","Unable to add entity for com.mycompany.core.catalog.domain.MyProductImpl"],0,7

MyproductImpl file look like this:

Code: Select all

 package com.mycompany.core.catalog.domain;

    import org.broadleafcommerce.core.catalog.domain.Product;
    import org.broadleafcommerce.core.catalog.domain.ProductImpl;
    import org.broadleafcommerce.seo.domain.catalog.SeoMetaData;
    import org.broadleafcommerce.seo.domain.catalog.SeoMetaDataImpl;
    import org.broadleafcommerce.seo.domain.catalog.TwitterData;
    import org.broadleafcommerce.seo.domain.catalog.TwitterDataImpl;

    import javax.persistence.Embedded;
    import javax.persistence.Entity;
    import javax.persistence.Inheritance;
    import javax.persistence.InheritanceType;
    import javax.persistence.Table;
    import javax.annotation.Nullable;

    @Entity
    @Inheritance(strategy = InheritanceType.JOINED)
    @Table(name = "SEO_PRODUCT")
    public abstract class MyProductImpl extends ProductImpl implements Product, SeoMetaData, TwitterData
    {
       
       protected void initializeSeoMetaData(){
           if(seoMetaData == null){
               seoMetaData = new SeoMetaDataImpl();
           }
       }
       
       @Override
       @Nullable
       public String getMetaKeywords() {
           initializeSeoMetaData();
           return seoMetaData.getMetaKeywords();
       }
       
    private static final long serialVersionUID = 1L;
       
       @Embedded
       protected SeoMetaDataImpl seoMetaData = new SeoMetaDataImpl();

       @Embedded
       protected TwitterData embeddableTwitterData = new TwitterDataImpl();
    }


Re: SEO Module error

Posted: Thu Aug 22, 2013 8:32 am
by phillipuniverse
Usually these errors have a stack trace to go with them in the server logs. Could you paste that?

Re: SEO Module error

Posted: Thu Aug 22, 2013 11:00 am
by hiteshsingla
Hi ,

Thanks for quick response.we are getting following output when running admin

Code: Select all

Buildfile: C:\Documents and Settings\Arun\Desktop\eclipse-workspace\DemoSite\admin\build.xml
jetty-demo-jrebel:
[artifact:mvn] 2013-08-22 20:58:28 JRebel:
[artifact:mvn] 2013-08-22 20:58:28 JRebel: A newer version '5.3.1' is available for download
[artifact:mvn] 2013-08-22 20:58:28 JRebel: from http://zeroturnaround.com/software/jrebel/download/
[artifact:mvn] 2013-08-22 20:58:28 JRebel:
[artifact:mvn] Listening for transport dt_socket at address: 8001
[artifact:mvn] 2013-08-22 20:58:29 JRebel: Contacting myJRebel server ..
[artifact:mvn] 2013-08-22 20:58:37 JRebel:
[artifact:mvn] 2013-08-22 20:58:37 JRebel: #############################################################
[artifact:mvn] 2013-08-22 20:58:37 JRebel:
[artifact:mvn] 2013-08-22 20:58:37 JRebel:  JRebel 5.3.0 (201305281348)
[artifact:mvn] 2013-08-22 20:58:37 JRebel:  (c) Copyright ZeroTurnaround OU, Estonia, Tartu.
[artifact:mvn] 2013-08-22 20:58:37 JRebel:
[artifact:mvn] 2013-08-22 20:58:37 JRebel:  Over the last 30 days JRebel prevented
[artifact:mvn] 2013-08-22 20:58:37 JRebel:  at least 163 redeploys/restarts saving you about 6.6 hours.
[artifact:mvn] 2013-08-22 20:58:37 JRebel:
[artifact:mvn] 2013-08-22 20:58:37 JRebel:  This product is licensed to Boss DK
[artifact:mvn] 2013-08-22 20:58:37 JRebel:
[artifact:mvn] 2013-08-22 20:58:37 JRebel:  License acquired through myJRebel server.
[artifact:mvn] 2013-08-22 20:58:37 JRebel:
[artifact:mvn] 2013-08-22 20:58:37 JRebel:  You are subscribed for the plan "JRebel Social Plan",
[artifact:mvn] 2013-08-22 20:58:37 JRebel:  subscription is for lifetime.
[artifact:mvn] 2013-08-22 20:58:37 JRebel:  next license check with the server is required by 2013-08-23.
[artifact:mvn] 2013-08-22 20:58:37 JRebel:
[artifact:mvn] 2013-08-22 20:58:37 JRebel:  The following plugins are disabled at the moment:
[artifact:mvn] 2013-08-22 20:58:37 JRebel:  * ADF Core plugin (set -Drebel.adf_core_plugin=true to enable)
[artifact:mvn] 2013-08-22 20:58:37 JRebel:  * ADF Faces plugin (set -Drebel.adf_faces_plugin=true to enable)
[artifact:mvn] 2013-08-22 20:58:37 JRebel:  * Camel plugin (set -Drebel.camel_plugin=true to enable)
[artifact:mvn] 2013-08-22 20:58:37 JRebel:  * Click plugin (set -Drebel.click_plugin=true to enable)
[artifact:mvn] 2013-08-22 20:58:37 JRebel:  * Eclipse Plugin (set -Drebel.eclipse_plugin=true to enable)
[artifact:mvn] 2013-08-22 20:58:37 JRebel:  * JRuby Plugin (set -Drebel.jruby_plugin=true to enable)
[artifact:mvn] 2013-08-22 20:58:37 JRebel:  * Jersey plugin (set -Drebel.jersey_plugin=true to enable)
[artifact:mvn] 2013-08-22 20:58:37 JRebel:  * Log4j2 plugin (set -Drebel.log4j2_plugin=true to enable)
[artifact:mvn] 2013-08-22 20:58:37 JRebel:  * Mustache Plugin (set -Drebel.mustache_plugin=true to enable)
[artifact:mvn] 2013-08-22 20:58:37 JRebel:  * RESTlet plugin (set -Drebel.restlet_plugin=true to enable)
[artifact:mvn] 2013-08-22 20:58:37 JRebel:  * Seam-Wicket plugin (set -Drebel.seam_wicket_plugin=true to enable)
[artifact:mvn] 2013-08-22 20:58:37 JRebel:  * Spring Data Plugin (set -Drebel.spring_data_plugin=true to enable)
[artifact:mvn] 2013-08-22 20:58:37 JRebel:  * Thymeleaf Plugin (set -Drebel.thymeleaf_plugin=true to enable)
[artifact:mvn] 2013-08-22 20:58:37 JRebel:  * VRaptor plugin (set -Drebel.vraptor_plugin=true to enable)
[artifact:mvn] 2013-08-22 20:58:37 JRebel:  * Vaadin CDI utils plugin (set -Drebel.vaadin_cdiutils_plugin=true to enable)
[artifact:mvn] 2013-08-22 20:58:37 JRebel:  * WebObjects plugin (set -Drebel.webobjects_plugin=true to enable)
[artifact:mvn] 2013-08-22 20:58:37 JRebel:
[artifact:mvn] 2013-08-22 20:58:37 JRebel: #############################################################
[artifact:mvn] 2013-08-22 20:58:37 JRebel:
[artifact:mvn] [INFO] Scanning for projects...
[artifact:mvn] [INFO]                                                                         
[artifact:mvn] [INFO] ------------------------------------------------------------------------
[artifact:mvn] [INFO] Building admin 1.0
[artifact:mvn] [INFO] ------------------------------------------------------------------------
[artifact:mvn] [INFO]
[artifact:mvn] [INFO] --- build-helper-maven-plugin:1.7:timestamp-property (timestamp-property) @ admin ---
[artifact:mvn] [WARNING] Using platform locale (en_US actually) to format date/time, i.e. build is platform dependent!
[artifact:mvn] [INFO] Setting property 'clientBuildDate' to '2013-08-22 15:28:58'.
[artifact:mvn] [INFO]
[artifact:mvn] [INFO] --- keytool-maven-plugin:1.2:clean (clean) @ admin ---
[artifact:mvn] [INFO] Keystore file 'C:\Documents and Settings\Arun\Desktop\eclipse-workspace\DemoSite\admin\target\admin\WEB-INF\blc-example.keystore' deleted successfully.
[artifact:mvn] [INFO]
[artifact:mvn] [INFO] --- keytool-maven-plugin:1.2:genkey (genkey) @ admin ---
[artifact:mvn] [INFO]
[artifact:mvn] [INFO] --- maven-resources-plugin:2.5:resources (default-resources) @ admin ---
[artifact:mvn] [debug] execute contextualize
[artifact:mvn] [INFO] Using 'UTF-8' encoding to copy filtered resources.
[artifact:mvn] [INFO] Copying 12 resources
[artifact:mvn] [INFO] Copying 2 resources
[artifact:mvn] [INFO]
[artifact:mvn] [INFO] --- jrebel-maven-plugin:1.1.3:generate (generate-rebel-xml) @ admin ---
[artifact:mvn] [INFO]
[artifact:mvn] [INFO] --- maven-compiler-plugin:2.0.2:compile (default-compile) @ admin ---
[artifact:mvn] [INFO] Nothing to compile - all classes are up to date
[artifact:mvn] [INFO]
[artifact:mvn] [INFO] --- maven-war-plugin:2.1.1:exploded (default-cli) @ admin ---
[artifact:mvn] [INFO] Exploding webapp
[artifact:mvn] [INFO] Assembling webapp [admin] in [C:\Documents and Settings\Arun\Desktop\eclipse-workspace\DemoSite\admin\target\admin]
[artifact:mvn] [INFO] Processing war project
[artifact:mvn] [INFO] Copying webapp resources [C:\Documents and Settings\Arun\Desktop\eclipse-workspace\DemoSite\admin\src\main\webapp]
[artifact:mvn] [INFO] Webapp assembled in [32937 msecs]
[artifact:mvn] [INFO]
[artifact:mvn] [INFO] >>> jetty-maven-plugin:8.1.5.v20120716:run (default-cli) @ admin >>>
[artifact:mvn] [INFO]
[artifact:mvn] [INFO] --- build-helper-maven-plugin:1.7:timestamp-property (timestamp-property) @ admin ---
[artifact:mvn] [WARNING] Using platform locale (en_US actually) to format date/time, i.e. build is platform dependent!
[artifact:mvn] [INFO] Setting property 'clientBuildDate' to '2013-08-22 15:29:54'.
[artifact:mvn] [INFO]
[artifact:mvn] [INFO] --- keytool-maven-plugin:1.2:clean (clean) @ admin ---
[artifact:mvn] [INFO] Keystore file 'C:\Documents and Settings\Arun\Desktop\eclipse-workspace\DemoSite\admin\target\admin\WEB-INF\blc-example.keystore' deleted successfully.
[artifact:mvn] [INFO]
[artifact:mvn] [INFO] --- keytool-maven-plugin:1.2:genkey (genkey) @ admin ---
[artifact:mvn] [INFO]
[artifact:mvn] [INFO] --- maven-resources-plugin:2.5:resources (default-resources) @ admin ---
[artifact:mvn] [debug] execute contextualize
[artifact:mvn] [INFO] Using 'UTF-8' encoding to copy filtered resources.
[artifact:mvn] [INFO] Copying 12 resources
[artifact:mvn] [INFO] Copying 2 resources
[artifact:mvn] [INFO]
[artifact:mvn] [INFO] --- jrebel-maven-plugin:1.1.3:generate (generate-rebel-xml) @ admin ---
[artifact:mvn] [INFO]
[artifact:mvn] [INFO] --- maven-compiler-plugin:2.0.2:compile (default-compile) @ admin ---
[artifact:mvn] [INFO] Nothing to compile - all classes are up to date
[artifact:mvn] [INFO]
[artifact:mvn] [INFO] --- maven-resources-plugin:2.5:testResources (default-testResources) @ admin ---
[artifact:mvn] [debug] execute contextualize
[artifact:mvn] [INFO] Using 'UTF-8' encoding to copy filtered resources.
[artifact:mvn] [INFO] skip non existing resourceDirectory C:\Documents and Settings\Arun\Desktop\eclipse-workspace\DemoSite\admin\src\test\resources
[artifact:mvn] [INFO]
[artifact:mvn] [INFO] --- maven-compiler-plugin:2.0.2:testCompile (default-testCompile) @ admin ---
[artifact:mvn] [INFO] No sources to compile
[artifact:mvn] [INFO]
[artifact:mvn] [INFO] <<< jetty-maven-plugin:8.1.5.v20120716:run (default-cli) @ admin <<<
[artifact:mvn] [INFO]
[artifact:mvn] [INFO] --- jetty-maven-plugin:8.1.5.v20120716:run (default-cli) @ admin ---
[artifact:mvn] [INFO] Configuring Jetty for project: admin
[artifact:mvn] [INFO] Webapp source directory = C:\Documents and Settings\Arun\Desktop\eclipse-workspace\DemoSite\admin\target\admin
[artifact:mvn] [INFO] Reload Mechanic: automatic
[artifact:mvn] [INFO] Classes = C:\Documents and Settings\Arun\Desktop\eclipse-workspace\DemoSite\admin\target\admin\WEB-INF\classes
[artifact:mvn] [INFO] Context path = /
[artifact:mvn] [INFO] Tmp directory = C:\Documents and Settings\Arun\Desktop\eclipse-workspace\DemoSite\admin\target\tmp
[artifact:mvn] [INFO] Web defaults = org/eclipse/jetty/webapp/webdefault.xml
[artifact:mvn] [INFO] Web overrides =  none
[artifact:mvn] [INFO] web.xml file = file:/C:/Documents%20and%20Settings/Arun/Desktop/eclipse-workspace/DemoSite/admin/target/admin/WEB-INF/web.xml
[artifact:mvn] [INFO] Webapp directory = C:\Documents and Settings\Arun\Desktop\eclipse-workspace\DemoSite\admin\target\admin
[artifact:mvn] 2013-08-22 21:00:18.474:INFO:oejs.Server:jetty-8.1.5.v20120716
[artifact:mvn] 2013-08-22 21:00:48 JRebel: Directory 'C:\Documents and Settings\Arun\Desktop\eclipse-workspace\DemoSite\admin\target\admin\WEB-INF\classes' will be monitored for changes.
[artifact:mvn] 2013-08-22 21:00:48 JRebel: Directory 'C:\Documents and Settings\Arun\Desktop\eclipse-workspace\DemoSite\admin\src\main\webapp' will be monitored for changes.
[artifact:mvn] 2013-08-22 21:00:52 JRebel: Directory 'C:\Documents and Settings\Arun\Desktop\eclipse-workspace\DemoSite\core\target\classes' will be monitored for changes.
[artifact:mvn] 2013-08-22 21:00:58.351:INFO:oejpw.PlusConfiguration:No Transaction manager found - if your webapp requires one, please configure one.
[artifact:mvn] 2013-08-22 21:06:04.041:INFO:/:No Spring WebApplicationInitializer types detected on classpath
[artifact:mvn] 2013-08-22 21:06:08.598:INFO:oejsh.ContextHandler:started o.m.j.p.JettyWebAppContext{/admin,file:/C:/Documents%20and%20Settings/Arun/Desktop/eclipse-workspace/DemoSite/admin/target/admin/},file:/C:/Documents%20and%20Settings/Arun/Desktop/eclipse-workspace/DemoSite/admin/target/admin/
[artifact:mvn] 2013-08-22 21:06:08.598:INFO:oejsh.ContextHandler:started o.m.j.p.JettyWebAppContext{/admin,file:/C:/Documents%20and%20Settings/Arun/Desktop/eclipse-workspace/DemoSite/admin/target/admin/},file:/C:/Documents%20and%20Settings/Arun/Desktop/eclipse-workspace/DemoSite/admin/target/admin/
[artifact:mvn] 2013-08-22 21:06:08.598:INFO:oejsh.ContextHandler:started o.m.j.p.JettyWebAppContext{/admin,file:/C:/Documents%20and%20Settings/Arun/Desktop/eclipse-workspace/DemoSite/admin/target/admin/},file:/C:/Documents%20and%20Settings/Arun/Desktop/eclipse-workspace/DemoSite/admin/target/admin/
[artifact:mvn] 2013-08-22 21:06:08.648:INFO:/:Set web app root system property: 'blAdmin.root' = [C:\Documents and Settings\Arun\Desktop\eclipse-workspace\DemoSite\admin\src\main\webapp\]
[artifact:mvn] SLF4J: Class path contains multiple SLF4J bindings.
[artifact:mvn] SLF4J: Found binding in [jar:file:/C:/Documents%20and%20Settings/Arun/.m2/repository/org/slf4j/slf4j-log4j12/1.6.1/slf4j-log4j12-1.6.1.jar!/org/slf4j/impl/StaticLoggerBinder.class]
[artifact:mvn] SLF4J: Found binding in [jar:file:/C:/Documents%20and%20Settings/Arun/Desktop/eclipse-workspace/DemoSite/admin/target/admin/WEB-INF/lib/slf4j-log4j12-1.6.1.jar!/org/slf4j/impl/StaticLoggerBinder.class]
[artifact:mvn] SLF4J: See http://www.slf4j.org/codes.html#multiple_bindings for an explanation.
[artifact:mvn] 2013-08-22 21:06:10.140:INFO:/:Initializing log4j from [C:\Documents and Settings\Arun\Desktop\eclipse-workspace\DemoSite\admin\src\main\webapp\WEB-INF\log4j.xml]
[artifact:mvn] 2013-08-22 21:06:10.791:INFO:oejsh.ContextHandler:started o.m.j.p.JettyWebAppContext{/admin,file:/C:/Documents%20and%20Settings/Arun/Desktop/eclipse-workspace/DemoSite/admin/target/admin/},file:/C:/Documents%20and%20Settings/Arun/Desktop/eclipse-workspace/DemoSite/admin/target/admin/
[artifact:mvn] 2013-08-22 21:06:10.801:INFO:/:Initializing Spring root WebApplicationContext
[artifact:mvn] 2013-08-22 21:06:10 JRebel: Monitoring Log4j configuration in 'file:/C:/Documents%20and%20Settings/Arun/Desktop/eclipse-workspace/DemoSite/admin/src/main/webapp/WEB-INF/log4j.xml'.
[artifact:mvn] [ WARN] 21:07:12 RuntimeEnvironmentPropertiesConfigurer - Unable to determine runtime environment, using default environment 'development'
[artifact:mvn] 2013-08-22 21:07:12 JRebel: Monitoring properties in 'jar:file:/C:/Documents%20and%20Settings/Arun/.m2/repository/org/broadleafcommerce/broadleaf-open-admin-platform/2.2.0-GA/broadleaf-open-admin-platform-2.2.0-GA.jar!/config/bc/admin/common.properties'.
[artifact:mvn] 2013-08-22 21:07:12 JRebel: Monitoring properties in 'jar:file:/C:/Documents%20and%20Settings/Arun/.m2/repository/org/broadleafcommerce/broadleaf-common/2.2.0-GA/broadleaf-common-2.2.0-GA.jar!/config/bc/common.properties'.
[artifact:mvn] 2013-08-22 21:07:12 JRebel: Monitoring properties in 'jar:file:/C:/Documents%20and%20Settings/Arun/.m2/repository/org/broadleafcommerce/broadleaf-contentmanagement-module/2.2.0-GA/broadleaf-contentmanagement-module-2.2.0-GA.jar!/config/bc/cms/common.properties'.
[artifact:mvn] 2013-08-22 21:07:12 JRebel: Monitoring properties in 'jar:file:/C:/Documents%20and%20Settings/Arun/.m2/repository/org/broadleafcommerce/broadleaf-framework-web/2.2.0-GA/broadleaf-framework-web-2.2.0-GA.jar!/config/bc/web/common.properties'.
[artifact:mvn] 2013-08-22 21:07:12 JRebel: Monitoring properties in 'jar:file:/C:/Documents%20and%20Settings/Arun/.m2/repository/org/broadleafcommerce/broadleaf-framework/2.2.0-GA/broadleaf-framework-2.2.0-GA.jar!/config/bc/fw/common.properties'.
[artifact:mvn] 2013-08-22 21:07:12 JRebel: Monitoring properties in 'C:\Documents and Settings\Arun\Desktop\eclipse-workspace\DemoSite\core\target\classes\runtime-properties\common-shared.properties'.
[artifact:mvn] 2013-08-22 21:07:12 JRebel: Monitoring properties in 'C:\Documents and Settings\Arun\Desktop\eclipse-workspace\DemoSite\core\target\classes\runtime-properties\development-shared.properties'.
[artifact:mvn] 2013-08-22 21:07:12 JRebel: Monitoring properties in 'C:\Documents and Settings\Arun\Desktop\eclipse-workspace\DemoSite\admin\target\admin\WEB-INF\classes\runtime-properties\common.properties'.
[artifact:mvn] 2013-08-22 21:07:12 JRebel: Monitoring properties in 'C:\Documents and Settings\Arun\Desktop\eclipse-workspace\DemoSite\admin\target\admin\WEB-INF\classes\runtime-properties\development.properties'.
[artifact:mvn] [ERROR] 21:07:35 Ejb3Configuration - Container is providing a null PersistenceUnitRootUrl: discovery impossible
[artifact:mvn] [ WARN] 21:07:53 Ejb3Configuration - hibernate.connection.autocommit = false break the EJB3 specification
[artifact:mvn] [ WARN] 21:08:03 AbstractEhcacheRegionFactory - Couldn't find a specific ehcache configuration for cache named [blSandBoxElements]; using defaults.
[artifact:mvn] [ WARN] 21:08:42 AbstractEhcacheRegionFactory - Couldn't find a specific ehcache configuration for cache named [org.hibernate.cache.UpdateTimestampsCache]; using defaults.
[artifact:mvn] [ERROR] 21:08:56 Ejb3Configuration - Container is providing a null PersistenceUnitRootUrl: discovery impossible
[artifact:mvn] [ WARN] 21:08:56 Ejb3Configuration - hibernate.connection.autocommit = false break the EJB3 specification
[artifact:mvn] [ERROR] 21:08:59 Ejb3Configuration - Container is providing a null PersistenceUnitRootUrl: discovery impossible
[artifact:mvn] [ WARN] 21:08:59 Ejb3Configuration - hibernate.connection.autocommit = false break the EJB3 specification
[artifact:mvn] 2013-08-22 21:09:02 JRebel: Monitoring Spring bean definitions in 'jar:file:/C:/Documents%20and%20Settings/Arun/.m2/repository/org/broadleafcommerce/broadleaf-common/2.2.0-GA/broadleaf-common-2.2.0-GA.jar!/bl-common-applicationContext-entity.xml'.
[artifact:mvn] 2013-08-22 21:09:04 JRebel: Monitoring Spring bean definitions in 'jar:file:/C:/Documents%20and%20Settings/Arun/.m2/repository/org/broadleafcommerce/broadleaf-profile/2.2.0-GA/broadleaf-profile-2.2.0-GA.jar!/bl-profile-applicationContext-entity.xml'.
[artifact:mvn] 2013-08-22 21:09:04 JRebel: Monitoring Spring bean definitions in 'jar:file:/C:/Documents%20and%20Settings/Arun/.m2/repository/org/broadleafcommerce/broadleaf-framework/2.2.0-GA/broadleaf-framework-2.2.0-GA.jar!/bl-framework-applicationContext-entity.xml'.
[artifact:mvn] 2013-08-22 21:09:04 JRebel: Monitoring Spring bean definitions in 'jar:file:/C:/Documents%20and%20Settings/Arun/.m2/repository/org/broadleafcommerce/broadleaf-open-admin-platform/2.2.0-GA/broadleaf-open-admin-platform-2.2.0-GA.jar!/bl-open-admin-applicationContext-entity.xml'.
[artifact:mvn] 2013-08-22 21:09:04 JRebel: Monitoring Spring bean definitions in 'jar:file:/C:/Documents%20and%20Settings/Arun/.m2/repository/org/broadleafcommerce/broadleaf-contentmanagement-module/2.2.0-GA/broadleaf-contentmanagement-module-2.2.0-GA.jar!/bl-cms-applicationContext-entity.xml'.
[artifact:mvn] 2013-08-22 21:09:04 JRebel: Monitoring Spring bean definitions in 'C:\Documents and Settings\Arun\Desktop\eclipse-workspace\DemoSite\core\target\classes\applicationContext-entity.xml'.
[artifact:mvn] [ WARN] 21:10:20 DefaultFilterChainValidator - Possible error: Filters at position 10 and 11 are both instances of org.springframework.security.web.access.intercept.FilterSecurityInterceptor
[artifact:mvn] 2013-08-22 21:10:29.533:INFO:oejsh.ContextHandler:started o.m.j.p.JettyWebAppContext{/admin,file:/C:/Documents%20and%20Settings/Arun/Desktop/eclipse-workspace/DemoSite/admin/target/admin/},file:/C:/Documents%20and%20Settings/Arun/Desktop/eclipse-workspace/DemoSite/admin/target/admin/
[artifact:mvn] 2013-08-22 21:10:32 JRebel: Monitoring Spring bean definitions in 'jar:file:/C:/Documents%20and%20Settings/Arun/.m2/repository/org/broadleafcommerce/broadleaf-open-admin-platform/2.2.0-GA/broadleaf-open-admin-platform-2.2.0-GA.jar!/applicationContext-servlet-open-admin.xml'.
[artifact:mvn] 2013-08-22 21:10:32.016:INFO:/:Initializing Spring FrameworkServlet 'admin'
[artifact:mvn] 2013-08-22 21:10:32 JRebel: Monitoring Spring bean definitions in 'jar:file:/C:/Documents%20and%20Settings/Arun/.m2/repository/org/broadleafcommerce/broadleaf-admin-module/2.2.0-GA/broadleaf-admin-module-2.2.0-GA.jar!/applicationContext-servlet-admin.xml'.
[artifact:mvn] 2013-08-22 21:10:34 JRebel: Monitoring Spring bean definitions in 'jar:file:/C:/Documents%20and%20Settings/Arun/.m2/repository/org/broadleafcommerce/broadleaf-contentmanagement-module/2.2.0-GA/broadleaf-contentmanagement-module-2.2.0-GA.jar!/applicationContext-servlet-cms-contentClient.xml'.
[artifact:mvn] 2013-08-22 21:10:36 JRebel: Monitoring Spring bean definitions in 'jar:file:/C:/Documents%20and%20Settings/Arun/.m2/repository/org/broadleafcommerce/broadleaf-contentmanagement-module/2.2.0-GA/broadleaf-contentmanagement-module-2.2.0-GA.jar!/applicationContext-servlet-cms-contentCreator.xml'.
[artifact:mvn] 2013-08-22 21:10:38 JRebel: Monitoring Spring bean definitions in 'C:\Documents and Settings\Arun\Desktop\eclipse-workspace\DemoSite\admin\src\main\webapp\WEB-INF\applicationContext-servlet-admin.xml'.
[artifact:mvn] [ WARN] 21:10:43 RuntimeEnvironmentPropertiesConfigurer - Unable to determine runtime environment, using default environment 'development'
[artifact:mvn] 2013-08-22 21:10:43 JRebel: Monitoring properties in 'jar:file:/C:/Documents%20and%20Settings/Arun/.m2/repository/org/broadleafcommerce/broadleaf-open-admin-platform/2.2.0-GA/broadleaf-open-admin-platform-2.2.0-GA.jar!/config/bc/admin/common.properties'.
[artifact:mvn] 2013-08-22 21:10:43 JRebel: Monitoring properties in 'jar:file:/C:/Documents%20and%20Settings/Arun/.m2/repository/org/broadleafcommerce/broadleaf-common/2.2.0-GA/broadleaf-common-2.2.0-GA.jar!/config/bc/common.properties'.
[artifact:mvn] 2013-08-22 21:10:43 JRebel: Monitoring properties in 'jar:file:/C:/Documents%20and%20Settings/Arun/.m2/repository/org/broadleafcommerce/broadleaf-contentmanagement-module/2.2.0-GA/broadleaf-contentmanagement-module-2.2.0-GA.jar!/config/bc/cms/common.properties'.
[artifact:mvn] 2013-08-22 21:10:43 JRebel: Monitoring properties in 'jar:file:/C:/Documents%20and%20Settings/Arun/.m2/repository/org/broadleafcommerce/broadleaf-framework-web/2.2.0-GA/broadleaf-framework-web-2.2.0-GA.jar!/config/bc/web/common.properties'.
[artifact:mvn] 2013-08-22 21:10:43 JRebel: Monitoring properties in 'jar:file:/C:/Documents%20and%20Settings/Arun/.m2/repository/org/broadleafcommerce/broadleaf-framework/2.2.0-GA/broadleaf-framework-2.2.0-GA.jar!/config/bc/fw/common.properties'.
[artifact:mvn] 2013-08-22 21:10:43 JRebel: Monitoring properties in 'C:\Documents and Settings\Arun\Desktop\eclipse-workspace\DemoSite\core\target\classes\runtime-properties\common-shared.properties'.
[artifact:mvn] 2013-08-22 21:10:43 JRebel: Monitoring properties in 'C:\Documents and Settings\Arun\Desktop\eclipse-workspace\DemoSite\core\target\classes\runtime-properties\development-shared.properties'.
[artifact:mvn] 2013-08-22 21:10:43 JRebel: Monitoring properties in 'C:\Documents and Settings\Arun\Desktop\eclipse-workspace\DemoSite\admin\target\admin\WEB-INF\classes\runtime-properties\common.properties'.
[artifact:mvn] 2013-08-22 21:10:43 JRebel: Monitoring properties in 'C:\Documents and Settings\Arun\Desktop\eclipse-workspace\DemoSite\admin\target\admin\WEB-INF\classes\runtime-properties\development.properties'.
[artifact:mvn] 2013-08-22 21:11:13.816:INFO:oejs.AbstractConnector:Started SelectChannelConnector@0.0.0.0:8081
[artifact:mvn] 2013-08-22 21:11:14.517:INFO:oejus.SslContextFactory:Enabled Protocols [SSLv2Hello, SSLv3, TLSv1, TLSv1.1, TLSv1.2] of [SSLv2Hello, SSLv3, TLSv1, TLSv1.1, TLSv1.2]
[artifact:mvn] [INFO] Started Jetty Server
[artifact:mvn] 2013-08-22 21:11:14.648:INFO:oejs.AbstractConnector:Started SslSelectChannelConnector@0.0.0.0:8444


Please let me know if you want any more details.

Thanks

Re: SEO Module error

Posted: Fri Aug 23, 2013 10:08 am
by ankitpatni
Can you see the entries in database????

I guess you have not extended database tables for this entry or not using right table to save this entries.

i'll try the same on this weekend and let you know.

Re: SEO Module error

Posted: Sat Aug 24, 2013 3:15 am
by hiteshsingla
Hi ,

Thanks for your response.

I got following error when trying to add product

Code: Select all

[ WARN] 13:34:55 CompatibleGWTSecuredRPCServiceExporter - org.broadleafcommerce.common.exception.ServiceException: Unable to add entity for com.mycompany.core.catalog.domain.MyProductImpl
[artifact:mvn] [ WARN] 13:34:56 RuntimeEnvironmentPropertiesConfigurer - Unable to determine runtime environment, using default environment 'development'
[artifact:mvn] [ WARN] 13:34:56 RuntimeEnvironmentPropertiesConfigurer - Unable to determine runtime environment, using default environment 'development'
[artifact:mvn] 2013-08-24 13:34:58.557:INFO:/:admin: ERROR: The serialization policy file '/com.mycompany.gwt.mycompanyAdmin/151ED3E556770C6321522749524BBCBE.gwt.rpc' was not found; did you forget to include it in this deployment?
[artifact:mvn] 2013-08-24 13:34:58.557:INFO:/:admin: WARNING: Failed to get the SerializationPolicy '151ED3E556770C6321522749524BBCBE' for module 'http://localhost:8081/admin/com.mycompany.gwt.mycompanyAdmin/'; a legacy, 1.3.3 compatible, serialization policy will be used.  You may experience SerializationExceptions as a result.


Thanks

Re: SEO Module error

Posted: Mon Aug 26, 2013 12:52 pm
by hiteshsingla
I tried to run maven install after following seo steps which is documented at

http://docs.broadleafcommerce.org/core/ ... o-tutorial

but i got following error

Code: Select all

[INFO]
[INFO] --- gwt-maven-plugin:2.4.0:compile (default) @ admin ---
[ERROR] Aug 26, 2013 11:04:17 PM java.util.prefs.WindowsPreferences <init>
[ERROR] WARNING: Could not open/create prefs root node Software\JavaSoft\Prefs at root 0x80000002. Windows RegCreateKeyEx(...) returned error code 5.
[INFO] Compiling module com.mycompany.gwt.mycompanyAdmin
[INFO]    Validating newly compiled units
[INFO]       [ERROR] Errors in 'jar:file:/C:/Users/Alok/.m2/repository/org/broadleafcommerce/broadleaf-seo/1.0.0-SNAPSHOT/broadleaf-seo-1.0.0-SNAPSHOT.jar!/org/broadleafcommerce/admin/client/seo/SeoModule.java'
[INFO]          [ERROR] Line 29: The method addConstants(i18nConstants) in the type AbstractModule is not applicable for the arguments (ConstantsWithLookup)
[INFO]    Finding entry point classes
[INFO]       [ERROR] Errors in 'jar:file:/C:/Users/Alok/.m2/repository/org/broadleafcommerce/broadleaf-seo/1.0.0-SNAPSHOT/broadleaf-seo-1.0.0-SNAPSHOT.jar!/org/broadleafcommerce/admin/client/seo/SeoModule.java'
[INFO]          [ERROR] Line 29: The method addConstants(i18nConstants) in the type AbstractModule is not applicable for the arguments (ConstantsWithLookup)
[INFO]       [ERROR] Unable to find type 'org.broadleafcommerce.admin.client.seo.SeoModule'
[INFO]          [ERROR] Hint: Previous compiler errors may have made this type unavailable
[INFO]          [ERROR] Hint: Check the inheritance chain from your module; it may not be inheriting a required module or a module may not be adding its source path entries properly
[INFO] ------------------------------------------------------------------------
[INFO] Reactor Summary:
[INFO]
[INFO] ecommerce ......................................... SUCCESS [8.136s]
[INFO] core .............................................. SUCCESS [42.153s]
[INFO] admin ............................................. FAILURE [51.911s]
[INFO] site .............................................. SKIPPED
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 1:46.456s
[INFO] Finished at: Mon Aug 26 23:04:41 IST 2013
[INFO] Final Memory: 12M/30M
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal org.codehaus.mojo:gwt-maven-plugin:2.4.0:compile (default) on project admin: Command [[
[ERROR] C:\Program Files\Java\jre7\bin\java -Xmx768M -Xss1024k -classpath E:\eclipse-workspace\DemoSite\admin\src\main\java;E:\eclipse-workspace\DemoSite\admin\src\main\resources;E:\eclipse-workspace\DemoSite\admin\target\admin\WEB-INF\classes;C:\Users\Alok\.m2\repository\org\broadleafcommerce\broadleaf-admin-module\2.2.0-GA\broadleaf-admin-module-2.2.0-GA.jar;C:\Users\Alok\.m2\repository\org\broadleafcommerce\broadleaf-framework\2.2.0-GA\broadleaf-framework-2.2.0-GA.jar;C:\Users\Alok\.m2\repository\org\apache\solr\solr-solrj\4.0.0\solr-solrj-4.0.0.jar;C:\Users\Alok\.m2\repository\org\apache\zookeeper\zookeeper\3.3.6\zookeeper-3.3.6.jar;C:\Users\Alok\.m2\repository\org\apache\httpcomponents\httpclient\4.1.3\httpclient-4.1.3.jar;C:\Users\Alok\.m2\repository\org\apache\httpcomponents\httpcore\4.1.4\httpcore-4.1.4.jar;C:\Users\Alok\.m2\repository\org\apache\httpcomponents\httpmime\4.1.3\httpmime-4.1.3.jar;C:\Users\Alok\.m2\repository\org\apache\solr\solr-core\4.0.0\solr-core-4.0.0.jar;C:\Users\Alok\.m2\repository\org\apache\lucene\lucene-core\4.0.0\lucene-core-4.0.0.jar;C:\Users\Alok\.m2\repository\org\apache\lucene\lucene-analyzers-common\4.0.0\lucene-analyzers-common-4.0.0.jar;C:\Users\Alok\.m2\repository\org\apache\lucene\lucene-analyzers-kuromoji\4.0.0\lucene-analyzers-kuromoji-4.0.0.jar;C:\Users\Alok\.m2\repository\org\apache\lucene\lucene-analyzers-morfologik\4.0.0\lucene-analyzers-morfologik-4.0.0.jar;C:\Users\Alok\.m2\repository\org\carrot2\morfologik-polish\1.5.3\morfologik-polish-1.5.3.jar;C:\Users\Alok\.m2\repository\org\carrot2\morfologik-stemming\1.5.3\morfologik-stemming-1.5.3.jar;C:\Users\Alok\.m2\repository\org\carrot2\morfologik-fsa\1.5.3\morfologik-fsa-1.5.3.jar;C:\Users\Alok\.m2\repository\org\apache\lucene\lucene-analyzers-phonetic\4.0.0\lucene-analyzers-phonetic-4.0.0.jar;C:\Users\Alok\.m2\repository\org\apache\lucene\lucene-highlighter\4.0.0\lucene-highlighter-4.0.0.jar;C:\Users\Alok\.m2\repository\org\apache\lucene\lucene-memory\4.0.0\lucene-memory-4.0.0.jar;C:\Users\Alok\.m2\repository\org\apache\lucene\lucene-misc\4.0.0\lucene-misc-4.0.0.jar;C:\Users\Alok\.m2\repository\org\apache\lucene\lucene-queryparser\4.0.0\lucene-queryparser-4.0.0.jar;C:\Users\Alok\.m2\repository\org\apache\lucene\lucene-spatial\4.0.0\lucene-spatial-4.0.0.jar;C:\Users\Alok\.m2\repository\com\spatial4j\spatial4j\0.3\spatial4j-0.3.jar;C:\Users\Alok\.m2\repository\org\apache\lucene\lucene-suggest\4.0.0\lucene-suggest-4.0.0.jar;C:\Users\Alok\.m2\repository\org\apache\lucene\lucene-grouping\4.0.0\lucene-grouping-4.0.0.jar;C:\Users\Alok\.m2\repository\org\apache\lucene\lucene-queries\4.0.0\lucene-queries-4.0.0.jar;C:\Users\Alok\.m2\repository\commons-cli\commons-cli\1.2\commons-cli-1.2.jar;C:\Users\Alok\.m2\repository\com\google\guava\guava\r05\guava-r05.jar;C:\Users\Alok\.m2\repository\commons-codec\commons-codec\1.4\commons-codec-1.4.jar;C:\Users\Alok\.m2\repository\org\codehaus\jackson\jackson-core-asl\1.9.2\jackson-core-asl-1.9.2.jar;C:\Users\Alok\.m2\repository\joda-time\joda-time\2.1\joda-time-2.1.jar;C:\Users\Alok\.m2\repository\org\broadleafcommerce\broadleaf-open-admin-platform\2.2.0-GA\broadleaf-open-admin-platform-2.2.0-GA.jar;C:\Users\Alok\.m2\repository\com\google\code\gwt-math\gwt-math\2.0.3\gwt-math-2.0.3.jar;C:\Users\Alok\.m2\repository\com\smartgwt\smartgwt\2.5-patch\smartgwt-2.5-patch.jar;C:\Users\Alok\.m2\repository\com\anasoft\os\daofusion-core\1.2.0\daofusion-core-1.2.0.jar;C:\Users\Alok\.m2\repository\com\anasoft\os\daofusion-core\1.2.0\daofusion-core-1.2.0-sources.jar;C:\Users\Alok\.m2\repository\com\gwtincubator\gwt-incubator-security\1.0.1\gwt-incubator-security-1.0.1.jar;C:\Users\Alok\.m2\repository\net\sf\gwt-widget\gwt-sl\1.1\gwt-sl-1.1.jar;C:\Users\Alok\.m2\repository\cglib\cglib-nodep\2.1_3\cglib-nodep-2.1_3.jar;C:\Users\Alok\.m2\repository\net\sf\transmorph\transmorph\2.2.2\transmorph-2.2.2.jar;C:\Users\Alok\.m2\repository\commons-fileupload\commons-fileupload\1.2.1\commons-fileupload-1.2.1.jar;C:\Users\Alok\.m2\repository\commons-lang\commons-lang\2.6\commons-lang-2.6.jar;C:\Users\Alok\.m2\repository\org\broadleafcommerce\broadleaf-contentmanagement-module\2.2.0-GA\broadleaf-contentmanagement-module-2.2.0-GA.jar;C:\Users\Alok\.m2\repository\org\mvel\mvel2\2.0.19\mvel2-2.0.19.jar;C:\Users\Alok\.m2\repository\org\thymeleaf\thymeleaf\2.0.13\thymeleaf-2.0.13.jar;C:\Users\Alok\.m2\repository\ognl\ognl\3.0.5\ognl-3.0.5.jar;C:\Users\Alok\.m2\repository\org\slf4j\slf4j-api\1.6.1\slf4j-api-1.6.1.jar;C:\Users\Alok\.m2\repository\org\thymeleaf\thymeleaf-spring3\2.0.13\thymeleaf-spring3-2.0.13.jar;C:\Users\Alok\.m2\repository\org\javassist\javassist\3.17.1-GA\javassist-3.17.1-GA.jar;C:\Users\Alok\.m2\repository\org\broadleafcommerce\broadleaf-framework-web\2.2.0-GA\broadleaf-framework-web-2.2.0-GA.jar;C:\Users\Alok\.m2\repository\org\springframework\spring-webmvc\3.1.3.RELEASE\spring-webmvc-3.1.3.RELEASE.jar;C:\Users\Alok\.m2\repository\org\springframework\spring-asm\3.1.3.RELEASE\spring-asm-3.1.3.RELEASE.jar;C:\Users\Alok\.m2\repository\org\springframework\spring-expression\3.1.3.RELEASE\spring-expression-3.1.3.RELEASE.jar;C:\Users\Alok\.m2\repository\org\springframework\social\spring-social-web\1.0.2.RELEASE\spring-social-web-1.0.2.RELEASE.jar;C:\Users\Alok\.m2\repository\javax\inject\javax.inject\1\javax.inject-1.jar;C:\Users\Alok\.m2\repository\org\springframework\social\spring-social-core\1.0.2.RELEASE\spring-social-core-1.0.2.RELEASE.jar;C:\Users\Alok\.m2\repository\org\broadleafcommerce\broadleaf-profile\2.2.0-GA\broadleaf-profile-2.2.0-GA.jar;C:\Users\Alok\.m2\repository\commons-validator\commons-validator\1.3.1\commons-validator-1.3.1.jar;C:\Users\Alok\.m2\repository\org\broadleafcommerce\broadleaf-profile-web\2.2.0-GA\broadleaf-profile-web-2.2.0-GA.jar;C:\Users\Alok\.m2\repository\javax\servlet\jstl\1.1.2\jstl-1.1.2.jar;C:\Users\Alok\.m2\repository\taglibs\standard\1.1.2\standard-1.1.2.jar;C:\Users\Alok\.m2\repository\org\springframework\security\spring-security-acl\3.1.3.RELEASE\spring-security-acl-3.1.3.RELEASE.jar;C:\Users\Alok\.m2\repository\org\springframework\security\spring-security-config\3.1.3.RELEASE\spring-security-config-3.1.3.RELEASE.jar;C:\Users\Alok\.m2\repository\commons-collections\commons-collections\3.2.1\commons-collections-3.2.1.jar;C:\Users\Alok\.m2\repository\com\sun\jersey\jersey-json\1.11\jersey-json-1.11.jar;C:\Users\Alok\.m2\repository\org\codehaus\jettison\jettison\1.1\jettison-1.1.jar;C:\Users\Alok\.m2\repository\org\codehaus\jackson\jackson-mapper-asl\1.9.2\jackson-mapper-asl-1.9.2.jar;C:\Users\Alok\.m2\repository\org\codehaus\jackson\jackson-jaxrs\1.9.2\jackson-jaxrs-1.9.2.jar;C:\Users\Alok\.m2\repository\org\codehaus\jackson\jackson-xc\1.9.2\jackson-xc-1.9.2.jar;C:\Users\Alok\.m2\repository\com\sun\jersey\jersey-core\1.11\jersey-core-1.11.jar;C:\Users\Alok\.m2\repository\com\sun\jersey\contribs\jersey-spring\1.11\jersey-spring-1.11.jar;C:\Users\Alok\.m2\repository\com\sun\jersey\jersey-servlet\1.11\jersey-servlet-1.11.jar;C:\Users\Alok\.m2\repository\com\sun\jersey\jersey-server\1.11\jersey-server-1.11.jar;C:\Users\Alok\.m2\repository\commons-digester\commons-digester\1.8\commons-digester-1.8.jar;C:\Users\Alok\.m2\repository\commons-beanutils\commons-beanutils\1.7.0\commons-beanutils-1.7.0.jar;C:\Users\Alok\.m2\repository\commons-logging\commons-logging\1.1\commons-logging-1.1.jar;C:\Users\Alok\.m2\repository\logkit\logkit\1.0.1\logkit-1.0.1.jar;C:\Users\Alok\.m2\repository\avalon-framework\avalon-framework\4.1.3\avalon-framework-4.1.3.jar;C:\Users\Alok\.m2\repository\org\broadleafcommerce\broadleaf-common\2.2.0-GA\broadleaf-common-2.2.0-GA.jar;C:\Users\Alok\.m2\repository\org\hibernate\hibernate-core\3.6.10.Final\hibernate-core-3.6.10.Final.jar;C:\Users\Alok\.m2\repository\antlr\antlr\2.7.6\antlr-2.7.6.jar;C:\Users\Alok\.m2\repository\dom4j\dom4j\1.6.1\dom4j-1.6.1.jar;C:\Users\Alok\.m2\repository\org\hibernate\hibernate-commons-annotations\3.2.0.Final\hibernate-commons-annotations-3.2.0.Final.jar;C:\Users\Alok\.m2\repository\javax\transaction\jta\1.1\jta-1.1.jar;C:\Users\Alok\.m2\repository\org\hibernate\hibernate-tools\3.2.4.GA\hibernate-tools-3.2.4.GA.jar;C:\Users\Alok\.m2\repository\org\beanshell\bsh\2.0b4\bsh-2.0b4.jar;C:\Users\Alok\.m2\repository\freemarker\freemarker\2.3.8\freemarker-2.3.8.jar;C:\Users\Alok\.m2\repository\org\hibernate\jtidy\r8-20060801\jtidy-r8-20060801.jar;C:\Users\Alok\.m2\repository\org\hibernate\hibernate-entitymanager\3.6.10.Final\hibernate-entitymanager-3.6.10.Final.jar;C:\Users\Alok\.m2\repository\cglib\cglib\2.2\cglib-2.2.jar;C:\Users\Alok\.m2\repository\asm\asm\3.1\asm-3.1.jar;C:\Users\Alok\.m2\repository\net\sf\ehcache\ehcache\2.4.2\ehcache-2.4.2.pom;C:\Users\Alok\.m2\repository\net\sf\ehcache\ehcache-core\2.4.2\ehcache-core-2.4.2.jar;C:\Users\Alok\.m2\repository\net\sf\ehcache\ehcache-terracotta\2.4.2\ehcache-terracotta-2.4.2.jar;C:\Users\Alok\.m2\repository\org\springframework\security\spring-security-web\3.1.3.RELEASE\spring-security-web-3.1.3.RELEASE.jar;C:\Users\Alok\.m2\repository\aopalliance\aopalliance\1.0\aopalliance-1.0.jar;C:\Users\Alok\.m2\repository\org\hibernate\hibernate-envers\3.6.10.Final\hibernate-envers-3.6.10.Final.jar;C:\Users\Alok\.m2\repository\org\slf4j\jcl-over-slf4j\1.6.1\jcl-over-slf4j-1.6.1.jar;C:\Users\Alok\.m2\repository\log4j\log4j\1.2.12\log4j-1.2.12.jar;C:\Users\Alok\.m2\repository\javax\mail\mail\1.4.1\mail-1.4.1.jar;C:\Users\Alok\.m2\repository\javax\activation\activation\1.1\activation-1.1.jar;C:\Users\Alok\.m2\repository\org\springframework\spring-jms\3.1.3.RELEASE\spring-jms-3.1.3.RELEASE.jar;C:\Users\Alok\.m2\repository\org\springframework\spring-aop\3.1.3.RELEASE\spring-aop-3.1.3.RELEASE.jar;C:\Users\Alok\.m2\repository\org\springframework\spring-tx\3.1.3.RELEASE\spring-tx-3.1.3.RELEASE.jar;C:\Users\Alok\.m2\repository\org\apache\velocity\velocity-tools\2.0\velocity-tools-2.0.jar;C:\Users\Alok\.m2\repository\commons-chain\commons-chain\1.1\commons-chain-1.1.jar;C:\Users\Alok\.m2\repository\sslext\sslext\1.2-0\sslext-1.2-0.jar;C:\Users\Alok\.m2\repository\org\apache\struts\struts-core\1.3.8\struts-core-1.3.8.jar;C:\Users\Alok\.m2\repository\org\apache\struts\struts-taglib\1.3.8\struts-taglib-1.3.8.jar;C:\Users\Alok\.m2\repository\org\apache\struts\struts-tiles\1.3.8\struts-tiles-1.3.8.jar;C:\Users\Alok\.m2\repository\org\apache\velocity\velocity\1.6.2\velocity-1.6.2.jar;C:\Users\Alok\.m2\repository\org\springframework\spring-web\3.1.3.RELEASE\spring-web-3.1.3.RELEASE.jar;C:\Users\Alok\.m2\repository\org\hibernate\javax\persistence\hibernate-jpa-2.0-api\1.0.0.Final\hibernate-jpa-2.0-api-1.0.0.Final.jar;C:\Users\Alok\.m2\repository\org\springframework\spring-core\3.1.3.RELEASE\spring-core-3.1.3.RELEASE.jar;C:\Users\Alok\.m2\repository\org\aspectj\aspectjweaver\1.6.5\aspectjweaver-1.6.5.jar;C:\Users\Alok\.m2\repository\asm\asm-commons\3.3\asm-commons-3.3.jar;C:\Users\Alok\.m2\repository\asm\asm-tree\3.3\asm-tree-3.3.jar;C:\Users\Alok\.m2\repository\org\springframework\security\spring-security-core\3.1.3.RELEASE\spring-security-core-3.1.3.RELEASE.jar;C:\Users\Alok\.m2\repository\org\springframework\spring-beans\3.1.3.RELEASE\spring-beans-3.1.3.RELEASE.jar;C:\Users\Alok\.m2\repository\org\springframework\spring-context\3.1.3.RELEASE\spring-context-3.1.3.RELEASE.jar;C:\Users\Alok\.m2\repository\org\springframework\spring-context-support\3.1.3.RELEASE\spring-context-support-3.1.3.RELEASE.jar;C:\Users\Alok\.m2\repository\org\springframework\spring-orm\3.1.3.RELEASE\spring-orm-3.1.3.RELEASE.jar;C:\Users\Alok\.m2\repository\org\springframework\spring-jdbc\3.1.3.RELEASE\spring-jdbc-3.1.3.RELEASE.jar;C:\Users\Alok\.m2\repository\org\springframework\security\spring-security-taglibs\3.1.3.RELEASE\spring-security-taglibs-3.1.3.RELEASE.jar;C:\Users\Alok\.m2\repository\org\springframework\security\spring-security-ldap\3.1.3.RELEASE\spring-security-ldap-3.1.3.RELEASE.jar;C:\Users\Alok\.m2\repository\org\springframework\ldap\spring-ldap-core\1.3.1.RELEASE\spring-ldap-core-1.3.1.RELEASE.jar;C:\Users\Alok\.m2\repository\org\opensymphony\quartz\quartz\1.6.1\quartz-1.6.1.jar;C:\Users\Alok\.m2\repository\oro\oro\2.0.8\oro-2.0.8.jar;C:\Users\Alok\.m2\repository\com\google\code\findbugs\jsr305\1.3.9\jsr305-1.3.9.jar;C:\Users\Alok\.m2\repository\org\apache\xmlbeans\xmlbeans\2.4.0\xmlbeans-2.4.0.jar;C:\Users\Alok\.m2\repository\stax\stax-api\1.0.1\stax-api-1.0.1.jar;C:\Users\Alok\.m2\repository\org\apache\geronimo\specs\geronimo-jms_1.1_spec\1.1.1\geronimo-jms_1.1_spec-1.1.1.jar;C:\Users\Alok\.m2\repository\com\google\gwt\gwt-servlet\2.4.0\gwt-servlet-2.4.0.jar;C:\Users\Alok\.m2\repository\eu\medsea\mimeutil\mime-util\2.1.3\mime-util-2.1.3.jar;C:\Users\Alok\.m2\repository\org\owasp\antisamy\antisamy\1.4.5\antisamy-1.4.5.jar;C:\Users\Alok\.m2\repository\xerces\xercesImpl\2.8.1\xercesImpl-2.8.1.jar;C:\Users\Alok\.m2\repository\xml-apis\xml-apis\1.3.03\xml-apis-1.3.03.jar;C:\Users\Alok\.m2\repository\org\apache\xmlgraphics\batik-css\1.7\batik-css-1.7.jar;C:\Users\Alok\.m2\repository\org\apache\xmlgraphics\batik-ext\1.7\batik-ext-1.7.jar;C:\Users\Alok\.m2\repository\org\apache\xmlgraphics\batik-util\1.7\batik-util-1.7.jar;C:\Users\Alok\.m2\repository\xml-apis\xml-apis-ext\1.3.04\xml-apis-ext-1.3.04.jar;C:\Users\Alok\.m2\repository\net\sourceforge\nekohtml\nekohtml\1.9.12\nekohtml-1.9.12.jar;C:\Users\Alok\.m2\repository\commons-httpclient\commons-httpclient\3.1\commons-httpclient-3.1.jar;C:\Users\Alok\.m2\repository\org\apache\commons\commons-lang3\3.1\commons-lang3-3.1.jar;E:\eclipse-workspace\DemoSite\core\target\core-1.0.jar;C:\Users\Alok\.m2\repository\mysql\mysql-connector-java\5.1.21\mysql-connector-java-5.1.21.jar;C:\Users\Alok\.m2\repository\org\apache\tomcat\tomcat-jdbc\7.0.30\tomcat-jdbc-7.0.30.jar;C:\Users\Alok\.m2\repository\org\apache\tomcat\tomcat-juli\7.0.30\tomcat-juli-7.0.30.jar;C:\Users\Alok\.m2\repository\commons-dbcp\commons-dbcp\1.2.2\commons-dbcp-1.2.2.jar;C:\Users\Alok\.m2\repository\commons-pool\commons-pool\1.3\commons-pool-1.3.jar;C:\Users\Alok\.m2\repository\javax\servlet\servlet-api\2.5\servlet-api-2.5.jar;C:\Users\Alok\.m2\repository\org\hibernate\hibernate-validator-annotation-processor\4.1.0.Final\hibernate-validator-annotation-processor-4.1.0.Final.jar;C:\Users\Alok\.m2\repository\org\hibernate\hibernate-validator\4.1.0.Final\hibernate-validator-4.1.0.Final.jar;C:\Users\Alok\.m2\repository\javax\validation\validation-api\1.0.0.GA\validation-api-1.0.0.GA.jar;C:\Users\Alok\.m2\repository\org\broadleafcommerce\broadleaf-seo\1.0.0-SNAPSHOT\broadleaf-seo-1.0.0-SNAPSHOT.jar;C:\Users\Alok\.m2\repository\org\hsqldb\hsqldb\2.2.4\hsqldb-2.2.4.jar;C:\Users\Alok\.m2\repository\com\google\gwt\gwt-user\2.4.0\gwt-user-2.4.0.jar;C:\Users\Alok\.m2\repository\javax\validation\validation-api\1.0.0.GA\validation-api-1.0.0.GA.jar;C:\Users\Alok\.m2\repository\javax\validation\validation-api\1.0.0.GA\validation-api-1.0.0.GA-sources.jar;C:\Users\Alok\.m2\repository\com\google\gwt\gwt-dev\2.4.0\gwt-dev-2.4.0.jar com.google.gwt.dev.Compiler -gen E:\eclipse-workspace\DemoSite\admin\target\.generated -logLevel INFO -style DETAILED -war E:\eclipse-workspace\DemoSite\admin\target\admin\admin -localWorkers 2 -strict -deploy E:\eclipse-workspace\DemoSite\admin\target\admin\WEB-INF\deploy com.mycompany.gwt.mycompanyAdmin
[ERROR] ]] failed with status 1
[ERROR] -> [Help 1]
[ERROR]
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR]
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionException
[ERROR]
[ERROR] After correcting the problems, you can resume the build with the command
[ERROR]   mvn <goals> -rf :admin


Thanks