Re: Apidocs build failure on 4.14 with java 11 and centos 7

2020-12-01 Thread Greg Goodrich
I believe that will work, thank you!!!

--
Greg Goodrich | IP Pathways
Senior Developer
3600 109th Street | Urbandale, IA 50322
p. 515.422.9346 | e. ggoodr...@ippathways.com

On Dec 1, 2020, at 1:43 PM, Wei ZHOU 
mailto:ustcweiz...@gmail.com>> wrote:

Hi Greg,

Can you try "update-alternatives --config java" ?

-Wei




On Tue, 1 Dec 2020 at 19:35, Greg Goodrich 
mailto:ggoodr...@ippathways.com>> wrote:

I’m working on setting up an automated build for CloudStack for 4.14 using
java 11 in a Centos 7 Docker container and was wondering if anyone has
experienced this, and how you solved it. I’m trying to leverage stock
CentOs RPMs, and realized that the Maven install seems to be hard-wired to
Java 8, thus installing it. I’ve also installed Java 11. However, the Java
8 binaries are installed in the ‘default’ location of /usr/bin/. I’m
setting JAVA_HOME env var so that Maven uses Java 11 when building.
However, the Apidocs build-apidoc.sh script just invokes java within it,
without respect to JAVA_HOME. This causes the build to fail with the
following error:


Exception in thread "main" java.lang.UnsupportedClassVersionError:
com/cloud/api/doc/ApiXmlDocWriter has been compiled by a more recent
version of the Java Runtime (class file version 55.0), this version of the
Java Runtime only recognizes class file versions up to 52.0

I can manually fix this in a number of ways, but was wondering if the
community has guidance on the best way to go about this. Some
thoughts are:


 *   Don’t use the RPM for Maven, and instead pull a binary bistro down
and install manually via tar, thus alleviating the pinning to Java 8. Then
I could uninstall Java 8 (I use a different container for older CloudStack
builds) and just have Java 11 in the container.
 *   Manually move the Java 11 binaries into /usr/bin/, overwriting the
Java 8 binaries. This seems complex, as there are bound to be other
dependencies that could get missed in this manual step, such as libraries,
etc.
 *   Fix build-apidocs.sh to respect JAVA_HOME so that invokes the
correct java binaries.
 *   Some other option that I’ve not yet thought of.

Thanks.

--
Greg Goodrich | IP Pathways
Senior Developer
3600 109th Street | Urbandale, IA 50322
p. 515.422.9346 | e. 
ggoodr...@ippathways.com



Re: Apidocs build failure on 4.14 with java 11 and centos 7

2020-12-01 Thread Wei ZHOU
Hi Greg,

Can you try "update-alternatives --config java" ?

-Wei




On Tue, 1 Dec 2020 at 19:35, Greg Goodrich  wrote:

> I’m working on setting up an automated build for CloudStack for 4.14 using
> java 11 in a Centos 7 Docker container and was wondering if anyone has
> experienced this, and how you solved it. I’m trying to leverage stock
> CentOs RPMs, and realized that the Maven install seems to be hard-wired to
> Java 8, thus installing it. I’ve also installed Java 11. However, the Java
> 8 binaries are installed in the ‘default’ location of /usr/bin/. I’m
> setting JAVA_HOME env var so that Maven uses Java 11 when building.
> However, the Apidocs build-apidoc.sh script just invokes java within it,
> without respect to JAVA_HOME. This causes the build to fail with the
> following error:
>
>
> Exception in thread "main" java.lang.UnsupportedClassVersionError:
> com/cloud/api/doc/ApiXmlDocWriter has been compiled by a more recent
> version of the Java Runtime (class file version 55.0), this version of the
> Java Runtime only recognizes class file versions up to 52.0
>
> I can manually fix this in a number of ways, but was wondering if the
> community has guidance on the best way to go about this. Some
> thoughts are:
>
>
>   *   Don’t use the RPM for Maven, and instead pull a binary bistro down
> and install manually via tar, thus alleviating the pinning to Java 8. Then
> I could uninstall Java 8 (I use a different container for older CloudStack
> builds) and just have Java 11 in the container.
>   *   Manually move the Java 11 binaries into /usr/bin/, overwriting the
> Java 8 binaries. This seems complex, as there are bound to be other
> dependencies that could get missed in this manual step, such as libraries,
> etc.
>   *   Fix build-apidocs.sh to respect JAVA_HOME so that invokes the
> correct java binaries.
>   *   Some other option that I’ve not yet thought of.
>
> Thanks.
>
> --
> Greg Goodrich | IP Pathways
> Senior Developer
> 3600 109th Street | Urbandale, IA 50322
> p. 515.422.9346 | e. ggoodr...@ippathways.com
>
>


Apidocs build failure on 4.14 with java 11 and centos 7

2020-12-01 Thread Greg Goodrich
I’m working on setting up an automated build for CloudStack for 4.14 using java 
11 in a Centos 7 Docker container and was wondering if anyone has experienced 
this, and how you solved it. I’m trying to leverage stock CentOs RPMs, and 
realized that the Maven install seems to be hard-wired to Java 8, thus 
installing it. I’ve also installed Java 11. However, the Java 8 binaries are 
installed in the ‘default’ location of /usr/bin/. I’m setting JAVA_HOME env var 
so that Maven uses Java 11 when building. However, the Apidocs build-apidoc.sh 
script just invokes java within it, without respect to JAVA_HOME. This causes 
the build to fail with the following error:


Exception in thread "main" java.lang.UnsupportedClassVersionError: 
com/cloud/api/doc/ApiXmlDocWriter has been compiled by a more recent version of 
the Java Runtime (class file version 55.0), this version of the Java Runtime 
only recognizes class file versions up to 52.0

I can manually fix this in a number of ways, but was wondering if the community 
has guidance on the best way to go about this. Some
thoughts are:


  *   Don’t use the RPM for Maven, and instead pull a binary bistro down and 
install manually via tar, thus alleviating the pinning to Java 8. Then I could 
uninstall Java 8 (I use a different container for older CloudStack builds) and 
just have Java 11 in the container.
  *   Manually move the Java 11 binaries into /usr/bin/, overwriting the Java 8 
binaries. This seems complex, as there are bound to be other dependencies that 
could get missed in this manual step, such as libraries, etc.
  *   Fix build-apidocs.sh to respect JAVA_HOME so that invokes the correct 
java binaries.
  *   Some other option that I’ve not yet thought of.

Thanks.

--
Greg Goodrich | IP Pathways
Senior Developer
3600 109th Street | Urbandale, IA 50322
p. 515.422.9346 | e. ggoodr...@ippathways.com



Re: apidocs build failure

2020-08-09 Thread Rohit Yadav
Thanks Sina, we'll review and merge soon.


Regards.


From: Sina Kashipazha 
Sent: Saturday, August 8, 2020 17:49
To: dev@cloudstack.apache.org 
Subject: Re: apidocs build failure

Hi Rohit,

I created the following pr that fixed the apidoc issue in Mac.

https://github.com/apache/cloudstack/pull/4253 
<https://github.com/apache/cloudstack/pull/4253>


Kind Regards,
Sina


rohit.ya...@shapeblue.com 
www.shapeblue.com
3 London Bridge Street,  3rd floor, News Building, London  SE1 9SGUK
@shapeblue
  
 

> On 11 Jun 2020, at 05:47, Rohit Yadav  wrote:
>
> I think you've found the difference in BSD vs GNU/Linux sed on Mac 
> (https://github.com/apache/cloudstack/pull/3312). One way to fix on Macs 
> could be to install GNU sed using brew.
> Pull requests are welcome Sina!
>
>
> Regards,
>
> Rohit Yadav
>
> Software Architect, ShapeBlue
>
> https://www.shapeblue.com
>
> 
> From: Sina Kashipazha 
> Sent: Wednesday, June 10, 2020 01:58
> To: dev@cloudstack.apache.org 
> Subject: Re: apidocs build failure
>
> Hi Rohit,
>
> Thanks for your suggestion to run the build command manually. I found the 
> problem. Build script of apidocs used the sed inline replacement option, 
> which has a different signature in MAC OS. I added '' after -i option of sed 
> command in the below lines, and it fixed my problem.
>
> https://github.com/apache/cloudstack/blob/fbfab5b5ebe1dba1000abbe30a8703c4d2f9d371/tools/apidoc/build-apidoc.sh#L64
>  
> <https://github.com/apache/cloudstack/blob/fbfab5b5ebe1dba1000abbe30a8703c4d2f9d371/tools/apidoc/build-apidoc.sh#L64>
> https://github.com/apache/cloudstack/blob/fbfab5b5ebe1dba1000abbe30a8703c4d2f9d371/tools/apidoc/build-apidoc.sh#L65
>  
> <https://github.com/apache/cloudstack/blob/fbfab5b5ebe1dba1000abbe30a8703c4d2f9d371/tools/apidoc/build-apidoc.sh#L65>
>
> More information:
>
> https://stackoverflow.com/questions/7573368/in-place-edits-with-sed-on-os-x?rq=1
>  
> <https://stackoverflow.com/questions/7573368/in-place-edits-with-sed-on-os-x?rq=1>
> https://stackoverflow.com/questions/5694228/sed-in-place-flag-that-works-both-on-mac-bsd-and-linux
>  
> <https://stackoverflow.com/questions/5694228/sed-in-place-flag-that-works-both-on-mac-bsd-and-linux>
>
> Kind Regards,
> Sina
>
>
> On 2020/06/09 03:07:49, Rohit Yadav  wrote:
>> Hi Sina,>
>>
>>
>>
>> Are you seeing this on latest master? You can debug what's causing failure 
>> by either running the mvn command for -pl tools/apidocs, or run the command 
>> manually:>
>>
>> https://github.com/apache/cloudstack/blob/master/tools/apidoc/pom.xml#L63>
>>
>>
>>
>> It could a jdk/java issue, you may install jenv and add jdk8 or jdk11 
>> installed (depending on which branch you're on, for 4.14 and master use 
>> jdk11 for example).>
>>
>>
>>
>>
>>
>> Regards,>
>>
>>
>>
>> Rohit Yadav>
>>
>>
>>
>> Software Architect, ShapeBlue>
>>
>>
>>
>> https://www.shapeblue.com>
>>
>>
>>
>> >
>>
>> From: Sina Kashipazha >
>>
>> Sent: Tuesday, June 9, 2020 02:03>
>>
>> To: dev@cloudstack.apache.org >
>>
>> Subject: apidocs build failure>
>>
>>
>>
>> Hi,>
>>
>>
>>
>> I have trouble building apidocs on mac (see below). Any idea?>
>>
>>
>>
>> Kind Regards,>
>>
>> Sina>
>>
>>
>>
>> [INFO] Apache CloudStack apidocs .. FAILURE [ 31.185 
>> s]>
>>
>> [INFO] Apache CloudStack marvin ... SKIPPED>
>>
>> [INFO] Apache CloudStack DevCloud4  SKIPPED>
>>
>> [INFO] Apache CloudStack DevCloud-KVM . SKIPPED>
>>
>> [INFO] 
>> >
>>
>> [INFO] BUILD FAILURE>
>>
>> [INFO] 
>> >
>>
>> [INFO] Total time: 22:03 h>
>>
>> [INFO] Finished at: 2020-06-08T21:01:37+02:00>
>>
>> [INFO] Final Memory: 132M/450M>
>>
>> [INFO] 
>> >
>>
>> [ERROR] Failed to execute goal 
>> org.codehaus.mojo:exec-maven-plugin:1.2.1:exec (compile) on project 
>> cloud-apidoc: Command execution failed. Process exi

Re: apidocs build failure

2020-08-08 Thread Sina Kashipazha
Hi Rohit,

I created the following pr that fixed the apidoc issue in Mac.

https://github.com/apache/cloudstack/pull/4253 
<https://github.com/apache/cloudstack/pull/4253>


Kind Regards,
Sina

> On 11 Jun 2020, at 05:47, Rohit Yadav  wrote:
> 
> I think you've found the difference in BSD vs GNU/Linux sed on Mac 
> (https://github.com/apache/cloudstack/pull/3312). One way to fix on Macs 
> could be to install GNU sed using brew.
> Pull requests are welcome Sina!
> 
> 
> Regards,
> 
> Rohit Yadav
> 
> Software Architect, ShapeBlue
> 
> https://www.shapeblue.com
> 
> 
> From: Sina Kashipazha 
> Sent: Wednesday, June 10, 2020 01:58
> To: dev@cloudstack.apache.org 
> Subject: Re: apidocs build failure
> 
> Hi Rohit,
> 
> Thanks for your suggestion to run the build command manually. I found the 
> problem. Build script of apidocs used the sed inline replacement option, 
> which has a different signature in MAC OS. I added '' after -i option of sed 
> command in the below lines, and it fixed my problem.
> 
> https://github.com/apache/cloudstack/blob/fbfab5b5ebe1dba1000abbe30a8703c4d2f9d371/tools/apidoc/build-apidoc.sh#L64
>  
> <https://github.com/apache/cloudstack/blob/fbfab5b5ebe1dba1000abbe30a8703c4d2f9d371/tools/apidoc/build-apidoc.sh#L64>
> https://github.com/apache/cloudstack/blob/fbfab5b5ebe1dba1000abbe30a8703c4d2f9d371/tools/apidoc/build-apidoc.sh#L65
>  
> <https://github.com/apache/cloudstack/blob/fbfab5b5ebe1dba1000abbe30a8703c4d2f9d371/tools/apidoc/build-apidoc.sh#L65>
> 
> More information:
> 
> https://stackoverflow.com/questions/7573368/in-place-edits-with-sed-on-os-x?rq=1
>  
> <https://stackoverflow.com/questions/7573368/in-place-edits-with-sed-on-os-x?rq=1>
> https://stackoverflow.com/questions/5694228/sed-in-place-flag-that-works-both-on-mac-bsd-and-linux
>  
> <https://stackoverflow.com/questions/5694228/sed-in-place-flag-that-works-both-on-mac-bsd-and-linux>
> 
> Kind Regards,
> Sina
> 
> 
> On 2020/06/09 03:07:49, Rohit Yadav  wrote:
>> Hi Sina,>
>> 
>> 
>> 
>> Are you seeing this on latest master? You can debug what's causing failure 
>> by either running the mvn command for -pl tools/apidocs, or run the command 
>> manually:>
>> 
>> https://github.com/apache/cloudstack/blob/master/tools/apidoc/pom.xml#L63>
>> 
>> 
>> 
>> It could a jdk/java issue, you may install jenv and add jdk8 or jdk11 
>> installed (depending on which branch you're on, for 4.14 and master use 
>> jdk11 for example).>
>> 
>> 
>> 
>> 
>> 
>> Regards,>
>> 
>> 
>> 
>> Rohit Yadav>
>> 
>> 
>> 
>> Software Architect, ShapeBlue>
>> 
>> 
>> 
>> https://www.shapeblue.com>
>> 
>> 
>> 
>> >
>> 
>> From: Sina Kashipazha >
>> 
>> Sent: Tuesday, June 9, 2020 02:03>
>> 
>> To: dev@cloudstack.apache.org >
>> 
>> Subject: apidocs build failure>
>> 
>> 
>> 
>> Hi,>
>> 
>> 
>> 
>> I have trouble building apidocs on mac (see below). Any idea?>
>> 
>> 
>> 
>> Kind Regards,>
>> 
>> Sina>
>> 
>> 
>> 
>> [INFO] Apache CloudStack apidocs .. FAILURE [ 31.185 
>> s]>
>> 
>> [INFO] Apache CloudStack marvin ... SKIPPED>
>> 
>> [INFO] Apache CloudStack DevCloud4  SKIPPED>
>> 
>> [INFO] Apache CloudStack DevCloud-KVM . SKIPPED>
>> 
>> [INFO] 
>> >
>> 
>> [INFO] BUILD FAILURE>
>> 
>> [INFO] 
>> >
>> 
>> [INFO] Total time: 22:03 h>
>> 
>> [INFO] Finished at: 2020-06-08T21:01:37+02:00>
>> 
>> [INFO] Final Memory: 132M/450M>
>> 
>> [INFO] 
>> >
>> 
>> [ERROR] Failed to execute goal 
>> org.codehaus.mojo:exec-maven-plugin:1.2.1:exec (compile) on project 
>> cloud-apidoc: Command execution failed. Process exited with an error: 1 
>> (Exit value: 1) -> [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  -rf :cloud-apidoc>
>> 
>> 
>> 
>> 
>> 
>> rohit.ya...@shapeblue.com >
>> 
>> www.shapeblue.com<http://www.shapeblue.com>>
>> 
>> 3 London Bridge Street,  3rd floor, News Building, London  SE1 9SGUK>
>> 
>> @shapeblue>
>> 
>>> 
>> 
>>> 
>> 
>> 
>> 
>> 
> 
> rohit.ya...@shapeblue.com 
> www.shapeblue.com
> 3 London Bridge Street,  3rd floor, News Building, London  SE1 9SGUK
> @shapeblue
> 
> 
> 



Re: apidocs build failure

2020-06-10 Thread Rohit Yadav
I think you've found the difference in BSD vs GNU/Linux sed on Mac 
(https://github.com/apache/cloudstack/pull/3312). One way to fix on Macs could 
be to install GNU sed using brew.
Pull requests are welcome Sina!


Regards,

Rohit Yadav

Software Architect, ShapeBlue

https://www.shapeblue.com


From: Sina Kashipazha 
Sent: Wednesday, June 10, 2020 01:58
To: dev@cloudstack.apache.org 
Subject: Re: apidocs build failure

Hi Rohit,

Thanks for your suggestion to run the build command manually. I found the 
problem. Build script of apidocs used the sed inline replacement option, which 
has a different signature in MAC OS. I added '' after -i option of sed command 
in the below lines, and it fixed my problem.

https://github.com/apache/cloudstack/blob/fbfab5b5ebe1dba1000abbe30a8703c4d2f9d371/tools/apidoc/build-apidoc.sh#L64
 
<https://github.com/apache/cloudstack/blob/fbfab5b5ebe1dba1000abbe30a8703c4d2f9d371/tools/apidoc/build-apidoc.sh#L64>
https://github.com/apache/cloudstack/blob/fbfab5b5ebe1dba1000abbe30a8703c4d2f9d371/tools/apidoc/build-apidoc.sh#L65
 
<https://github.com/apache/cloudstack/blob/fbfab5b5ebe1dba1000abbe30a8703c4d2f9d371/tools/apidoc/build-apidoc.sh#L65>

More information:

https://stackoverflow.com/questions/7573368/in-place-edits-with-sed-on-os-x?rq=1
 
<https://stackoverflow.com/questions/7573368/in-place-edits-with-sed-on-os-x?rq=1>
https://stackoverflow.com/questions/5694228/sed-in-place-flag-that-works-both-on-mac-bsd-and-linux
 
<https://stackoverflow.com/questions/5694228/sed-in-place-flag-that-works-both-on-mac-bsd-and-linux>

Kind Regards,
Sina


On 2020/06/09 03:07:49, Rohit Yadav  wrote:
> Hi Sina,>
>
>
>
> Are you seeing this on latest master? You can debug what's causing failure by 
> either running the mvn command for -pl tools/apidocs, or run the command 
> manually:>
>
> https://github.com/apache/cloudstack/blob/master/tools/apidoc/pom.xml#L63>
>
>
>
> It could a jdk/java issue, you may install jenv and add jdk8 or jdk11 
> installed (depending on which branch you're on, for 4.14 and master use jdk11 
> for example).>
>
>
>
>
>
> Regards,>
>
>
>
> Rohit Yadav>
>
>
>
> Software Architect, ShapeBlue>
>
>
>
> https://www.shapeblue.com>
>
>
>
> ____>
>
> From: Sina Kashipazha >
>
> Sent: Tuesday, June 9, 2020 02:03>
>
> To: dev@cloudstack.apache.org >
>
> Subject: apidocs build failure>
>
>
>
> Hi,>
>
>
>
> I have trouble building apidocs on mac (see below). Any idea?>
>
>
>
> Kind Regards,>
>
> Sina>
>
>
>
> [INFO] Apache CloudStack apidocs .. FAILURE [ 31.185 
> s]>
>
> [INFO] Apache CloudStack marvin ... SKIPPED>
>
> [INFO] Apache CloudStack DevCloud4  SKIPPED>
>
> [INFO] Apache CloudStack DevCloud-KVM . SKIPPED>
>
> [INFO] 
> >
>
> [INFO] BUILD FAILURE>
>
> [INFO] 
> >
>
> [INFO] Total time: 22:03 h>
>
> [INFO] Finished at: 2020-06-08T21:01:37+02:00>
>
> [INFO] Final Memory: 132M/450M>
>
> [INFO] 
> >
>
> [ERROR] Failed to execute goal org.codehaus.mojo:exec-maven-plugin:1.2.1:exec 
> (compile) on project cloud-apidoc: Command execution failed. Process exited 
> with an error: 1 (Exit value: 1) -> [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  -rf :cloud-apidoc>
>
>
>
>
>
> rohit.ya...@shapeblue.com >
>
> www.shapeblue.com<http://www.shapeblue.com>>
>
> 3 London Bridge Street,  3rd floor, News Building, London  SE1 9SGUK>
>
> @shapeblue>
>
>   >
>
>  >
>
>
>
>

rohit.ya...@shapeblue.com 
www.shapeblue.com
3 London Bridge Street,  3rd floor, News Building, London  SE1 9SGUK
@shapeblue
  
 



Re: apidocs build failure

2020-06-09 Thread Sina Kashipazha
Hi Rohit,

Thanks for your suggestion to run the build command manually. I found the 
problem. Build script of apidocs used the sed inline replacement option, which 
has a different signature in MAC OS. I added '' after -i option of sed command 
in the below lines, and it fixed my problem.

https://github.com/apache/cloudstack/blob/fbfab5b5ebe1dba1000abbe30a8703c4d2f9d371/tools/apidoc/build-apidoc.sh#L64
 
<https://github.com/apache/cloudstack/blob/fbfab5b5ebe1dba1000abbe30a8703c4d2f9d371/tools/apidoc/build-apidoc.sh#L64>
https://github.com/apache/cloudstack/blob/fbfab5b5ebe1dba1000abbe30a8703c4d2f9d371/tools/apidoc/build-apidoc.sh#L65
 
<https://github.com/apache/cloudstack/blob/fbfab5b5ebe1dba1000abbe30a8703c4d2f9d371/tools/apidoc/build-apidoc.sh#L65>

More information:

https://stackoverflow.com/questions/7573368/in-place-edits-with-sed-on-os-x?rq=1
 
<https://stackoverflow.com/questions/7573368/in-place-edits-with-sed-on-os-x?rq=1>
https://stackoverflow.com/questions/5694228/sed-in-place-flag-that-works-both-on-mac-bsd-and-linux
 
<https://stackoverflow.com/questions/5694228/sed-in-place-flag-that-works-both-on-mac-bsd-and-linux>

Kind Regards,
Sina


On 2020/06/09 03:07:49, Rohit Yadav  wrote: 
> Hi Sina,> 
> 
> 
> 
> Are you seeing this on latest master? You can debug what's causing failure by 
> either running the mvn command for -pl tools/apidocs, or run the command 
> manually:> 
> 
> https://github.com/apache/cloudstack/blob/master/tools/apidoc/pom.xml#L63> 
> 
> 
> 
> It could a jdk/java issue, you may install jenv and add jdk8 or jdk11 
> installed (depending on which branch you're on, for 4.14 and master use jdk11 
> for example).> 
> 
> 
> 
> 
> 
> Regards,> 
> 
> 
> 
> Rohit Yadav> 
> 
> 
> 
> Software Architect, ShapeBlue> 
> 
> 
> 
> https://www.shapeblue.com> 
> 
> 
> 
> ________> 
> 
> From: Sina Kashipazha > 
> 
> Sent: Tuesday, June 9, 2020 02:03> 
> 
> To: dev@cloudstack.apache.org > 
> 
> Subject: apidocs build failure> 
> 
> 
> 
> Hi,> 
> 
> 
> 
> I have trouble building apidocs on mac (see below). Any idea?> 
> 
> 
> 
> Kind Regards,> 
> 
> Sina> 
> 
> 
> 
> [INFO] Apache CloudStack apidocs .. FAILURE [ 31.185 
> s]> 
> 
> [INFO] Apache CloudStack marvin ... SKIPPED> 
> 
> [INFO] Apache CloudStack DevCloud4  SKIPPED> 
> 
> [INFO] Apache CloudStack DevCloud-KVM . SKIPPED> 
> 
> [INFO] 
> > 
> 
> [INFO] BUILD FAILURE> 
> 
> [INFO] 
> > 
> 
> [INFO] Total time: 22:03 h> 
> 
> [INFO] Finished at: 2020-06-08T21:01:37+02:00> 
> 
> [INFO] Final Memory: 132M/450M> 
> 
> [INFO] 
> > 
> 
> [ERROR] Failed to execute goal org.codehaus.mojo:exec-maven-plugin:1.2.1:exec 
> (compile) on project cloud-apidoc: Command execution failed. Process exited 
> with an error: 1 (Exit value: 1) -> [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  -rf :cloud-apidoc> 
> 
> 
> 
> 
> 
> rohit.ya...@shapeblue.com > 
> 
> www.shapeblue.com> 
> 
> 3 London Bridge Street,  3rd floor, News Building, London  SE1 9SGUK> 
> 
> @shapeblue> 
> 
>   > 
> 
>  > 
> 
> 
> 
> 

Re: apidocs build failure

2020-06-08 Thread Rohit Yadav
Hi Sina,

Are you seeing this on latest master? You can debug what's causing failure by 
either running the mvn command for -pl tools/apidocs, or run the command 
manually:
https://github.com/apache/cloudstack/blob/master/tools/apidoc/pom.xml#L63

It could a jdk/java issue, you may install jenv and add jdk8 or jdk11 installed 
(depending on which branch you're on, for 4.14 and master use jdk11 for 
example).


Regards,

Rohit Yadav

Software Architect, ShapeBlue

https://www.shapeblue.com


From: Sina Kashipazha 
Sent: Tuesday, June 9, 2020 02:03
To: dev@cloudstack.apache.org 
Subject: apidocs build failure

Hi,

I have trouble building apidocs on mac (see below). Any idea?

Kind Regards,
Sina

[INFO] Apache CloudStack apidocs .. FAILURE [ 31.185 s]
[INFO] Apache CloudStack marvin ... SKIPPED
[INFO] Apache CloudStack DevCloud4  SKIPPED
[INFO] Apache CloudStack DevCloud-KVM . SKIPPED
[INFO] 
[INFO] BUILD FAILURE
[INFO] 
[INFO] Total time: 22:03 h
[INFO] Finished at: 2020-06-08T21:01:37+02:00
[INFO] Final Memory: 132M/450M
[INFO] 
[ERROR] Failed to execute goal org.codehaus.mojo:exec-maven-plugin:1.2.1:exec 
(compile) on project cloud-apidoc: Command execution failed. Process exited 
with an error: 1 (Exit value: 1) -> [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  -rf :cloud-apidoc


rohit.ya...@shapeblue.com 
www.shapeblue.com
3 London Bridge Street,  3rd floor, News Building, London  SE1 9SGUK
@shapeblue
  
 



apidocs build failure

2020-06-08 Thread Sina Kashipazha
Hi,

I have trouble building apidocs on mac (see below). Any idea?

Kind Regards,
Sina

[INFO] Apache CloudStack apidocs .. FAILURE [ 31.185 s]
[INFO] Apache CloudStack marvin ... SKIPPED
[INFO] Apache CloudStack DevCloud4  SKIPPED
[INFO] Apache CloudStack DevCloud-KVM . SKIPPED
[INFO] 
[INFO] BUILD FAILURE
[INFO] 
[INFO] Total time: 22:03 h
[INFO] Finished at: 2020-06-08T21:01:37+02:00
[INFO] Final Memory: 132M/450M
[INFO] 
[ERROR] Failed to execute goal org.codehaus.mojo:exec-maven-plugin:1.2.1:exec 
(compile) on project cloud-apidoc: Command execution failed. Process exited 
with an error: 1 (Exit value: 1) -> [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  -rf :cloud-apidoc



Re: apidocs build failure

2017-02-22 Thread Will Stevens
The use case is to be able to display the API docs the same as we did in
the past with separation by default roles. It is still important to know
from the docs that a call like create private gateway can only be done by
an administrator (for example), which is longer possible from what I can
tell.

On Feb 22, 2017 2:29 AM, "Rohit Yadav" <rohit.ya...@shapeblue.com> wrote:

> Will, any specific use-case? For a live running cloudstack an apidocs
> plugin could also be written that displays apidocs for a role/user-account
> consuming from listApis.
>
>
> Regards.
>
> 
> From: williamstev...@gmail.com <williamstev...@gmail.com> on behalf of
> Will Stevens <wstev...@cloudops.com>
> Sent: 21 February 2017 20:31:14
> To: dev@cloudstack.apache.org
> Subject: Re: apidocs build failure
>
> Is there any chance we can fix the 'roles' issue with the API doc so we can
> get the docs split into the 'Admin', 'Domain Admin' and 'User' again?  The
> introduction of the dynamic roles broke the generation of the API docs with
> the different roles and I was not able to figure out how to fix it.  Any
> ideas for how to fix that?
>
> *Will STEVENS*
> Lead Developer
>
> <https://goo.gl/NYZ8KK>
>
> On Tue, Feb 21, 2017 at 3:01 AM, Daan Hoogland <
> daan.hoogl...@shapeblue.com>
> wrote:
>
> > @Rajani @Rohit I missed this mail and fixed the apidoc on build.a.o
> > yesterday. I can disable it or throw it away might we so wish
> >
> > daan.hoogl...@shapeblue.com
> > www.shapeblue.com<http://www.shapeblue.com>
> > 53 Chandos Place, Covent Garden, Utrecht Utrecht 3531 VENetherlands
> > @shapeblue
> >
> >
> >
> >
> > -Original Message-
> > From: Rohit Yadav [mailto:rohit.ya...@shapeblue.com]
> > Sent: 17 February 2017 10:27
> > To: dev@cloudstack.apache.org
> > Subject: Re: apidocs build failure
> >
> > Thanks Rajani, I've no objections.
> >
> >
> > Regards.
> >
> > 
> > From: Rajani Karuturi <raj...@apache.org>
> > Sent: 17 February 2017 14:07:34
> > To: dev@cloudstack.apache.org
> > Subject: Re: apidocs build failure
> >
> > since travis is already verifying this, I asked infra to disable this
> job.
> >
> > Infra ticket https://issues.apache.org/jira/browse/INFRA-13527
> >
> > Please comment on the ticket if you think otherwise.
> >
> > Thanks,
> >
> > ~ Rajani
> >
> > http://cloudplatform.accelerite.com/
> >
> > On February 13, 2017 at 12:29 PM, Rohit Yadav
> > (rohit.ya...@shapeblue.com) wrote:
> >
> > Jenkins need to have jdk8 available, someone need to setup jenv on it as
> > well.
> >
> > (The first job in Travis does apidocs/marvin/rat related checks to
> > validate changes and apidocs build).
> >
> > Regards.
> >
> > 
> > From: Rajani Karuturi <raj...@apache.org>
> > Sent: 09 February 2017 12:21:40
> > To: dev@cloudstack.apache.org
> > Subject: apidocs build failure
> >
> > Hi all,
> >
> > All the apidocs builds[1] are failing after the recent java 8 change. Can
> > anyone having access fix it? Or should we talk to INFRA about it?
> >
> > Error message:
> >
> > [INFO]
> > -
> > [ERROR] COMPILATION ERROR : [INFO]
> > -
> > [ERROR] javac: invalid target release: 1.8 Usage: javac use -help for a
> > list of possible options
> >
> > [1] https://builds.apache.org/job/cloudstack-apidocs-master/
> >
> > Thanks
> >
> > ~ Rajani
> >
> > http://cloudplatform.accelerite.com/
> >
> > rohit.ya...@shapeblue.com
> > www.shapeblue.com<http://www.shapeblue.com> ( http://www.shapeblue.com )
> > 53 Chandos Place, Covent Garden, London WC2N 4HSUK @shapeblue
> >
> > rohit.ya...@shapeblue.com
> > www.shapeblue.com<http://www.shapeblue.com>
> > 53 Chandos Place, Covent Garden, London  WC2N 4HSUK @shapeblue
> >
> >
> >
> >
>
> rohit.ya...@shapeblue.com
> www.shapeblue.com
> 53 Chandos Place, Covent Garden, London  WC2N 4HSUK
> @shapeblue
>
>
>
>


Re: apidocs build failure

2017-02-21 Thread Rohit Yadav
Will, any specific use-case? For a live running cloudstack an apidocs plugin 
could also be written that displays apidocs for a role/user-account consuming 
from listApis.


Regards.


From: williamstev...@gmail.com <williamstev...@gmail.com> on behalf of Will 
Stevens <wstev...@cloudops.com>
Sent: 21 February 2017 20:31:14
To: dev@cloudstack.apache.org
Subject: Re: apidocs build failure

Is there any chance we can fix the 'roles' issue with the API doc so we can
get the docs split into the 'Admin', 'Domain Admin' and 'User' again?  The
introduction of the dynamic roles broke the generation of the API docs with
the different roles and I was not able to figure out how to fix it.  Any
ideas for how to fix that?

*Will STEVENS*
Lead Developer

<https://goo.gl/NYZ8KK>

On Tue, Feb 21, 2017 at 3:01 AM, Daan Hoogland <daan.hoogl...@shapeblue.com>
wrote:

> @Rajani @Rohit I missed this mail and fixed the apidoc on build.a.o
> yesterday. I can disable it or throw it away might we so wish
>
> daan.hoogl...@shapeblue.com
> www.shapeblue.com<http://www.shapeblue.com>
> 53 Chandos Place, Covent Garden, Utrecht Utrecht 3531 VENetherlands
> @shapeblue
>
>
>
>
> -Original Message-
> From: Rohit Yadav [mailto:rohit.ya...@shapeblue.com]
> Sent: 17 February 2017 10:27
> To: dev@cloudstack.apache.org
> Subject: Re: apidocs build failure
>
> Thanks Rajani, I've no objections.
>
>
> Regards.
>
> 
> From: Rajani Karuturi <raj...@apache.org>
> Sent: 17 February 2017 14:07:34
> To: dev@cloudstack.apache.org
> Subject: Re: apidocs build failure
>
> since travis is already verifying this, I asked infra to disable this job.
>
> Infra ticket https://issues.apache.org/jira/browse/INFRA-13527
>
> Please comment on the ticket if you think otherwise.
>
> Thanks,
>
> ~ Rajani
>
> http://cloudplatform.accelerite.com/
>
> On February 13, 2017 at 12:29 PM, Rohit Yadav
> (rohit.ya...@shapeblue.com) wrote:
>
> Jenkins need to have jdk8 available, someone need to setup jenv on it as
> well.
>
> (The first job in Travis does apidocs/marvin/rat related checks to
> validate changes and apidocs build).
>
> Regards.
>
> 
> From: Rajani Karuturi <raj...@apache.org>
> Sent: 09 February 2017 12:21:40
> To: dev@cloudstack.apache.org
> Subject: apidocs build failure
>
> Hi all,
>
> All the apidocs builds[1] are failing after the recent java 8 change. Can
> anyone having access fix it? Or should we talk to INFRA about it?
>
> Error message:
>
> [INFO]
> -
> [ERROR] COMPILATION ERROR : [INFO]
> -
> [ERROR] javac: invalid target release: 1.8 Usage: javac use -help for a
> list of possible options
>
> [1] https://builds.apache.org/job/cloudstack-apidocs-master/
>
> Thanks
>
> ~ Rajani
>
> http://cloudplatform.accelerite.com/
>
> rohit.ya...@shapeblue.com
> www.shapeblue.com<http://www.shapeblue.com> ( http://www.shapeblue.com )
> 53 Chandos Place, Covent Garden, London WC2N 4HSUK @shapeblue
>
> rohit.ya...@shapeblue.com
> www.shapeblue.com<http://www.shapeblue.com>
> 53 Chandos Place, Covent Garden, London  WC2N 4HSUK @shapeblue
>
>
>
>

rohit.ya...@shapeblue.com 
www.shapeblue.com
53 Chandos Place, Covent Garden, London  WC2N 4HSUK
@shapeblue
  
 



Re: apidocs build failure

2017-02-21 Thread Will Stevens
Is there any chance we can fix the 'roles' issue with the API doc so we can
get the docs split into the 'Admin', 'Domain Admin' and 'User' again?  The
introduction of the dynamic roles broke the generation of the API docs with
the different roles and I was not able to figure out how to fix it.  Any
ideas for how to fix that?

*Will STEVENS*
Lead Developer

<https://goo.gl/NYZ8KK>

On Tue, Feb 21, 2017 at 3:01 AM, Daan Hoogland <daan.hoogl...@shapeblue.com>
wrote:

> @Rajani @Rohit I missed this mail and fixed the apidoc on build.a.o
> yesterday. I can disable it or throw it away might we so wish
>
> daan.hoogl...@shapeblue.com
> www.shapeblue.com
> 53 Chandos Place, Covent Garden, Utrecht Utrecht 3531 VENetherlands
> @shapeblue
>
>
>
>
> -Original Message-
> From: Rohit Yadav [mailto:rohit.ya...@shapeblue.com]
> Sent: 17 February 2017 10:27
> To: dev@cloudstack.apache.org
> Subject: Re: apidocs build failure
>
> Thanks Rajani, I've no objections.
>
>
> Regards.
>
> 
> From: Rajani Karuturi <raj...@apache.org>
> Sent: 17 February 2017 14:07:34
> To: dev@cloudstack.apache.org
> Subject: Re: apidocs build failure
>
> since travis is already verifying this, I asked infra to disable this job.
>
> Infra ticket https://issues.apache.org/jira/browse/INFRA-13527
>
> Please comment on the ticket if you think otherwise.
>
> Thanks,
>
> ~ Rajani
>
> http://cloudplatform.accelerite.com/
>
> On February 13, 2017 at 12:29 PM, Rohit Yadav
> (rohit.ya...@shapeblue.com) wrote:
>
> Jenkins need to have jdk8 available, someone need to setup jenv on it as
> well.
>
> (The first job in Travis does apidocs/marvin/rat related checks to
> validate changes and apidocs build).
>
> Regards.
>
> ____
> From: Rajani Karuturi <raj...@apache.org>
> Sent: 09 February 2017 12:21:40
> To: dev@cloudstack.apache.org
> Subject: apidocs build failure
>
> Hi all,
>
> All the apidocs builds[1] are failing after the recent java 8 change. Can
> anyone having access fix it? Or should we talk to INFRA about it?
>
> Error message:
>
> [INFO]
> -
> [ERROR] COMPILATION ERROR : [INFO]
> -
> [ERROR] javac: invalid target release: 1.8 Usage: javac use -help for a
> list of possible options
>
> [1] https://builds.apache.org/job/cloudstack-apidocs-master/
>
> Thanks
>
> ~ Rajani
>
> http://cloudplatform.accelerite.com/
>
> rohit.ya...@shapeblue.com
> www.shapeblue.com<http://www.shapeblue.com> ( http://www.shapeblue.com )
> 53 Chandos Place, Covent Garden, London WC2N 4HSUK @shapeblue
>
> rohit.ya...@shapeblue.com
> www.shapeblue.com
> 53 Chandos Place, Covent Garden, London  WC2N 4HSUK @shapeblue
>
>
>
>


RE: apidocs build failure

2017-02-21 Thread Daan Hoogland
@Rajani @Rohit I missed this mail and fixed the apidoc on build.a.o yesterday. 
I can disable it or throw it away might we so wish

daan.hoogl...@shapeblue.com 
www.shapeblue.com
53 Chandos Place, Covent Garden, Utrecht Utrecht 3531 VENetherlands
@shapeblue
  
 


-Original Message-
From: Rohit Yadav [mailto:rohit.ya...@shapeblue.com] 
Sent: 17 February 2017 10:27
To: dev@cloudstack.apache.org
Subject: Re: apidocs build failure

Thanks Rajani, I've no objections.


Regards.


From: Rajani Karuturi <raj...@apache.org>
Sent: 17 February 2017 14:07:34
To: dev@cloudstack.apache.org
Subject: Re: apidocs build failure

since travis is already verifying this, I asked infra to disable this job.

Infra ticket https://issues.apache.org/jira/browse/INFRA-13527

Please comment on the ticket if you think otherwise.

Thanks,

~ Rajani

http://cloudplatform.accelerite.com/

On February 13, 2017 at 12:29 PM, Rohit Yadav
(rohit.ya...@shapeblue.com) wrote:

Jenkins need to have jdk8 available, someone need to setup jenv on it as well.

(The first job in Travis does apidocs/marvin/rat related checks to validate 
changes and apidocs build).

Regards.


From: Rajani Karuturi <raj...@apache.org>
Sent: 09 February 2017 12:21:40
To: dev@cloudstack.apache.org
Subject: apidocs build failure

Hi all,

All the apidocs builds[1] are failing after the recent java 8 change. Can 
anyone having access fix it? Or should we talk to INFRA about it?

Error message:

[INFO]
-
[ERROR] COMPILATION ERROR : [INFO]
-
[ERROR] javac: invalid target release: 1.8 Usage: javac use -help for a list of 
possible options

[1] https://builds.apache.org/job/cloudstack-apidocs-master/

Thanks

~ Rajani

http://cloudplatform.accelerite.com/

rohit.ya...@shapeblue.com
www.shapeblue.com<http://www.shapeblue.com> ( http://www.shapeblue.com )
53 Chandos Place, Covent Garden, London WC2N 4HSUK @shapeblue

rohit.ya...@shapeblue.com
www.shapeblue.com
53 Chandos Place, Covent Garden, London  WC2N 4HSUK @shapeblue
  
 



Re: apidocs build failure

2017-02-17 Thread Rohit Yadav
Thanks Rajani, I've no objections.


Regards.


From: Rajani Karuturi <raj...@apache.org>
Sent: 17 February 2017 14:07:34
To: dev@cloudstack.apache.org
Subject: Re: apidocs build failure

since travis is already verifying this, I asked infra to disable
this job.

Infra ticket https://issues.apache.org/jira/browse/INFRA-13527

Please comment on the ticket if you think otherwise.

Thanks,

~ Rajani

http://cloudplatform.accelerite.com/

On February 13, 2017 at 12:29 PM, Rohit Yadav
(rohit.ya...@shapeblue.com) wrote:

Jenkins need to have jdk8 available, someone need to setup jenv
on it as well.

(The first job in Travis does apidocs/marvin/rat related checks
to validate changes and apidocs build).

Regards.


From: Rajani Karuturi <raj...@apache.org>
Sent: 09 February 2017 12:21:40
To: dev@cloudstack.apache.org
Subject: apidocs build failure

Hi all,

All the apidocs builds[1] are failing after the recent java 8
change. Can anyone having access fix it? Or should we talk to
INFRA about it?

Error message:

[INFO]
-
[ERROR] COMPILATION ERROR : [INFO]
-
[ERROR] javac: invalid target release: 1.8 Usage: javac use
-help
for a list of possible options

[1] https://builds.apache.org/job/cloudstack-apidocs-master/

Thanks

~ Rajani

http://cloudplatform.accelerite.com/

rohit.ya...@shapeblue.com
www.shapeblue.com<http://www.shapeblue.com> ( http://www.shapeblue.com )
53 Chandos Place, Covent Garden, London WC2N 4HSUK
@shapeblue

rohit.ya...@shapeblue.com 
www.shapeblue.com
53 Chandos Place, Covent Garden, London  WC2N 4HSUK
@shapeblue
  
 



Re: apidocs build failure

2017-02-17 Thread Rajani Karuturi
since travis is already verifying this, I asked infra to disable
this job.

Infra ticket https://issues.apache.org/jira/browse/INFRA-13527

Please comment on the ticket if you think otherwise.

Thanks,

~ Rajani

http://cloudplatform.accelerite.com/

On February 13, 2017 at 12:29 PM, Rohit Yadav
(rohit.ya...@shapeblue.com) wrote:

Jenkins need to have jdk8 available, someone need to setup jenv
on it as well.

(The first job in Travis does apidocs/marvin/rat related checks
to validate changes and apidocs build).

Regards.


From: Rajani Karuturi <raj...@apache.org>
Sent: 09 February 2017 12:21:40
To: dev@cloudstack.apache.org
Subject: apidocs build failure

Hi all,

All the apidocs builds[1] are failing after the recent java 8
change. Can anyone having access fix it? Or should we talk to
INFRA about it?

Error message:

[INFO]
-
[ERROR] COMPILATION ERROR : [INFO]
-
[ERROR] javac: invalid target release: 1.8 Usage: javac use
-help
for a list of possible options

[1] https://builds.apache.org/job/cloudstack-apidocs-master/

Thanks

~ Rajani

http://cloudplatform.accelerite.com/

rohit.ya...@shapeblue.com
www.shapeblue.com ( http://www.shapeblue.com )
53 Chandos Place, Covent Garden, London WC2N 4HSUK
@shapeblue

Re: apidocs build failure

2017-02-12 Thread Rohit Yadav
Jenkins need to have jdk8 available, someone need to setup jenv on it as well.


(The first job in Travis does apidocs/marvin/rat related checks to validate 
changes and apidocs build).


Regards.


From: Rajani Karuturi <raj...@apache.org>
Sent: 09 February 2017 12:21:40
To: dev@cloudstack.apache.org
Subject: apidocs build failure

Hi all,

All the apidocs builds[1] are failing after the recent java 8
change. Can anyone having access fix it? Or should we talk to
INFRA about it?

Error message:

[INFO]
-
[ERROR] COMPILATION ERROR : [INFO]
-
[ERROR] javac: invalid target release: 1.8 Usage: javac use -help
for a list of possible options

[1] https://builds.apache.org/job/cloudstack-apidocs-master/

Thanks

~ Rajani

http://cloudplatform.accelerite.com/

rohit.ya...@shapeblue.com 
www.shapeblue.com
53 Chandos Place, Covent Garden, London  WC2N 4HSUK
@shapeblue
  
 



apidocs build failure

2017-02-08 Thread Rajani Karuturi
Hi all,

All the apidocs builds[1] are failing after the recent java 8
change. Can anyone having access fix it? Or should we talk to
INFRA about it?

Error message:

[INFO]
-
[ERROR] COMPILATION ERROR : [INFO]
-
[ERROR] javac: invalid target release: 1.8 Usage: javac use -help
for a list of possible options

[1] https://builds.apache.org/job/cloudstack-apidocs-master/

Thanks

~ Rajani

http://cloudplatform.accelerite.com/

apidocs build failure

2014-03-06 Thread Alex Hitchins
Just trying a build against 4.3 (not 4.3-forward) and I get the following error:

[ERROR] Failed to execute goal org.codehaus.mojo:exec-maven-plugin:1.2.1:exec 
(compile) on project cloud-apidoc: Command execution failed. Process exited 
with an error: 2 (Exit value: 2) - [Help 1]

Anyone else seen this issue? I don't know what I'm doing wrong, nothing is 
building for me!


Regards,

Alex Hitchins

D: +44 1892 523 587 | S: +44 20 3603 0540tel:+442036030540 | M: 
+44tel:+447968161581 7788 423 969

ShapeBlue Ltd, 53 Chandos Place, Covent Garden, London, WC2N 4HS

Need Enterprise Grade Support for Apache CloudStack?
Our CloudStack Infrastructure 
Supporthttp://shapeblue.com/cloudstack-infrastructure-support/ offers the 
best 24/7 SLA for CloudStack Environments.

Apache CloudStack Bootcamp training courses

**NEW!** CloudStack 4.2.1 traininghttp://shapeblue.com/cloudstack-training/
18th-19th February 2014, Brazil. 
Classroomhttp://shapeblue.com/cloudstack-training/
17th-23rd March 2014, Region A. Instructor led, 
On-linehttp://shapeblue.com/cloudstack-training/
24th-28th March 2014, Region B. Instructor led, 
On-linehttp://shapeblue.com/cloudstack-training/
16th-20th June 2014, Region A. Instructor led, 
On-linehttp://shapeblue.com/cloudstack-training/
23rd-27th June 2014, Region B. Instructor led, 
On-linehttp://shapeblue.com/cloudstack-training/

This email and any attachments to it may be confidential and are intended 
solely for the use of the individual to whom it is addressed. Any views or 
opinions expressed are solely those of the author and do not necessarily 
represent those of Shape Blue Ltd or related companies. If you are not the 
intended recipient of this email, you must neither take any action based upon 
its contents, nor copy or show it to anyone. Please contact the sender if you 
believe you have received this email in error. Shape Blue Ltd is a company 
incorporated in England  Wales. ShapeBlue Services India LLP is a company 
incorporated in India and is operated under license from Shape Blue Ltd. Shape 
Blue Brasil Consultoria Ltda is a company incorporated in Brasil and is 
operated under license from Shape Blue Ltd. ShapeBlue is a registered trademark.


RE: apidocs build failure

2014-03-06 Thread Alex Hitchins
It looks similar but exactly the same. I'll try against 4.3-forward.


Regards

Alex Hitchins

D: +44 1892 523 587 | S: +44 2036 030 540 | M: +44 7788 423 969

alex.hitch...@shapeblue.com

-Original Message-
From: John Kinsella [mailto:j...@stratosec.co]
Sent: 06 March 2014 22:24
To: dev@cloudstack.apache.org
Subject: Re: apidocs build failure

Can't quite tell if that's the same as what I was seeing - haven't tried for a 
few days http://markmail.org/thread/6drub4m2xgrgtfxt

On Mar 6, 2014, at 2:12 PM, Alex Hitchins 
alex.hitch...@shapeblue.commailto:alex.hitch...@shapeblue.com wrote:

Just trying a build against 4.3 (not 4.3-forward) and I get the following error:

[ERROR] Failed to execute goal org.codehaus.mojo:exec-maven-plugin:1.2.1:exec 
(compile) on project cloud-apidoc: Command execution failed. Process exited 
with an error: 2 (Exit value: 2) - [Help 1]

Anyone else seen this issue? I don't know what I'm doing wrong, nothing is 
building for me!


Regards,

Alex Hitchins

D: +44 1892 523 587 | S: +44 20 3603 0540tel:+442036030540 | M: 
+44tel:+447968161581 7788 423 969

ShapeBlue Ltd, 53 Chandos Place, Covent Garden, London, WC2N 4HS

Need Enterprise Grade Support for Apache CloudStack?
Our CloudStack Infrastructure 
Supporthttp://shapeblue.com/cloudstack-infrastructure-support/ offers the 
best 24/7 SLA for CloudStack Environments.

Apache CloudStack Bootcamp training courses

**NEW!** CloudStack 4.2.1 traininghttp://shapeblue.com/cloudstack-training/
18th-19th February 2014, Brazil. 
Classroomhttp://shapeblue.com/cloudstack-training/
17th-23rd March 2014, Region A. Instructor led, 
On-linehttp://shapeblue.com/cloudstack-training/
24th-28th March 2014, Region B. Instructor led, 
On-linehttp://shapeblue.com/cloudstack-training/
16th-20th June 2014, Region A. Instructor led, 
On-linehttp://shapeblue.com/cloudstack-training/
23rd-27th June 2014, Region B. Instructor led, 
On-linehttp://shapeblue.com/cloudstack-training/

This email and any attachments to it may be confidential and are intended 
solely for the use of the individual to whom it is addressed. Any views or 
opinions expressed are solely those of the author and do not necessarily 
represent those of Shape Blue Ltd or related companies. If you are not the 
intended recipient of this email, you must neither take any action based upon 
its contents, nor copy or show it to anyone. Please contact the sender if you 
believe you have received this email in error. Shape Blue Ltd is a company 
incorporated in England  Wales. ShapeBlue Services India LLP is a company 
incorporated in India and is operated under license from Shape Blue Ltd. Shape 
Blue Brasil Consultoria Ltda is a company incorporated in Brasil and is 
operated under license from Shape Blue Ltd. ShapeBlue is a registered trademark.

Stratosechttp://stratosec.co/ - Compliance as a Service
o: 415.315.9385
@johnlkinsellahttp://twitter.com/johnlkinsella

This email and any attachments to it may be confidential and are intended 
solely for the use of the individual to whom it is addressed. Any views or 
opinions expressed are solely those of the author and do not necessarily 
represent those of Shape Blue Ltd or related companies. If you are not the 
intended recipient of this email, you must neither take any action based upon 
its contents, nor copy or show it to anyone. Please contact the sender if you 
believe you have received this email in error. Shape Blue Ltd is a company 
incorporated in England  Wales. ShapeBlue Services India LLP is a company 
incorporated in India and is operated under license from Shape Blue Ltd. Shape 
Blue Brasil Consultoria Ltda is a company incorporated in Brasil and is 
operated under license from Shape Blue Ltd. ShapeBlue is a registered trademark.


Re: apidocs build failure

2014-03-06 Thread John Kinsella
Can’t quite tell if that’s the same as what I was seeing - haven’t tried for a 
few days http://markmail.org/thread/6drub4m2xgrgtfxt

On Mar 6, 2014, at 2:12 PM, Alex Hitchins 
alex.hitch...@shapeblue.commailto:alex.hitch...@shapeblue.com wrote:

Just trying a build against 4.3 (not 4.3-forward) and I get the following error:

[ERROR] Failed to execute goal org.codehaus.mojo:exec-maven-plugin:1.2.1:exec 
(compile) on project cloud-apidoc: Command execution failed. Process exited 
with an error: 2 (Exit value: 2) - [Help 1]

Anyone else seen this issue? I don't know what I'm doing wrong, nothing is 
building for me!


Regards,

Alex Hitchins

D: +44 1892 523 587 | S: +44 20 3603 0540tel:+442036030540 | M: 
+44tel:+447968161581 7788 423 969

ShapeBlue Ltd, 53 Chandos Place, Covent Garden, London, WC2N 4HS

Need Enterprise Grade Support for Apache CloudStack?
Our CloudStack Infrastructure 
Supporthttp://shapeblue.com/cloudstack-infrastructure-support/ offers the 
best 24/7 SLA for CloudStack Environments.

Apache CloudStack Bootcamp training courses

**NEW!** CloudStack 4.2.1 traininghttp://shapeblue.com/cloudstack-training/
18th-19th February 2014, Brazil. 
Classroomhttp://shapeblue.com/cloudstack-training/
17th-23rd March 2014, Region A. Instructor led, 
On-linehttp://shapeblue.com/cloudstack-training/
24th-28th March 2014, Region B. Instructor led, 
On-linehttp://shapeblue.com/cloudstack-training/
16th-20th June 2014, Region A. Instructor led, 
On-linehttp://shapeblue.com/cloudstack-training/
23rd-27th June 2014, Region B. Instructor led, 
On-linehttp://shapeblue.com/cloudstack-training/

This email and any attachments to it may be confidential and are intended 
solely for the use of the individual to whom it is addressed. Any views or 
opinions expressed are solely those of the author and do not necessarily 
represent those of Shape Blue Ltd or related companies. If you are not the 
intended recipient of this email, you must neither take any action based upon 
its contents, nor copy or show it to anyone. Please contact the sender if you 
believe you have received this email in error. Shape Blue Ltd is a company 
incorporated in England  Wales. ShapeBlue Services India LLP is a company 
incorporated in India and is operated under license from Shape Blue Ltd. Shape 
Blue Brasil Consultoria Ltda is a company incorporated in Brasil and is 
operated under license from Shape Blue Ltd. ShapeBlue is a registered trademark.

Stratosechttp://stratosec.co/ - Compliance as a Service
o: 415.315.9385
@johnlkinsellahttp://twitter.com/johnlkinsella



Re: apidocs build failure

2014-03-06 Thread Wei ZHOU
This is because of the command  listOvsElements.
Actually it is introduced in 4.4, so it should not exist in 4.3
However, if you cherry-pick the Ovs-related commits from master/4.4 to 4.3,
you need to add a category in gen_toc.py

diff --git a/tools/apidoc/gen_toc.py b/tools/apidoc/gen_toc.py index
9e4cd31..29ff3bf 100644 --- a/tools/apidoc/gen_toc.py +++
b/tools/apidoc/gen_toc.py @@ -160,6 +160,7 @@ known_categories = { 'Ucs' :
'UCS', 'CacheStores' : 'Cache Stores', 'CacheStore' : 'Cache Store', +
'OvsElement' : 'Ovs Element', 'StratosphereSsp' : ' Stratosphere SSP' }



2014-03-06 23:23 GMT+01:00 John Kinsella j...@stratosec.co:

 Can't quite tell if that's the same as what I was seeing - haven't tried
 for a few days http://markmail.org/thread/6drub4m2xgrgtfxt

 On Mar 6, 2014, at 2:12 PM, Alex Hitchins alex.hitch...@shapeblue.com
 mailto:alex.hitch...@shapeblue.com wrote:

 Just trying a build against 4.3 (not 4.3-forward) and I get the following
 error:

 [ERROR] Failed to execute goal
 org.codehaus.mojo:exec-maven-plugin:1.2.1:exec (compile) on project
 cloud-apidoc: Command execution failed. Process exited with an error: 2
 (Exit value: 2) - [Help 1]

 Anyone else seen this issue? I don't know what I'm doing wrong, nothing is
 building for me!


 Regards,

 Alex Hitchins

 D: +44 1892 523 587 | S: +44 20 3603 0540tel:+442036030540 | M:
 +44tel:+447968161581 7788 423 969

 ShapeBlue Ltd, 53 Chandos Place, Covent Garden, London, WC2N 4HS

 Need Enterprise Grade Support for Apache CloudStack?
 Our CloudStack Infrastructure Support
 http://shapeblue.com/cloudstack-infrastructure-support/ offers the best
 24/7 SLA for CloudStack Environments.

 Apache CloudStack Bootcamp training courses

 **NEW!** CloudStack 4.2.1 training
 http://shapeblue.com/cloudstack-training/
 18th-19th February 2014, Brazil. Classroom
 http://shapeblue.com/cloudstack-training/
 17th-23rd March 2014, Region A. Instructor led, On-line
 http://shapeblue.com/cloudstack-training/
 24th-28th March 2014, Region B. Instructor led, On-line
 http://shapeblue.com/cloudstack-training/
 16th-20th June 2014, Region A. Instructor led, On-line
 http://shapeblue.com/cloudstack-training/
 23rd-27th June 2014, Region B. Instructor led, On-line
 http://shapeblue.com/cloudstack-training/

 This email and any attachments to it may be confidential and are intended
 solely for the use of the individual to whom it is addressed. Any views or
 opinions expressed are solely those of the author and do not necessarily
 represent those of Shape Blue Ltd or related companies. If you are not the
 intended recipient of this email, you must neither take any action based
 upon its contents, nor copy or show it to anyone. Please contact the sender
 if you believe you have received this email in error. Shape Blue Ltd is a
 company incorporated in England  Wales. ShapeBlue Services India LLP is a
 company incorporated in India and is operated under license from Shape Blue
 Ltd. Shape Blue Brasil Consultoria Ltda is a company incorporated in Brasil
 and is operated under license from Shape Blue Ltd. ShapeBlue is a
 registered trademark.

 Stratosechttp://stratosec.co/ - Compliance as a Service
 o: 415.315.9385
 @johnlkinsellahttp://twitter.com/johnlkinsella




RE: apidocs build failure

2014-03-06 Thread Animesh Chaturvedi
I do not run into this issue in 4.3 branch.

Animesh

 -Original Message-
 From: Alex Hitchins [mailto:alex.hitch...@shapeblue.com]
 Sent: Thursday, March 06, 2014 2:12 PM
 To: dev
 Subject: apidocs build failure
 
 Just trying a build against 4.3 (not 4.3-forward) and I get the following 
 error:
 
 [ERROR] Failed to execute goal org.codehaus.mojo:exec-maven-
 plugin:1.2.1:exec (compile) on project cloud-apidoc: Command execution
 failed. Process exited with an error: 2 (Exit value: 2) - [Help 1]
 
 Anyone else seen this issue? I don't know what I'm doing wrong, nothing is
 building for me!
 
 
 Regards,
 
 Alex Hitchins
 
 D: +44 1892 523 587 | S: +44 20 3603 0540tel:+442036030540 | M:
 +44tel:+447968161581 7788 423 969
 
 ShapeBlue Ltd, 53 Chandos Place, Covent Garden, London, WC2N 4HS
 
 Need Enterprise Grade Support for Apache CloudStack?
 Our CloudStack Infrastructure Supporthttp://shapeblue.com/cloudstack-
 infrastructure-support/ offers the best 24/7 SLA for CloudStack
 Environments.
 
 Apache CloudStack Bootcamp training courses
 
 **NEW!** CloudStack 4.2.1 traininghttp://shapeblue.com/cloudstack-
 training/
 18th-19th February 2014, Brazil.
 Classroomhttp://shapeblue.com/cloudstack-training/
 17th-23rd March 2014, Region A. Instructor led, On-
 linehttp://shapeblue.com/cloudstack-training/
 24th-28th March 2014, Region B. Instructor led, On-
 linehttp://shapeblue.com/cloudstack-training/
 16th-20th June 2014, Region A. Instructor led, On-
 linehttp://shapeblue.com/cloudstack-training/
 23rd-27th June 2014, Region B. Instructor led, On-
 linehttp://shapeblue.com/cloudstack-training/
 
 This email and any attachments to it may be confidential and are intended
 solely for the use of the individual to whom it is addressed. Any views or
 opinions expressed are solely those of the author and do not necessarily
 represent those of Shape Blue Ltd or related companies. If you are not the
 intended recipient of this email, you must neither take any action based
 upon its contents, nor copy or show it to anyone. Please contact the sender
 if you believe you have received this email in error. Shape Blue Ltd is a
 company incorporated in England  Wales. ShapeBlue Services India LLP is a
 company incorporated in India and is operated under license from Shape
 Blue Ltd. Shape Blue Brasil Consultoria Ltda is a company incorporated in
 Brasil and is operated under license from Shape Blue Ltd. ShapeBlue is a
 registered trademark.


Re: apidocs build failure

2014-03-06 Thread Wei ZHOU
git status
then you can see some files which are untracked. for example

#   api/src/com/cloud/network/OvsProvider.java
#
api/src/org/apache/cloudstack/api/command/admin/router/ConfigureOvsElementCmd.java
#
api/src/org/apache/cloudstack/api/command/admin/router/ListOvsElementsCmd.java
#   api/src/org/apache/cloudstack/api/response/OvsProviderResponse.java

you should remove these files.

-Wei

2014-03-07 3:15 GMT+01:00 Alex Hitchins alex.hitch...@shapeblue.com:

 I've just checked out 4.3 and am still getting the same error.

 Could this be an incorrect build?

 What is the best way for me to start from scratch? Remove any existing
 dependencies and re-downloading them? If so, do I need to clear everything
 from deps folder AND the m2 directory?

 Regards

 Alex Hitchins

 D: +44 1892 523 587 | S: +44 2036 030 540 | M: +44 7788 423 969

 alex.hitch...@shapeblue.com

 -Original Message-
 From: Animesh Chaturvedi [mailto:animesh.chaturv...@citrix.com]
 Sent: 06 March 2014 23:42
 To: dev@cloudstack.apache.org
 Subject: RE: apidocs build failure

 I do not run into this issue in 4.3 branch.

 Animesh

  -Original Message-
  From: Alex Hitchins [mailto:alex.hitch...@shapeblue.com]
  Sent: Thursday, March 06, 2014 2:12 PM
  To: dev
  Subject: apidocs build failure
 
  Just trying a build against 4.3 (not 4.3-forward) and I get the
 following error:
 
  [ERROR] Failed to execute goal org.codehaus.mojo:exec-maven-
  plugin:1.2.1:exec (compile) on project cloud-apidoc: Command execution
  failed. Process exited with an error: 2 (Exit value: 2) - [Help 1]
 
  Anyone else seen this issue? I don't know what I'm doing wrong,
  nothing is building for me!
 
 
  Regards,
 
  Alex Hitchins
 
  D: +44 1892 523 587 | S: +44 20 3603 0540tel:+442036030540 | M:
  +44tel:+447968161581 7788 423 969
 
  ShapeBlue Ltd, 53 Chandos Place, Covent Garden, London, WC2N 4HS
 
  Need Enterprise Grade Support for Apache CloudStack?
  Our CloudStack Infrastructure Supporthttp://shapeblue.com/cloudstack-
  infrastructure-support/ offers the best 24/7 SLA for CloudStack
  Environments.
 
  Apache CloudStack Bootcamp training courses
 
  **NEW!** CloudStack 4.2.1 traininghttp://shapeblue.com/cloudstack-
  training/
  18th-19th February 2014, Brazil.
  Classroomhttp://shapeblue.com/cloudstack-training/
  17th-23rd March 2014, Region A. Instructor led, On-
  linehttp://shapeblue.com/cloudstack-training/
  24th-28th March 2014, Region B. Instructor led, On-
  linehttp://shapeblue.com/cloudstack-training/
  16th-20th June 2014, Region A. Instructor led, On-
  linehttp://shapeblue.com/cloudstack-training/
  23rd-27th June 2014, Region B. Instructor led, On-
  linehttp://shapeblue.com/cloudstack-training/
 
  This email and any attachments to it may be confidential and are
  intended solely for the use of the individual to whom it is addressed.
  Any views or opinions expressed are solely those of the author and do
  not necessarily represent those of Shape Blue Ltd or related
  companies. If you are not the intended recipient of this email, you
  must neither take any action based upon its contents, nor copy or show
  it to anyone. Please contact the sender if you believe you have
  received this email in error. Shape Blue Ltd is a company incorporated
  in England  Wales. ShapeBlue Services India LLP is a company
  incorporated in India and is operated under license from Shape Blue
  Ltd. Shape Blue Brasil Consultoria Ltda is a company incorporated in
  Brasil and is operated under license from Shape Blue Ltd. ShapeBlue is a
 registered trademark.
 This email and any attachments to it may be confidential and are intended
 solely for the use of the individual to whom it is addressed. Any views or
 opinions expressed are solely those of the author and do not necessarily
 represent those of Shape Blue Ltd or related companies. If you are not the
 intended recipient of this email, you must neither take any action based
 upon its contents, nor copy or show it to anyone. Please contact the sender
 if you believe you have received this email in error. Shape Blue Ltd is a
 company incorporated in England  Wales. ShapeBlue Services India LLP is a
 company incorporated in India and is operated under license from Shape Blue
 Ltd. Shape Blue Brasil Consultoria Ltda is a company incorporated in Brasil
 and is operated under license from Shape Blue Ltd. ShapeBlue is a
 registered trademark.



RE: apidocs build failure

2014-03-06 Thread Alex Hitchins
Hi Wei,

I seem to have a build working now, I'm getting the UI up in Jetty which is 
much better state of affairs on yesterday!

I didn't need to do anything with that OvsProvider.java file in the end, I 
cleared out my .m2 folder, did an mvn clean install then redeployed the 
databases. I will try a non-oss built to see how I get on with that.

Regards

Alex Hitchins

D: +44 1892 523 587 | S: +44 2036 030 540 | M: +44 7788 423 969

alex.hitch...@shapeblue.com

-Original Message-
From: Wei ZHOU [mailto:ustcweiz...@gmail.com]
Sent: 07 March 2014 06:54
To: dev@cloudstack.apache.org
Subject: Re: apidocs build failure

git status
then you can see some files which are untracked. for example

#   api/src/com/cloud/network/OvsProvider.java
#
api/src/org/apache/cloudstack/api/command/admin/router/ConfigureOvsElementCmd.java
#
api/src/org/apache/cloudstack/api/command/admin/router/ListOvsElementsCmd.java
#   api/src/org/apache/cloudstack/api/response/OvsProviderResponse.java

you should remove these files.

-Wei

2014-03-07 3:15 GMT+01:00 Alex Hitchins alex.hitch...@shapeblue.com:

 I've just checked out 4.3 and am still getting the same error.

 Could this be an incorrect build?

 What is the best way for me to start from scratch? Remove any existing
 dependencies and re-downloading them? If so, do I need to clear
 everything from deps folder AND the m2 directory?

 Regards

 Alex Hitchins

 D: +44 1892 523 587 | S: +44 2036 030 540 | M: +44 7788 423 969

 alex.hitch...@shapeblue.com

 -Original Message-
 From: Animesh Chaturvedi [mailto:animesh.chaturv...@citrix.com]
 Sent: 06 March 2014 23:42
 To: dev@cloudstack.apache.org
 Subject: RE: apidocs build failure

 I do not run into this issue in 4.3 branch.

 Animesh

  -Original Message-
  From: Alex Hitchins [mailto:alex.hitch...@shapeblue.com]
  Sent: Thursday, March 06, 2014 2:12 PM
  To: dev
  Subject: apidocs build failure
 
  Just trying a build against 4.3 (not 4.3-forward) and I get the
 following error:
 
  [ERROR] Failed to execute goal org.codehaus.mojo:exec-maven-
  plugin:1.2.1:exec (compile) on project cloud-apidoc: Command
  execution failed. Process exited with an error: 2 (Exit value: 2) -
  [Help 1]
 
  Anyone else seen this issue? I don't know what I'm doing wrong,
  nothing is building for me!
 
 
  Regards,
 
  Alex Hitchins
 
  D: +44 1892 523 587 | S: +44 20 3603 0540tel:+442036030540 | M:
  +44tel:+447968161581 7788 423 969
 
  ShapeBlue Ltd, 53 Chandos Place, Covent Garden, London, WC2N 4HS
 
  Need Enterprise Grade Support for Apache CloudStack?
  Our CloudStack Infrastructure
  Supporthttp://shapeblue.com/cloudstack-
  infrastructure-support/ offers the best 24/7 SLA for CloudStack
  Environments.
 
  Apache CloudStack Bootcamp training courses
 
  **NEW!** CloudStack 4.2.1 traininghttp://shapeblue.com/cloudstack-
  training/
  18th-19th February 2014, Brazil.
  Classroomhttp://shapeblue.com/cloudstack-training/
  17th-23rd March 2014, Region A. Instructor led, On-
  linehttp://shapeblue.com/cloudstack-training/
  24th-28th March 2014, Region B. Instructor led, On-
  linehttp://shapeblue.com/cloudstack-training/
  16th-20th June 2014, Region A. Instructor led, On-
  linehttp://shapeblue.com/cloudstack-training/
  23rd-27th June 2014, Region B. Instructor led, On-
  linehttp://shapeblue.com/cloudstack-training/
 
  This email and any attachments to it may be confidential and are
  intended solely for the use of the individual to whom it is addressed.
  Any views or opinions expressed are solely those of the author and
  do not necessarily represent those of Shape Blue Ltd or related
  companies. If you are not the intended recipient of this email, you
  must neither take any action based upon its contents, nor copy or
  show it to anyone. Please contact the sender if you believe you have
  received this email in error. Shape Blue Ltd is a company
  incorporated in England  Wales. ShapeBlue Services India LLP is a
  company incorporated in India and is operated under license from
  Shape Blue Ltd. Shape Blue Brasil Consultoria Ltda is a company
  incorporated in Brasil and is operated under license from Shape Blue
  Ltd. ShapeBlue is a
 registered trademark.
 This email and any attachments to it may be confidential and are
 intended solely for the use of the individual to whom it is addressed.
 Any views or opinions expressed are solely those of the author and do
 not necessarily represent those of Shape Blue Ltd or related
 companies. If you are not the intended recipient of this email, you
 must neither take any action based upon its contents, nor copy or show
 it to anyone. Please contact the sender if you believe you have
 received this email in error. Shape Blue Ltd is a company incorporated
 in England  Wales. ShapeBlue Services India LLP is a company
 incorporated in India and is operated under license from Shape Blue
 Ltd. Shape Blue Brasil Consultoria Ltda is a company incorporated in
 Brasil