No sorry with this configuration I have again generic compilation problem like following in attached file, I don't have this problem if I use general javac compiler and also in Eclipse, why these appears with mvn/eclipse compiler ... ?
-----Message d'origine----- De : Stuart McCulloch [mailto:[email protected]] Envoyé : lundi 2 décembre 2013 16:47 À : Maven Users List Objet : Re: Maven compilation error "is not within its bound" On 2 Dec 2013, at 15:31, Adrien Ruffié <[email protected]> wrote: > Not very well ... sorry it is a very bad problem because I'm cannot > upgrade to Java 1.7 and all not give me satisfaction in compilation, > so Eclipse work well ... I don't have idea You shouldn't need to upgrade to Java 1.7 to use the eclipse compiler in Maven, just use the plugin configuration shown below and Maven will compile your code using the eclipse compiler (also known as ecj). > -----Message d'origine----- > De : Stuart McCulloch [mailto:[email protected]] Envoyé : lundi 2 > décembre 2013 15:35 À : Maven Users List Objet : Re: Maven compilation > error "is not within its bound" > > On 2 Dec 2013, at 11:15, Adrien Ruffié <[email protected]> wrote: > >> I have found more information here: >> >> http://stackoverflow.com/questions/19266797/different-compilation-beh >> a >> vior-w >> ith-type-cast-between-eclipse-and-maven/19267547#19267547 >> >> that say: >> >> "Eclipse comes with its own Java compiler; Maven uses javac. Most of >> the time, both accept the same code but generics are complicated and >> compiler do have bugs. There are a couple of known bugs in javac of >> Java 6 which cause problems, for example. >> >> Oracle will not fix them. The solution is to use Java 7 to run Maven >> and configure the maven-compiler-plugin the generate Java 6 byte code >> (see Kumar Sambhav's answer)." >> >> >> But how I can use Eclipse to compile in Maven ? > > See > http://maven.apache.org/plugins/maven-compiler-plugin/non-javac-compil > ers.ht > ml - to use the eclipse compiler: > > <plugin> > <artifactId>maven-compiler-plugin</artifactId> > <version>3.1</version> > <configuration> > <compilerId>eclipse</compilerId> > </configuration> > <dependencies> > <dependency> > <groupId>org.codehaus.plexus</groupId> > <artifactId>plexus-compiler-eclipse</artifactId> > <version>2.3</version> > </dependency> > </dependencies> > </plugin> > >> Because I try this: >> >> <plugin> >> <groupId>org.apache.maven.plugins</groupId> >> <artifactId>maven-compiler-plugin</artifactId> >> <version>2.0.2</version> >> <configuration> >> <source>1.6</source> >> <target>1.6</target> >> <compilerVersion>1.6</compilerVersion> >> <fork>true</fork> >> <executable>java -classpath >> ${env.M2_REPO}/org/eclipse/jdt/${org.eclipse.jdt.core.version}/core-$ >> { >> or >> g.eclipse.jdt.core.version}.jar >> org.eclipse.jdt.internal.compiler.batch.Main -classpath rt.jar >> -sourcepath "src/main"</executable> >> </configuration> >> <dependencies> >> <dependency> >> <groupId>org.eclipse.jdt</groupId> >> <artifactId>core</artifactId> >> <version>3.3.0-v_771</version> >> </dependency> >> </dependencies> >> </plugin> >> >> But I get the following error I attached file >> >> Do you know how I can correctly build my project ? >> >> >> >> >> -----Message d'origine----- >> De : Alexander Kriegisch [mailto:[email protected]] Envoyé : >> lundi 2 décembre 2013 10:55 À : [email protected] Objet : Re: >> Maven compilation error "is not within its bound" >> >> Maven does not compile anything, the Java compiler does. The Maven >> Compiler Plugin is used to configure compilation according to your needs: >> http://maven.apache.org/plugins/maven-compiler-plugin/ >> >> Maven default source/target version is 1.5, as you can see in the >> parent >> POM: >> http://svn.apache.org/viewvc/maven/pom/tags/maven-parent-23/pom.xml?v >> i ew=co& revision=1434744&content-type=text%2Fplain >> >> If you want 1.6, please override like this: >> >> <plugin> >> <groupId>org.apache.maven.plugins</groupId> >> <artifactId>maven-compiler-plugin</artifactId> >> <version>3.0</version> >> <configuration> >> <source>1.6</source> >> <target>1.6</target> >> </configuration> >> </plugin> >> >> -- >> Alexander Kriegisch >> >> >> Adrien Ruffié schrieb am 02.12.2013 10:36: >> >>> Hello Alexander, >>> >>> Thank you very much for your response, >>> >>> For maven version is 3.0.4, the property java.version is set to 1.6 >>> and my Eclipse project is 1.6 in compiler properties tab. >>> I cannot use Maven+Eclipse to package my webapp because, it is >>> Jenkins with maven which package, but maven doesn't compile > correctly ... >>> The generics doesn't cause problem in the webapp (we have make >>> several testcases), but were I can see which compiler source/target >>> is used by Eclipse/Maven ? >>> >>> Great thank again >>> >>> Adrien >>> >>> -----Message d'origine----- >>> De : Alexander Kriegisch [mailto:[email protected]] Envoyé : >>> lundi 2 décembre 2013 10:24 À : Maven Users List Objet : Re: Maven >>> compilation error "is not within its bound" >>> >>> Do Eclipse and Maven use the same compiler source/target versions? >>> Which is you Maven version? >>> >>> To me it looks like you do have a problem with generics there. Maybe >>> you use a new feature from a Java version greater than the one used >>> by > Maven. >>> Hard to speculate without source code and pom.xml though. >>> >>> -- >>> Alexander Kriegisch >>> >>> >>> > Am 02.12.2013 um 10:13 schrieb Adrien Ruffié >>> <[email protected]>: >>> > >>> > Hello all, >>> > >>> > I have my webapp projet in Eclipse which compile correctly but >>> when I try to > perform "mvn clean compile", several >>> following logs >>> appears: >>> > >>> > [ERROR] >>> > >>> >> \Java\Workspaces\Indigo\mycompanycrm4\mycompany-webapp\src\main\java\ >> c >> om\myc >>> > >>> >> ompany\frontline\display\render\custom\ImageHandleBarRenderBoolCustom. >> java:[ >>> > 16,95] type parameter >>> > >>> >> com.mycompany.frontline.property.display.valuable.bean.BooleanMonoVal >> u >> eBean >>> > is not within its bound >>> > >>> > My class implements correctly generic, inteface, inheritance >>> tree > ... >>> the >>> > application work correctly in my tomcat launched by Eclipse, >>> but when I try > to package it the compiler block ... >>> > I'm not able to change the code, do you know a solution to >>> force Maven to > compile correctly ? Have you ever faced the >>> problem ? >>> > >>> > I attach the log file, if it can be help > > Thank you >>> very much > > Best regards, > > Adrien > > > >>> -------------------------------------------------------------------- >>> - > To unsubscribe, e-mail: [email protected] >>> > For additional commands, e-mail: [email protected] >>> >>> -------------------------------------------------------------------- >>> - To unsubscribe, e-mail: [email protected] >>> For additional commands, e-mail: [email protected] >>> >>> >>> >>> -------------------------------------------------------------------- >>> - To unsubscribe, e-mail: [email protected] >>> For additional commands, e-mail: [email protected] >>> >> >> --------------------------------------------------------------------- >> To unsubscribe, e-mail: [email protected] >> For additional commands, e-mail: [email protected] >> >> <log2.txt> >> --------------------------------------------------------------------- >> To unsubscribe, e-mail: [email protected] >> For additional commands, e-mail: [email protected] > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [email protected] > For additional commands, e-mail: [email protected] > > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [email protected] > For additional commands, e-mail: [email protected] > --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
[INFO] Scanning for projects... [INFO] [INFO] ------------------------------------------------------------------------ [INFO] Building mycompany Webapp Autumn2013-001-SNAPSHOT [INFO] ------------------------------------------------------------------------ [WARNING] The artifact jstl:jstl:jar:1.1.2 has been relocated to javax.servlet:jstl:jar:1.1.2 [INFO] [INFO] --- maven-clean-plugin:2.4.1:clean (default-clean) @ mycompany-webapp --- [INFO] Deleting C:\Java\Workspaces\Indigo\mycompanycrm4\mycompany-webapp\target [INFO] Deleting C:\Java\Workspaces\Indigo\mycompanycrm4\mycompany-webapp\src\main\webapp\WEB-INF\classes [INFO] [INFO] --- maven-resources-plugin:2.5:resources (default-resources) @ mycompany-webapp --- [debug] execute contextualize [WARNING] Using platform encoding (Cp1252 actually) to copy filtered resources, i.e. build is platform dependent! [INFO] Copying 192 resources [INFO] [INFO] --- maven-compiler-plugin:3.1:compile (default-compile) @ mycompany-webapp --- [INFO] Changes detected - recompiling the module! [INFO] ------------------------------------------------------------------------ [INFO] BUILD FAILURE [INFO] ------------------------------------------------------------------------ [INFO] Total time: 19.990s [INFO] Finished at: Mon Dec 02 17:19:33 CET 2013 [INFO] Final Memory: 29M/717M [INFO] ------------------------------------------------------------------------ [ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.1:compile (default-compile) on project mycompany-webapp: Compilation failure: Compilation failure: [ERROR] C:\Java\Workspaces\Indigo\mycompanycrm4\mycompany-webapp\src\main\java\com\mycompany\frontline\synchro\exchwebservice\EWSNotificationServlet.java:[208] Cannot switch on a value of type EventType. Only convertible int values or enum variables are permitted [ERROR] C:\Java\Workspaces\Indigo\mycompanycrm4\mycompany-webapp\src\main\java\com\mycompany\frontline\process\imp\ProcessRunnerFactory.java:[46] Cannot switch on a value of type ProcessInstanceType. Only convertible int values or enum variables are permitted [ERROR] C:\Java\Workspaces\Indigo\mycompanycrm4\mycompany-webapp\src\main\java\com\mycompany\frontline\util\filegenerator\values\IValuesActionJSP.java:[1] The package com.mycompany.frontline.util.filegenerator.values collides with a type [ERROR] C:\Java\Workspaces\Indigo\mycompanycrm4\mycompany-webapp\src\main\java\com\mycompany\frontline\synchro\ExternalSession.java:[362] Cannot switch on a value of type SyncConstants.ExternalSystemType. Only convertible int values or enum variables are permitted [ERROR] C:\Java\Workspaces\Indigo\mycompanycrm4\mycompany-webapp\src\main\java\com\mycompany\frontline\property\tag\criteria\OneChoiceCriteria.java:[50] Cannot switch on a value of type ChoiceCriteria.ChoiceType. Only convertible int values or enum variables are permitted [ERROR] C:\Java\Workspaces\Indigo\mycompanycrm4\mycompany-webapp\src\main\java\com\mycompany\frontline\util\filegenerator\GenerateJava.java:[17] The import com.mycompany.frontline.util.filegenerator.values cannot be resolved [ERROR] C:\Java\Workspaces\Indigo\mycompanycrm4\mycompany-webapp\src\main\java\com\mycompany\frontline\util\filegenerator\GenerateJava.java:[18] The import com.mycompany.frontline.util.filegenerator.values cannot be resolved [ERROR] C:\Java\Workspaces\Indigo\mycompanycrm4\mycompany-webapp\src\main\java\com\mycompany\frontline\util\filegenerator\GenerateJava.java:[24] IValuesJava cannot be resolved to a type [ERROR] C:\Java\Workspaces\Indigo\mycompanycrm4\mycompany-webapp\src\main\java\com\mycompany\frontline\util\filegenerator\GenerateJava.java:[31] IValuesJava cannot be resolved to a type [ERROR] C:\Java\Workspaces\Indigo\mycompanycrm4\mycompany-webapp\src\main\java\com\mycompany\frontline\util\filegenerator\GenerateJava.java:[31] ValuesJava cannot be resolved to a type [ERROR] C:\Java\Workspaces\Indigo\mycompanycrm4\mycompany-webapp\src\main\java\com\mycompany\frontline\util\filegenerator\GenerateJava.java:[44] IValuesJava cannot be resolved to a type [ERROR] C:\Java\Workspaces\Indigo\mycompanycrm4\mycompany-webapp\src\main\java\com\mycompany\frontline\synchro\SyncItem.java:[95] Cannot switch on a value of type SyncConstants.ExternalObjectType. Only convertible int values or enum variables are permitted [ERROR] C:\Java\Workspaces\Indigo\mycompanycrm4\mycompany-webapp\src\main\java\com\mycompany\frontline\synchro\SyncItem.java:[144] Cannot switch on a value of type SyncConstants.ExternalObjectType. Only convertible int values or enum variables are permitted [ERROR] C:\Java\Workspaces\Indigo\mycompanycrm4\mycompany-webapp\src\main\java\com\mycompany\frontline\synchro\SyncItem.java:[537] Cannot switch on a value of type SyncConstants.ExternalObjectType. Only convertible int values or enum variables are permitted [ERROR] C:\Java\Workspaces\Indigo\mycompanycrm4\mycompany-webapp\src\main\java\com\mycompany\frontline\synchro\SyncItem.java:[583] Cannot switch on a value of type SyncConstants.ExternalObjectType. Only convertible int values or enum variables are permitted [ERROR] C:\Java\Workspaces\Indigo\mycompanycrm4\mycompany-webapp\src\main\java\com\mycompany\frontline\synchro\googleapps\GoogleAppsItemFactory.java:[206] Cannot switch on a value of type SyncConstants.ExternalObjectType. Only convertible int values or enum variables are permitted [ERROR] C:\Java\Workspaces\Indigo\mycompanycrm4\mycompany-webapp\src\main\java\com\mycompany\frontline\kpi\methods\NetBusinessFaxingStatsMethod.java:[39] Cannot switch on a value of type NetBusinessFaxingStatsMethod.StatutsMail. Only convertible int values or enum variables are permitted [ERROR] C:\Java\Workspaces\Indigo\mycompanycrm4\mycompany-webapp\src\main\java\com\mycompany\frontline\display\render\ed\widget\AutocompleteEdRenderFob.java:[21] Cannot switch on a value of type AutocompleteEdRender.typeSelect. Only convertible int values or enum variables are permitted [ERROR] C:\Java\Workspaces\Indigo\mycompanycrm4\mycompany-webapp\src\main\java\com\mycompany\frontline\helper\MassEmailingBaseHelper.java:[636] Cannot switch on a value of type MassEmailingBaseHelper.RecipientMode. Only convertible int values or enum variables are permitted [ERROR] C:\Java\Workspaces\Indigo\mycompanycrm4\mycompany-webapp\src\main\java\com\mycompany\frontline\helper\MassEmailingBaseHelper.java:[711] Cannot switch on a value of type MassEmailingBaseHelper.RecipientFilter. Only convertible int values or enum variables are permitted [ERROR] C:\Java\Workspaces\Indigo\mycompanycrm4\mycompany-webapp\src\main\java\com\mycompany\frontline\helper\MassEmailingBaseHelper.java:[786] Cannot switch on a value of type MassEmailingBaseHelper.RecipientFilterOperation. Only convertible int values or enum variables are permitted [ERROR] C:\Java\Workspaces\Indigo\mycompanycrm4\mycompany-webapp\src\main\java\com\mycompany\frontline\kpi\tags\RenderAggregates.java:[305] Cannot switch on a value of type AxisType. Only convertible int values or enum variables are permitted [ERROR] C:\Java\Workspaces\Indigo\mycompanycrm4\mycompany-webapp\src\main\java\com\mycompany\frontline\kpi\tags\RenderAggregates.java:[339] Cannot switch on a value of type TimeDisplay. Only convertible int values or enum variables are permitted [ERROR] C:\Java\Workspaces\Indigo\mycompanycrm4\mycompany-webapp\src\main\java\com\mycompany\frontline\util\filegenerator\values\IValuesJava.java:[1] The package com.mycompany.frontline.util.filegenerator.values collides with a type [ERROR] C:\Java\Workspaces\Indigo\mycompanycrm4\mycompany-webapp\src\main\java\com\mycompany\frontline\kpi\tags\SdiTag.java:[473] Cannot switch on a value of type AxisType. Only convertible int values or enum variables are permitted [ERROR] C:\Java\Workspaces\Indigo\mycompanycrm4\mycompany-webapp\src\main\java\com\mycompany\frontline\util\filegenerator\values\bean\ValuesObject.java:[1] The package com.mycompany.frontline.util.filegenerator.values.bean collides with a type [ERROR] C:\Java\Workspaces\Indigo\mycompanycrm4\mycompany-webapp\src\main\java\com\mycompany\frontline\util\filegenerator\values\bean\ValuesObject.java:[12] The import com.mycompany.frontline.util.filegenerator.values cannot be resolved [ERROR] C:\Java\Workspaces\Indigo\mycompanycrm4\mycompany-webapp\src\main\java\com\mycompany\frontline\util\filegenerator\values\bean\ValuesObject.java:[13] The import com.mycompany.frontline.util.filegenerator.values cannot be resolved [ERROR] C:\Java\Workspaces\Indigo\mycompanycrm4\mycompany-webapp\src\main\java\com\mycompany\frontline\synchro\ExternalCollection.java:[118] Cannot switch on a value of type SyncConstants.ExternalSystemType. Only convertible int values or enum variables are permitted [ERROR] C:\Java\Workspaces\Indigo\mycompanycrm4\mycompany-webapp\src\main\java\com\mycompany\frontline\controller\actions\PopulationMassEmailingAction.java:[56] Cannot switch on a value of type PopulationMassEmailingAction.PopulationType. Only convertible int values or enum variables are permitted [ERROR] C:\Java\Workspaces\Indigo\mycompanycrm4\mycompany-webapp\src\main\java\com\mycompany\frontline\util\filegenerator\GenerateJsp.java:[17] The import com.mycompany.frontline.util.filegenerator.values cannot be resolved [ERROR] C:\Java\Workspaces\Indigo\mycompanycrm4\mycompany-webapp\src\main\java\com\mycompany\frontline\util\filegenerator\GenerateJsp.java:[18] The import com.mycompany.frontline.util.filegenerator.values cannot be resolved [ERROR] C:\Java\Workspaces\Indigo\mycompanycrm4\mycompany-webapp\src\main\java\com\mycompany\frontline\util\filegenerator\GenerateJsp.java:[23] IValuesCustomJSP cannot be resolved to a type [ERROR] C:\Java\Workspaces\Indigo\mycompanycrm4\mycompany-webapp\src\main\java\com\mycompany\frontline\util\filegenerator\GenerateJsp.java:[28] IValuesCustomJSP cannot be resolved to a type [ERROR] C:\Java\Workspaces\Indigo\mycompanycrm4\mycompany-webapp\src\main\java\com\mycompany\frontline\util\filegenerator\GenerateJsp.java:[28] ValuesCustomJSP cannot be resolved to a type [ERROR] C:\Java\Workspaces\Indigo\mycompanycrm4\mycompany-webapp\src\main\java\com\mycompany\frontline\util\filegenerator\GenerateJsp.java:[37] IValuesCustomJSP cannot be resolved to a type [ERROR] C:\Java\Workspaces\Indigo\mycompanycrm4\mycompany-webapp\src\main\java\com\mycompany\frontline\util\filegenerator\GenerateJsp.java:[42] IValuesCustomJSP cannot be resolved to a type [ERROR] C:\Java\Workspaces\Indigo\mycompanycrm4\mycompany-webapp\src\main\java\com\mycompany\frontline\util\filegenerator\values\bean\ValuesField.java:[1] The package com.mycompany.frontline.util.filegenerator.values.bean collides with a type [ERROR] C:\Java\Workspaces\Indigo\mycompanycrm4\mycompany-webapp\src\main\java\com\mycompany\frontline\util\filegenerator\values\bean\ValuesField.java:[5] The import com.mycompany.frontline.util.filegenerator.values cannot be resolved [ERROR] C:\Java\Workspaces\Indigo\mycompanycrm4\mycompany-webapp\src\main\java\com\mycompany\frontline\util\filegenerator\values\bean\ValuesEditPage.java:[1] The package com.mycompany.frontline.util.filegenerator.values.bean collides with a type [ERROR] C:\Java\Workspaces\Indigo\mycompanycrm4\mycompany-webapp\src\main\java\com\mycompany\frontline\util\filegenerator\values\bean\ValuesEditPage.java:[8] The import com.mycompany.frontline.util.filegenerator.values cannot be resolved [ERROR] C:\Java\Workspaces\Indigo\mycompanycrm4\mycompany-webapp\src\main\java\com\mycompany\frontline\util\filegenerator\values\bean\ValuesEditPage.java:[9] The import com.mycompany.frontline.util.filegenerator.values cannot be resolved [ERROR] C:\Java\Workspaces\Indigo\mycompanycrm4\mycompany-webapp\src\main\java\com\mycompany\frontline\util\filegenerator\values\bean\ValuesEditPage.java:[10] The import com.mycompany.frontline.util.filegenerator.values cannot be resolved [ERROR] C:\Java\Workspaces\Indigo\mycompanycrm4\mycompany-webapp\src\main\java\com\mycompany\frontline\synchro\ExternalItemFactory.java:[126] Cannot switch on a value of type SyncConstants.ExternalSystemType. Only convertible int values or enum variables are permitted [ERROR] C:\Java\Workspaces\Indigo\mycompanycrm4\mycompany-webapp\src\main\java\com\mycompany\frontline\kpi\Aggregate.java:[10] Cannot switch on a value of type Aggregate. Only convertible int values or enum variables are permitted [ERROR] C:\Java\Workspaces\Indigo\mycompanycrm4\mycompany-webapp\src\main\java\com\mycompany\frontline\helper\SnapshotDisplayBaseHelper.java:[198] Cannot switch on a value of type AxisType. Only convertible int values or enum variables are permitted [ERROR] C:\Java\Workspaces\Indigo\mycompanycrm4\mycompany-webapp\src\main\java\com\mycompany\frontline\synchro\domino\DominoItemFactory.java:[154] Cannot switch on a value of type SyncConstants.ExternalObjectType. Only convertible int values or enum variables are permitted [ERROR] C:\Java\Workspaces\Indigo\mycompanycrm4\mycompany-webapp\src\main\java\com\mycompany\frontline\synchro\domino\DominoItemFactory.java:[182] Cannot switch on a value of type SyncConstants.ExternalObjectType. Only convertible int values or enum variables are permitted [ERROR] C:\Java\Workspaces\Indigo\mycompanycrm4\mycompany-webapp\src\main\java\com\mycompany\frontline\util\filegenerator\values\IValuesCustomJSP.java:[1] The package com.mycompany.frontline.util.filegenerator.values collides with a type [ERROR] C:\Java\Workspaces\Indigo\mycompanycrm4\mycompany-webapp\src\main\java\com\mycompany\frontline\process\business\impl\ProcessEngine.java:[843] Cannot switch on a value of type ProcessActorRule. Only convertible int values or enum variables are permitted [ERROR] C:\Java\Workspaces\Indigo\mycompanycrm4\mycompany-webapp\src\main\java\com\mycompany\frontline\util\filegenerator\values\bean\ValuesReadPage.java:[1] The package com.mycompany.frontline.util.filegenerator.values.bean collides with a type [ERROR] C:\Java\Workspaces\Indigo\mycompanycrm4\mycompany-webapp\src\main\java\com\mycompany\frontline\util\filegenerator\values\bean\ValuesReadPage.java:[8] The import com.mycompany.frontline.util.filegenerator.values cannot be resolved [ERROR] C:\Java\Workspaces\Indigo\mycompanycrm4\mycompany-webapp\src\main\java\com\mycompany\frontline\util\filegenerator\values\bean\ValuesReadPage.java:[9] The import com.mycompany.frontline.util.filegenerator.values cannot be resolved [ERROR] C:\Java\Workspaces\Indigo\mycompanycrm4\mycompany-webapp\src\main\java\com\mycompany\frontline\util\filegenerator\values\bean\ValuesReadPage.java:[10] The import com.mycompany.frontline.util.filegenerator.values cannot be resolved [ERROR] C:\Java\Workspaces\Indigo\mycompanycrm4\mycompany-webapp\src\main\java\com\mycompany\frontline\util\filegenerator\values\bean\ValuesReadPage.java:[11] The import com.mycompany.frontline.util.filegenerator.values cannot be resolved [ERROR] C:\Java\Workspaces\Indigo\mycompanycrm4\mycompany-webapp\src\main\java\com\mycompany\frontline\property\tag\criteria\ManyChoiceCriteria.java:[52] Cannot switch on a value of type ChoiceCriteria.ChoiceType. Only convertible int values or enum variables are permitted [ERROR] C:\Java\Workspaces\Indigo\mycompanycrm4\mycompany-webapp\src\main\java\com\mycompany\frontline\kpi\TimeDisplay.java:[28] Cannot switch on a value of type TimeGranularity. Only convertible int values or enum variables are permitted [ERROR] C:\Java\Workspaces\Indigo\mycompanycrm4\mycompany-webapp\src\main\java\com\mycompany\frontline\kpi\TimeDisplay.java:[87] Cannot switch on a value of type TimeDisplay. Only convertible int values or enum variables are permitted [ERROR] C:\Java\Workspaces\Indigo\mycompanycrm4\mycompany-webapp\src\main\java\com\mycompany\frontline\synchro\webdavex\WebDavExCollection.java:[87] Cannot switch on a value of type SyncConstants.ExternalObjectType. Only convertible int values or enum variables are permitted [ERROR] C:\Java\Workspaces\Indigo\mycompanycrm4\mycompany-webapp\src\main\java\com\mycompany\frontline\util\filegenerator\values\IValuesFieldJSP.java:[1] The package com.mycompany.frontline.util.filegenerator.values collides with a type [ERROR] C:\Java\Workspaces\Indigo\mycompanycrm4\mycompany-webapp\src\main\java\com\mycompany\frontline\sales\EnterpriseStatusUpdaterFactory.java:[14] Cannot switch on a value of type AsynchronousOperationOrigin. Only convertible int values or enum variables are permitted [ERROR] C:\Java\Workspaces\Indigo\mycompanycrm4\mycompany-webapp\src\main\java\com\mycompany\frontline\synchro\SyncManager.java:[2110] Cannot switch on a value of type SyncConstants.ExternalObjectType. Only convertible int values or enum variables are permitted [ERROR] C:\Java\Workspaces\Indigo\mycompanycrm4\mycompany-webapp\src\main\java\com\mycompany\frontline\synchro\SyncManager.java:[2701] Cannot switch on a value of type SyncConstants.ConflictResolutionType. Only convertible int values or enum variables are permitted [ERROR] C:\Java\Workspaces\Indigo\mycompanycrm4\mycompany-webapp\src\main\java\com\mycompany\frontline\synchro\SyncManager.java:[3046] Cannot switch on a value of type SyncConstants.ConflictResolutionType. Only convertible int values or enum variables are permitted [ERROR] C:\Java\Workspaces\Indigo\mycompanycrm4\mycompany-webapp\src\main\java\com\mycompany\frontline\synchro\SyncManager.java:[3664] Cannot switch on a value of type SyncConstants.ConflictResolutionType. Only convertible int values or enum variables are permitted [ERROR] C:\Java\Workspaces\Indigo\mycompanycrm4\mycompany-webapp\src\main\java\com\mycompany\frontline\synchro\SyncManager.java:[4211] Cannot switch on a value of type SyncConstants.ConflictResolutionType. Only convertible int values or enum variables are permitted [ERROR] C:\Java\Workspaces\Indigo\mycompanycrm4\mycompany-webapp\src\main\java\com\mycompany\frontline\initializers\SnapshotDisplayWriteInitializer.java:[172] Cannot switch on a value of type AxisType. Only convertible int values or enum variables are permitted [ERROR] C:\Java\Workspaces\Indigo\mycompanycrm4\mycompany-webapp\src\main\java\com\mycompany\frontline\helper\DecisionDataBaseHelper.java:[192] Cannot switch on a value of type DecisionDataBaseHelper.ReportType. Only convertible int values or enum variables are permitted [ERROR] C:\Java\Workspaces\Indigo\mycompanycrm4\mycompany-webapp\src\main\java\com\mycompany\frontline\helper\DecisionDataBaseHelper.java:[341] Cannot switch on a value of type DecisionDataBaseHelper.ReportType. Only convertible int values or enum variables are permitted [ERROR] C:\Java\Workspaces\Indigo\mycompanycrm4\mycompany-webapp\src\main\java\com\mycompany\frontline\property\tag\field\DateInput.java:[55] Cannot switch on a value of type Datemycompany.DateType. Only convertible int values or enum variables are permitted [ERROR] C:\Java\Workspaces\Indigo\mycompanycrm4\mycompany-webapp\src\main\java\com\mycompany\frontline\helper\PopulationGeneratorSetOperations.java:[186] Cannot switch on a value of type PopulationBaseHelper.PopulationOperation. Only convertible int values or enum variables are permitted [ERROR] C:\Java\Workspaces\Indigo\mycompanycrm4\mycompany-webapp\src\main\java\com\mycompany\frontline\util\filegenerator\values\IValuesReadPage.java:[1] The package com.mycompany.frontline.util.filegenerator.values collides with a type [ERROR] C:\Java\Workspaces\Indigo\mycompanycrm4\mycompany-webapp\src\main\java\com\mycompany\frontline\helper\SnapshotBaseHelper.java:[57] Cannot switch on a value of type RunFrequency. Only convertible int values or enum variables are permitted [ERROR] C:\Java\Workspaces\Indigo\mycompanycrm4\mycompany-webapp\src\main\java\com\mycompany\frontline\synchro\googleapps\GoogleAppsCollection.java:[65] Cannot switch on a value of type SyncConstants.ExternalObjectType. Only convertible int values or enum variables are permitted [ERROR] C:\Java\Workspaces\Indigo\mycompanycrm4\mycompany-webapp\src\main\java\com\mycompany\frontline\synchro\googleapps\GoogleAppsCollection.java:[135] Cannot switch on a value of type SyncConstants.ExternalObjectType. Only convertible int values or enum variables are permitted [ERROR] C:\Java\Workspaces\Indigo\mycompanycrm4\mycompany-webapp\src\main\java\com\mycompany\frontline\synchro\googleapps\GoogleAppsCollection.java:[164] Cannot switch on a value of type SyncConstants.ExternalObjectType. Only convertible int values or enum variables are permitted [ERROR] C:\Java\Workspaces\Indigo\mycompanycrm4\mycompany-webapp\src\main\java\com\mycompany\frontline\synchro\googleapps\GoogleAppsCollection.java:[189] Cannot switch on a value of type SyncConstants.ExternalObjectType. Only convertible int values or enum variables are permitted [ERROR] C:\Java\Workspaces\Indigo\mycompanycrm4\mycompany-webapp\src\main\java\com\mycompany\frontline\synchro\exchwebservice\EWSItemFactory.java:[104] Cannot switch on a value of type SyncConstants.ExternalObjectType. Only convertible int values or enum variables are permitted [ERROR] C:\Java\Workspaces\Indigo\mycompanycrm4\mycompany-webapp\src\main\java\com\mycompany\frontline\synchro\webdavex\WebDavExItemFactory.java:[375] Cannot switch on a value of type SyncConstants.ExternalObjectType. Only convertible int values or enum variables are permitted [ERROR] C:\Java\Workspaces\Indigo\mycompanycrm4\mycompany-webapp\src\main\java\com\mycompany\frontline\synchro\exchwebservice\EWSCollection.java:[79] Cannot switch on a value of type SyncConstants.ExternalObjectType. Only convertible int values or enum variables are permitted [ERROR] C:\Java\Workspaces\Indigo\mycompanycrm4\mycompany-webapp\src\main\java\com\mycompany\frontline\synchro\exchwebservice\EWSCollection.java:[196] Cannot switch on a value of type SyncConstants.ExternalObjectType. Only convertible int values or enum variables are permitted [ERROR] C:\Java\Workspaces\Indigo\mycompanycrm4\mycompany-webapp\src\main\java\com\mycompany\frontline\synchro\exchwebservice\EWSCollection.java:[223] Cannot switch on a value of type SyncConstants.ExternalObjectType. Only convertible int values or enum variables are permitted [ERROR] C:\Java\Workspaces\Indigo\mycompanycrm4\mycompany-webapp\src\main\java\com\mycompany\frontline\synchro\exchwebservice\EWSCollection.java:[256] Cannot switch on a value of type SyncConstants.ExternalObjectType. Only convertible int values or enum variables are permitted [ERROR] C:\Java\Workspaces\Indigo\mycompanycrm4\mycompany-webapp\src\main\java\com\mycompany\frontline\display\render\handlebar\AutocompleteHandleBarRender.java:[72] Cannot switch on a value of type AutocompleteHandleBarRender.typeSelect. Only convertible int values or enum variables are permitted [ERROR] C:\Java\Workspaces\Indigo\mycompanycrm4\mycompany-webapp\src\main\java\com\mycompany\frontline\kpi\methods\NetBusinessEmailingStatsMethod.java:[43] Cannot switch on a value of type NetBusinessEmailingStatsMethod.StatutsMail. Only convertible int values or enum variables are permitted [ERROR] C:\Java\Workspaces\Indigo\mycompanycrm4\mycompany-webapp\src\main\java\com\mycompany\frontline\synchro\ExternalContextFactory.java:[51] Cannot switch on a value of type SyncConstants.ExternalSystemType. Only convertible int values or enum variables are permitted [ERROR] C:\Java\Workspaces\Indigo\mycompanycrm4\mycompany-webapp\src\main\java\com\mycompany\frontline\util\filegenerator\values\IValuesMapping.java:[1] The package com.mycompany.frontline.util.filegenerator.values collides with a type [ERROR] C:\Java\Workspaces\Indigo\mycompanycrm4\mycompany-webapp\src\main\java\com\mycompany\frontline\kpi\DataSetRecorder.java:[440] Cannot switch on a value of type AxisType. Only convertible int values or enum variables are permitted [ERROR] C:\Java\Workspaces\Indigo\mycompanycrm4\mycompany-webapp\src\main\java\com\mycompany\frontline\kpi\DataSetRecorder.java:[462] Cannot switch on a value of type AxisType. Only convertible int values or enum variables are permitted [ERROR] C:\Java\Workspaces\Indigo\mycompanycrm4\mycompany-webapp\src\main\java\com\mycompany\frontline\util\filegenerator\SearchValue.java:[3] The import com.mycompany.frontline.util.filegenerator.values cannot be resolved [ERROR] C:\Java\Workspaces\Indigo\mycompanycrm4\mycompany-webapp\src\main\java\com\mycompany\frontline\util\filegenerator\SearchValue.java:[4] The import com.mycompany.frontline.util.filegenerator.values cannot be resolved [ERROR] C:\Java\Workspaces\Indigo\mycompanycrm4\mycompany-webapp\src\main\java\com\mycompany\frontline\util\filegenerator\SearchValue.java:[5] The import com.mycompany.frontline.util.filegenerator.values cannot be resolved [ERROR] C:\Java\Workspaces\Indigo\mycompanycrm4\mycompany-webapp\src\main\java\com\mycompany\frontline\util\filegenerator\SearchValue.java:[6] The import com.mycompany.frontline.util.filegenerator.values cannot be resolved [ERROR] C:\Java\Workspaces\Indigo\mycompanycrm4\mycompany-webapp\src\main\java\com\mycompany\frontline\util\filegenerator\SearchValue.java:[7] The import com.mycompany.frontline.util.filegenerator.values cannot be resolved [ERROR] C:\Java\Workspaces\Indigo\mycompanycrm4\mycompany-webapp\src\main\java\com\mycompany\frontline\util\filegenerator\SearchValue.java:[8] The import com.mycompany.frontline.util.filegenerator.values cannot be resolved [ERROR] C:\Java\Workspaces\Indigo\mycompanycrm4\mycompany-webapp\src\main\java\com\mycompany\frontline\util\filegenerator\SearchValue.java:[12] IValuesJava cannot be resolved to a type [ERROR] C:\Java\Workspaces\Indigo\mycompanycrm4\mycompany-webapp\src\main\java\com\mycompany\frontline\util\filegenerator\SearchValue.java:[13] ValuesJava cannot be resolved to a type [ERROR] C:\Java\Workspaces\Indigo\mycompanycrm4\mycompany-webapp\src\main\java\com\mycompany\frontline\util\filegenerator\SearchValue.java:[13] ValuesJava cannot be resolved to a type [ERROR] C:\Java\Workspaces\Indigo\mycompanycrm4\mycompany-webapp\src\main\java\com\mycompany\frontline\util\filegenerator\SearchValue.java:[25] IValuesCustomJSP cannot be resolved to a type [ERROR] C:\Java\Workspaces\Indigo\mycompanycrm4\mycompany-webapp\src\main\java\com\mycompany\frontline\util\filegenerator\SearchValue.java:[26] ValuesCustomJSP cannot be resolved to a type [ERROR] C:\Java\Workspaces\Indigo\mycompanycrm4\mycompany-webapp\src\main\java\com\mycompany\frontline\util\filegenerator\SearchValue.java:[26] ValuesCustomJSP cannot be resolved to a type [ERROR] C:\Java\Workspaces\Indigo\mycompanycrm4\mycompany-webapp\src\main\java\com\mycompany\frontline\util\filegenerator\SearchValue.java:[48] IValuesFieldJSP cannot be resolved to a type [ERROR] C:\Java\Workspaces\Indigo\mycompanycrm4\mycompany-webapp\src\main\java\com\mycompany\frontline\util\filegenerator\SearchValue.java:[53] IValuesActionJSP cannot be resolved to a type [ERROR] C:\Java\Workspaces\Indigo\mycompanycrm4\mycompany-webapp\src\main\java\com\mycompany\frontline\controller\actions\PopulationFaxingAction.java:[56] Cannot switch on a value of type PopulationFaxingAction.PopulationType. Only convertible int values or enum variables are permitted [ERROR] C:\Java\Workspaces\Indigo\mycompanycrm4\mycompany-webapp\src\main\java\com\mycompany\frontline\synchro\exchwebservice\EWSContact.java:[135] Cannot switch on a value of type EWSConstants.ContactFieldType. Only convertible int values or enum variables are permitted [ERROR] C:\Java\Workspaces\Indigo\mycompanycrm4\mycompany-webapp\src\main\java\com\mycompany\frontline\synchro\exchwebservice\EWSContact.java:[308] Cannot switch on a value of type SyncConstants.ExternalObjectType. Only convertible int values or enum variables are permitted [ERROR] C:\Java\Workspaces\Indigo\mycompanycrm4\mycompany-webapp\src\main\java\com\mycompany\frontline\synchro\domino\DominoCollection.java:[137] Cannot switch on a value of type SyncConstants.ExternalObjectType. Only convertible int values or enum variables are permitted [ERROR] C:\Java\Workspaces\Indigo\mycompanycrm4\mycompany-webapp\src\main\java\com\mycompany\frontline\kpi\tags\FilterHelper.java:[93] Cannot switch on a value of type AxisType. Only convertible int values or enum variables are permitted [ERROR] C:\Java\Workspaces\Indigo\mycompanycrm4\mycompany-webapp\src\main\java\com\mycompany\frontline\util\filegenerator\values\bean\ValuesCustomJSP.java:[1] The package com.mycompany.frontline.util.filegenerator.values.bean collides with a type [ERROR] C:\Java\Workspaces\Indigo\mycompanycrm4\mycompany-webapp\src\main\java\com\mycompany\frontline\util\filegenerator\values\bean\ValuesCustomJSP.java:[7] The import com.mycompany.frontline.util.filegenerator.values cannot be resolved [ERROR] C:\Java\Workspaces\Indigo\mycompanycrm4\mycompany-webapp\src\main\java\com\mycompany\frontline\util\filegenerator\values\bean\ValuesCustomJSP.java:[8] The import com.mycompany.frontline.util.filegenerator.values cannot be resolved [ERROR] C:\Java\Workspaces\Indigo\mycompanycrm4\mycompany-webapp\src\main\java\com\mycompany\frontline\util\filegenerator\values\bean\ValuesCustomJSP.java:[9] The import com.mycompany.frontline.util.filegenerator.values cannot be resolved [ERROR] C:\Java\Workspaces\Indigo\mycompanycrm4\mycompany-webapp\src\main\java\com\mycompany\frontline\util\filegenerator\values\bean\ValuesCustomJSP.java:[10] The import com.mycompany.frontline.util.filegenerator.values cannot be resolved [ERROR] C:\Java\Workspaces\Indigo\mycompanycrm4\mycompany-webapp\src\main\java\com\mycompany\frontline\util\filegenerator\values\bean\ValuesCustomJSP.java:[11] The import com.mycompany.frontline.util.filegenerator.values cannot be resolved [ERROR] C:\Java\Workspaces\Indigo\mycompanycrm4\mycompany-webapp\src\main\java\com\mycompany\frontline\services\geolocalization\impl\GoogleGeolocalizationServiceImpl.java:[140] Cannot switch on a value of type GeocoderStatus. Only convertible int values or enum variables are permitted [ERROR] C:\Java\Workspaces\Indigo\mycompanycrm4\mycompany-webapp\src\main\java\com\mycompany\frontline\util\filegenerator\values\IValuesEditPage.java:[1] The package com.mycompany.frontline.util.filegenerator.values collides with a type [ERROR] C:\Java\Workspaces\Indigo\mycompanycrm4\mycompany-webapp\src\main\java\com\mycompany\frontline\util\filegenerator\values\bean\ValuesMapping.java:[1] The package com.mycompany.frontline.util.filegenerator.values.bean collides with a type [ERROR] C:\Java\Workspaces\Indigo\mycompanycrm4\mycompany-webapp\src\main\java\com\mycompany\frontline\util\filegenerator\values\bean\ValuesMapping.java:[5] The import com.mycompany.frontline.util.filegenerator.values cannot be resolved [ERROR] C:\Java\Workspaces\Indigo\mycompanycrm4\mycompany-webapp\src\main\java\com\mycompany\frontline\util\filegenerator\values\bean\ValuesMapping.java:[6] The import com.mycompany.frontline.util.filegenerator.values cannot be resolved [ERROR] C:\Java\Workspaces\Indigo\mycompanycrm4\mycompany-webapp\src\main\java\com\mycompany\frontline\kpi\controller\SnapshotDisplaySave.java:[183] Cannot switch on a value of type AxisType. Only convertible int values or enum variables are permitted [ERROR] C:\Java\Workspaces\Indigo\mycompanycrm4\mycompany-webapp\src\main\java\com\mycompany\frontline\display\render\ed\widget\AutocompleteEdRenderMultiFob.java:[17] Cannot switch on a value of type AutocompleteEdRender.typeSelect. Only convertible int values or enum variables are permitted [ERROR] C:\Java\Workspaces\Indigo\mycompanycrm4\mycompany-webapp\src\main\java\org\apache\solr\request\SimpleFacets.java:[826] Cannot switch on a value of type TrieField.TrieTypes. Only convertible int values or enum variables are permitted [ERROR] C:\Java\Workspaces\Indigo\mycompanycrm4\mycompany-webapp\src\main\java\com\mycompany\frontline\util\filegenerator\values\bean\ValuesJava.java:[1] The package com.mycompany.frontline.util.filegenerator.values.bean collides with a type [ERROR] C:\Java\Workspaces\Indigo\mycompanycrm4\mycompany-webapp\src\main\java\com\mycompany\frontline\util\filegenerator\values\bean\ValuesJava.java:[6] The import com.mycompany.frontline.util.filegenerator.values cannot be resolved [ERROR] C:\Java\Workspaces\Indigo\mycompanycrm4\mycompany-webapp\src\main\java\com\mycompany\frontline\util\filegenerator\values\bean\ValuesJava.java:[7] The import com.mycompany.frontline.util.filegenerator.values cannot be resolved [ERROR] C:\Java\Workspaces\Indigo\mycompanycrm4\mycompany-webapp\src\main\java\com\mycompany\frontline\synchro\exchwebservice\EWSHandlerThread.java:[145] Cannot switch on a value of type SyncConstants.ExternalNotificationType. Only convertible int values or enum variables are permitted [ERROR] C:\Java\Workspaces\Indigo\mycompanycrm4\mycompany-webapp\src\main\java\com\mycompany\frontline\util\filegenerator\values\IValuesObject.java:[1] The package com.mycompany.frontline.util.filegenerator.values collides with a type [ERROR] C:\Java\Workspaces\Indigo\mycompanycrm4\mycompany-webapp\src\main\java\com\mycompany\frontline\synchro\exchwebservice\EWSSession.java:[682] Cannot switch on a value of type SyncConstants.ExternalObjectType. Only convertible int values or enum variables are permitted [ERROR] C:\Java\Workspaces\Indigo\mycompanycrm4\mycompany-webapp\src\main\java\com\mycompany\frontline\synchro\exchwebservice\EWSSession.java:[702] Cannot switch on a value of type SyncConstants.ExternalObjectType. Only convertible int values or enum variables are permitted [ERROR] C:\Java\Workspaces\Indigo\mycompanycrm4\mycompany-webapp\src\main\java\com\mycompany\frontline\synchro\exchwebservice\EWSSession.java:[728] Cannot switch on a value of type SyncConstants.ExternalObjectType. Only convertible int values or enum variables are permitted [ERROR] C:\Java\Workspaces\Indigo\mycompanycrm4\mycompany-webapp\src\main\java\com\mycompany\frontline\synchro\exchwebservice\EWSSession.java:[788] Cannot switch on a value of type SyncConstants.ExternalObjectType. Only convertible int values or enum variables are permitted [ERROR] C:\Java\Workspaces\Indigo\mycompanycrm4\mycompany-webapp\src\main\java\com\mycompany\frontline\synchro\exchwebservice\EWSSession.java:[808] Cannot switch on a value of type SyncConstants.ExternalObjectType. Only convertible int values or enum variables are permitted [ERROR] C:\Java\Workspaces\Indigo\mycompanycrm4\mycompany-webapp\src\main\java\com\mycompany\frontline\synchro\exchwebservice\EWSSession.java:[834] Cannot switch on a value of type SyncConstants.ExternalObjectType. Only convertible int values or enum variables are permitted [ERROR] C:\Java\Workspaces\Indigo\mycompanycrm4\mycompany-webapp\src\main\java\com\mycompany\frontline\synchro\exchwebservice\EWSSession.java:[898] Cannot switch on a value of type SyncConstants.ExternalObjectType. Only convertible int values or enum variables are permitted [ERROR] C:\Java\Workspaces\Indigo\mycompanycrm4\mycompany-webapp\src\main\java\com\mycompany\frontline\util\filegenerator\values\bean\ValuesActionJSP.java:[1] The package com.mycompany.frontline.util.filegenerator.values.bean collides with a type [ERROR] C:\Java\Workspaces\Indigo\mycompanycrm4\mycompany-webapp\src\main\java\com\mycompany\frontline\util\filegenerator\values\bean\ValuesActionJSP.java:[3] The import com.mycompany.frontline.util.filegenerator.values cannot be resolved [ERROR] C:\Java\Workspaces\Indigo\mycompanycrm4\mycompany-webapp\src\main\java\com\mycompany\frontline\kpi\tags\TdFormatHelper.java:[15] Cannot switch on a value of type TimeDisplay. Only convertible int values or enum variables are permitted [ERROR] C:\Java\Workspaces\Indigo\mycompanycrm4\mycompany-webapp\src\main\java\com\mycompany\frontline\util\DateUtil.java:[56] Cannot switch on a value of type DateUtil.Days. Only convertible int values or enum variables are permitted [ERROR] C:\Java\Workspaces\Indigo\mycompanycrm4\mycompany-webapp\src\main\java\com\mycompany\frontline\util\filegenerator\values.java:[10] The type Values is already defined [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/MojoFailureException
--------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
