[prev in list] [next in list] [prev in thread] [next in thread] 

List:       wsf-javascript-dev
Subject:    Re: [Dev] Failed to execute goal on project WSO2-Axis2-Client
From:       Danushka Fernando <danushkaf () wso2 ! com>
Date:       2014-08-27 16:29:48
Message-ID: CAE7XYwD=QbmzOqDE1H3H3RTJuUBxVe4V1vK4B2jp18QYyZyNaw () mail ! gmail ! com
[Download RAW message or body]

[Attachment #2 (multipart/alternative)]


Rajith
But in OSGI world version matters AFAIK. Since this is a stub generation
there wont be API changes. Otherwise it could be a case as well.

Thanks & Regards
Danushka Fernando
Software Engineer
WSO2 inc. http://wso2.com/
Mobile : +94716332729


On Wed, Aug 27, 2014 at 9:22 PM, Rajith Vitharana <rajithv@wso2.com> wrote:

> Hi,
>
> As per my understanding changing the version won't be a problem as long as
> the sample can be compiled with that version. Because these are just
> compile time dependencies and required classes are provided by the server
> in runtime. If these libraries are packed with the created artifact, then
> again using the correct version will be mandatory. But since these are just
> compile time dependencies and libraries won't get packed inside the created
> artifact, I don't think changing the version would be a problem. Correct me
> if I'm wrong. :)
>
> Thanks,
>
>
> On Wed, Aug 27, 2014 at 6:47 PM, Danushka Fernando <danushkaf@wso2.com>
> wrote:
>
>> Hi Akila
>>
>> Change following
>>
>> <dependency> <groupId>org.apache.axis2</groupId>
>> <artifactId>axis2</artifactId> <version>${axis2_version}</version>
>> </dependency> <dependency> <groupId>org.apache.axis2</groupId>
>> <artifactId>axis2-adb</artifactId> <version>${axis2_version}</version>
>> </dependency> <dependency> <groupId>org.apache.axis2</groupId>
>> <artifactId>axis2-transport-http</artifactId>
>> <version>${axis2_version}</version> </dependency> <dependency>
>> <groupId>org.apache.axis2</groupId>
>> <artifactId>axis2-transport-local</artifactId>
>> <version>${axis2_version}</version> </dependency>
>>
>> as follows
>>
>>  <dependency> <groupId>org.apache.axis2*.wso2*</groupId>
>> <artifactId>axis2</artifactId> <version>${axis2_version}</version>
>> </dependency> <dependency> <groupId>org.apache.axis2*.wso2*</groupId>
>> <artifactId>axis2-adb</artifactId> <version>${axis2_version}</version>
>> </dependency> <dependency> <groupId>org.apache.axis2*.wso2*</groupId>
>> <artifactId>axis2-transport-http</artifactId>
>> <version>${axis2_version}</version> </dependency> <dependency>
>> <groupId>org.apache.axis2*.wso2*</groupId>
>> <artifactId>axis2-transport-local</artifactId>
>> <version>${axis2_version}</version> </dependency>
>>
>> and axis2 version from 1.6.1-wso2v10 to *1.6.1.wso2v10*.
>>
>> Thanks & Regards
>> Danushka Fernando
>> Software Engineer
>> WSO2 inc. http://wso2.com/
>> Mobile : +94716332729
>>
>>
>> On Wed, Aug 27, 2014 at 6:32 PM, Akila Nimantha [IT/EKO/LOITS] <
>> AkilaN@lolctech.com> wrote:
>>
>>>  Hi Danushka,
>>>
>>>
>>>
>>> I also tried with your solution. But still it give the(below) same
>>> error. Please check attached pom file.
>>>
>>>
>>>
>>> [INFO]
>>> ------------------------------------------------------------------------
>>> [INFO] BUILD FAILURE
>>> [INFO]
>>> ------------------------------------------------------------------------
>>> [INFO] Total time: 1:21.250s
>>> [INFO] Finished at: Wed Aug 27 18:23:01 IST 2014
>>> [INFO] Final Memory: 8M/982M
>>> [INFO]
>>> ------------------------------------------------------------------------
>>> [ERROR] Failed to execute goal on project WSO2-Axis2-Client: Could not
>>> resolve dependencies for project WSO2:WSO2-Axis2-Client:jar:0.0.1-SNAPSHOT:
>>> Failure to find org.apache.axis2:axis2:jar:1.6.1-wso2v10 in
>>> http://maven.wso2.org/nexus/content/groups/wso2-public/ was cached in
>>> the local repository, resolution will not be reattempted until the update
>>> interval of wso2-nexus has elapsed or updates are forced -> [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/DependencyResolutionException
>>>
>>> Regards,
>>>
>>> Akila
>>>
>>>
>>>
>>> *From:* Danushka Fernando [mailto:danushkaf@wso2.com]
>>> *Sent:* Wednesday, August 27, 2014 2:20 PM
>>> *To:* Rajith Vitharana
>>> *Cc:* Akila Nimantha [IT/EKO/LOITS]; dev@wso2.org
>>>
>>> *Subject:* Re: [Dev] Failed to execute goal on project WSO2-Axis2-Client
>>>
>>>
>>>
>>> Hi Akila
>>>
>>> 1. You are using a wrong repository I guess use following instead
>>>
>>>
>>>
>>>    <repositories>
>>>
>>>          <repository>
>>>
>>>             <id>wso2-nexus</id>
>>>
>>>             <name>WSO2 internal Repository</name>
>>>
>>>             <url>http://maven.wso2.org/nexus/content/groups/wso2-public/
>>> </url>
>>>
>>>             <releases>
>>>
>>>                 <enabled>true</enabled>
>>>
>>>                 <updatePolicy>daily</updatePolicy>
>>>
>>>                 <checksumPolicy>ignore</checksumPolicy>
>>>
>>>             </releases>
>>>
>>>         </repository>
>>>
>>>    </repositories>
>>>
>>> 2. If you are using wso2 products its better to use wso2v10 rather than
>>> wso2v9 of axis2 since it is the version shipped in wso2 products.
>>>
>>> 3. Can you post the full build error here.
>>>
>>>
>>>   Thanks & Regards
>>>
>>> Danushka Fernando
>>>
>>> Software Engineer
>>>
>>> WSO2 inc. http://wso2.com/
>>>
>>> Mobile : +94716332729
>>>
>>>
>>>
>>> On Wed, Aug 27, 2014 at 2:05 PM, Rajith Vitharana <rajithv@wso2.com>
>>> wrote:
>>>
>>>  Nice being able to help :)
>>>
>>>
>>>
>>> On Wed, Aug 27, 2014 at 1:18 PM, Akila Nimantha [IT/EKO/LOITS] <
>>> AkilaN@lolctech.com> wrote:
>>>
>>>  Hi Rajith,
>>>
>>>
>>>
>>> Now it generated target files without errors. Thanks for your instant
>>> reply.
>>>
>>>
>>>
>>> Regards,
>>>
>>> Akila
>>>
>>>
>>>
>>> *From:* Rajith Vitharana [mailto:rajithv@wso2.com]
>>> *Sent:* Wednesday, August 27, 2014 12:49 PM
>>> *To:* Akila Nimantha [IT/EKO/LOITS]
>>> *Cc:* dev@wso2.org
>>> *Subject:* Re: [Dev] Failed to execute goal on project WSO2-Axis2-Client
>>>
>>>
>>>
>>> Hi Akila,
>>>
>>>
>>>
>>> It seems axis2 client version "1.6.1-wso2v10" is not released to nexus
>>> yet. So try building the sample with axis2 version "1.6.1-wso2v9" as shown
>>> below.
>>>
>>>
>>>
>>> <axis2_version>1.6.1-wso2v9</axis2_version>
>>>
>>>
>>>
>>> Thanks,
>>>
>>>
>>>
>>> On Wed, Aug 27, 2014 at 12:22 PM, Akila Nimantha [IT/EKO/LOITS] <
>>> AkilaN@lolctech.com> wrote:
>>>
>>>
>>>
>>> Hi all,
>>>
>>>
>>>
>>> We tried to build application server Helloservice jar file using maven.
>>> When I trying to build the project using "mvn clean install" I got
>>> following error.also I have attached generated POM file and wsdl file as
>>> well.
>>>
>>>
>>>
>>> "
>>>
>>>  Failed to execute goal on project WSO2-Axis2-Client: Could not resolve
>>> dependencies for project WSO2:WSO2-Axis2-Client:jar:0.0.1-SNAPSHOT: Failure
>>> to find org.apache.axis2:axis2:jar:1.6.1-wso2v10 in
>>> http://dist.wso2.org/maven2/ was cached in the local repository,
>>> resolution will not be reattempted until the update interval of wso2-Nexus
>>> has elapsed or updates are forced -> [Help 1]
>>>
>>> "
>>>
>>> Also I tried replacing repository element with as below,
>>>
>>>  <repository>
>>>
>>>             <id>wso2-nexus</id>
>>>
>>>             <name>WSO2 internal Repository</name>
>>>
>>>             <url>http://maven.wso2.org/nexus/content/groups/wso2-public/
>>> </url>
>>>
>>> </repository>
>>>
>>>
>>>
>>> But it still give the same error..
>>>
>>>
>>>
>>> Regards,
>>>
>>> Akila
>>>
>>> This message (including any attachments) is intended only for the use of
>>> the individual or entity to which it is addressed and may contain
>>> information that is non-public, proprietary, privileged, confidential, and
>>> exempt from disclosure under applicable law or may constitute as attorney
>>> work product. If you are not the intended recipient, you are hereby
>>> notified that any use, dissemination, distribution, or copying of this
>>> communication is strictly prohibited. If you have received this
>>> communication in error, notify us immediately by telephone and (i) destroy
>>> this message if a facsimile or (ii) delete this message immediately if this
>>> is an electronic communication. Thank you.
>>>
>>>
>>> _______________________________________________
>>> Dev mailing list
>>> Dev@wso2.org
>>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>>
>>>
>>>
>>>
>>>
>>> --
>>>
>>> Rajith Vitharana
>>>
>>> Software Engineer,
>>> WSO2 Inc. : wso2.com
>>> Mobile : +94715883223
>>> Blog : http://lankavitharana.blogspot.com/
>>>
>>> This message (including any attachments) is intended only for the use of
>>> the individual or entity to which it is addressed and may contain
>>> information that is non-public, proprietary, privileged, confidential, and
>>> exempt from disclosure under applicable law or may constitute as attorney
>>> work product. If you are not the intended recipient, you are hereby
>>> notified that any use, dissemination, distribution, or copying of this
>>> communication is strictly prohibited. If you have received this
>>> communication in error, notify us immediately by telephone and (i) destroy
>>> this message if a facsimile or (ii) delete this message immediately if this
>>> is an electronic communication. Thank you.
>>>
>>>
>>>
>>>
>>>
>>> --
>>>
>>> Rajith Vitharana
>>>
>>> Software Engineer,
>>> WSO2 Inc. : wso2.com
>>> Mobile : +94715883223
>>> Blog : http://lankavitharana.blogspot.com/
>>>
>>>
>>> _______________________________________________
>>> Dev mailing list
>>> Dev@wso2.org
>>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>>
>>>
>>>
>>> This message (including any attachments) is intended only for the use of
>>> the individual or entity to which it is addressed and may contain
>>> information that is non-public, proprietary, privileged, confidential, and
>>> exempt from disclosure under applicable law or may constitute as attorney
>>> work product. If you are not the intended recipient, you are hereby
>>> notified that any use, dissemination, distribution, or copying of this
>>> communication is strictly prohibited. If you have received this
>>> communication in error, notify us immediately by telephone and (i) destroy
>>> this message if a facsimile or (ii) delete this message immediately if this
>>> is an electronic communication. Thank you.
>>>
>>
>>
>
>
> --
> Rajith Vitharana
>
> Software Engineer,
> WSO2 Inc. : wso2.com
> Mobile : +94715883223
> Blog : http://lankavitharana.blogspot.com/
>

[Attachment #5 (text/html)]

<div dir="ltr">Rajith  <div>But in OSGI world version matters AFAIK. Since this is a \
stub generation there wont be API changes. Otherwise it could be a case as \
well.</div></div><div class="gmail_extra"><br clear="all"><div> <div dir="ltr">Thanks \
&amp; Regards<div>Danushka Fernando</div><div>Software Engineer</div><div>WSO2 inc.  \
<a href="http://wso2.com/" target="_blank">http://wso2.com/</a></div><div>Mobile : \
+94716332729</div></div></div> <br><br><div class="gmail_quote">On Wed, Aug 27, 2014 \
at 9:22 PM, Rajith Vitharana <span dir="ltr">&lt;<a href="mailto:rajithv@wso2.com" \
target="_blank">rajithv@wso2.com</a>&gt;</span> wrote:<br><blockquote \
class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc \
solid;padding-left:1ex"> <div dir="ltr">Hi,<div><br></div><div>As per my \
understanding changing the version won&#39;t be a problem as long as the sample can \
be compiled with that version. Because these are just compile time dependencies and \
required classes are provided by the server in runtime. If these libraries are packed \
with the created artifact, then again using the correct version will be mandatory. \
But since these are just compile time dependencies and libraries won&#39;t get packed \
inside the created artifact, I don&#39;t think changing the version would be a \
problem. Correct me if I&#39;m wrong. :)</div>


<div><br></div><div>Thanks,</div></div><div class="HOEnZb"><div class="h5"><div \
class="gmail_extra"><br><br><div class="gmail_quote">On Wed, Aug 27, 2014 at 6:47 PM, \
Danushka Fernando <span dir="ltr">&lt;<a href="mailto:danushkaf@wso2.com" \
target="_blank">danushkaf@wso2.com</a>&gt;</span> wrote:<br>


<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc \
solid;padding-left:1ex"><div dir="ltr">Hi Akila  <div><br></div><div>Change following \
</div><div><br></div><div><span style="color:rgb(0,0,0);font-family:&#39;Courier \
New&#39;,Courier,monospace;font-size:14px;white-space:pre-wrap">        \
&lt;dependency&gt;  &lt;groupId&gt;org.apache.axis2&lt;/groupId&gt;
            &lt;artifactId&gt;axis2&lt;/artifactId&gt;
            &lt;version&gt;${axis2_version}&lt;/version&gt;
        &lt;/dependency&gt;
        &lt;dependency&gt;
            &lt;groupId&gt;org.apache.axis2&lt;/groupId&gt;
            &lt;artifactId&gt;axis2-adb&lt;/artifactId&gt;
            &lt;version&gt;${axis2_version}&lt;/version&gt;
        &lt;/dependency&gt;
        &lt;dependency&gt;
            &lt;groupId&gt;org.apache.axis2&lt;/groupId&gt;
            &lt;artifactId&gt;axis2-transport-http&lt;/artifactId&gt;
            &lt;version&gt;${axis2_version}&lt;/version&gt;
        &lt;/dependency&gt;
        &lt;dependency&gt;
            &lt;groupId&gt;org.apache.axis2&lt;/groupId&gt;
            &lt;artifactId&gt;axis2-transport-local&lt;/artifactId&gt;
            &lt;version&gt;${axis2_version}&lt;/version&gt;
        &lt;/dependency&gt;</span><br></div><div><span \
style="color:rgb(0,0,0);font-family:&#39;Courier \
New&#39;,Courier,monospace;font-size:14px;white-space:pre-wrap"><br></span></div><div>as \
follows</div><div><br></div>



<div><span style="color:rgb(0,0,0);font-family:&#39;Courier \
New&#39;,Courier,monospace;font-size:14px;white-space:pre-wrap">       \
&lt;dependency&gt;  &lt;groupId&gt;org.apache.axis2<b>.wso2</b>&lt;/groupId&gt;
            &lt;artifactId&gt;axis2&lt;/artifactId&gt;
            &lt;version&gt;${axis2_version}&lt;/version&gt;
        &lt;/dependency&gt;
        &lt;dependency&gt;
            &lt;groupId&gt;org.apache.axis2<b>.wso2</b>&lt;/groupId&gt;
            &lt;artifactId&gt;axis2-adb&lt;/artifactId&gt;
            &lt;version&gt;${axis2_version}&lt;/version&gt;
        &lt;/dependency&gt;
        &lt;dependency&gt;
            &lt;groupId&gt;org.apache.axis2<b>.wso2</b>&lt;/groupId&gt;
            &lt;artifactId&gt;axis2-transport-http&lt;/artifactId&gt;
            &lt;version&gt;${axis2_version}&lt;/version&gt;
        &lt;/dependency&gt;
        &lt;dependency&gt;
            &lt;groupId&gt;org.apache.axis2<b>.wso2</b>&lt;/groupId&gt;
            &lt;artifactId&gt;axis2-transport-local&lt;/artifactId&gt;
            &lt;version&gt;${axis2_version}&lt;/version&gt;
        &lt;/dependency&gt;</span><br></div><div><span \
style="color:rgb(0,0,0);font-family:&#39;Courier \
New&#39;,Courier,monospace;font-size:14px;white-space:pre-wrap"><br></span></div><div><font \
color="#000000" face="arial, helvetica, sans-serif"><span \
style="white-space:pre-wrap">and axis2 version from  1.6.1-wso2v10</span></font><span \
style="white-space:pre-wrap;color:rgb(0,0,0);font-family:arial,helvetica,sans-serif"> \
to </span><font color="#000000" face="arial, helvetica, sans-serif"><span \
style="white-space:pre-wrap"><b>1.6.1.wso2v10</b>.</span></font></div>



</div><div class="gmail_extra"><div><br clear="all"><div><div dir="ltr">Thanks &amp; \
Regards<div>Danushka Fernando</div><div>Software Engineer</div><div>WSO2 inc.  <a \
href="http://wso2.com/" target="_blank">http://wso2.com/</a></div>



<div>Mobile : <a href="tel:%2B94716332729" value="+94716332729" \
target="_blank">+94716332729</a></div></div></div> <br><br></div><div><div><div \
class="gmail_quote">On Wed, Aug 27, 2014 at 6:32 PM, Akila Nimantha [IT/EKO/LOITS] \
<span dir="ltr">&lt;<a href="mailto:AkilaN@lolctech.com" \
target="_blank">AkilaN@lolctech.com</a>&gt;</span> wrote:<br>


<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc \
solid;padding-left:1ex">






<div lang="EN-US" link="blue" vlink="purple">
<div>
<p class="MsoNormal"><span \
style="font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;color:#1f497d">Hi \
Danushka,<u></u><u></u></span></p> <p class="MsoNormal"><span \
style="font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;color:#1f497d"><u></u> \
<u></u></span></p> <p class="MsoNormal"><span \
style="font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;color:#1f497d">I \
also tried with your solution. But still it give the(below) same error. Please check \
attached pom file.<u></u><u></u></span></p>




<p class="MsoNormal"><span \
style="font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;color:#1f497d"><u></u> \
<u></u></span></p> <p class="MsoNormal" style="margin-bottom:12.0pt">[INFO] \
------------------------------------------------------------------------<br> [INFO] \
BUILD FAILURE<br> [INFO] \
------------------------------------------------------------------------<br> [INFO] \
Total time: 1:21.250s<br> [INFO] Finished at: Wed Aug 27 18:23:01 IST 2014<br>
[INFO] Final Memory: 8M/982M<br>
[INFO] ------------------------------------------------------------------------<br>
[ERROR] Failed to execute goal on project WSO2-Axis2-Client: Could not resolve \
dependencies for project WSO2:WSO2-Axis2-Client:jar:0.0.1-SNAPSHOT: Failure to find \
org.apache.axis2:axis2:jar:1.6.1-wso2v10 in <a \
href="http://maven.wso2.org/nexus/content/groups/wso2-public/" \
target="_blank">http://maven.wso2.org/nexus/content/groups/wso2-public/</a> was \
cached in the local repository, resolution will not be reattempted until the update \
interval of wso2-nexus has elapsed or updates  are forced -&gt; [Help 1]<br>
[ERROR] <br>
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e \
switch.<br> [ERROR] Re-run Maven using the -X switch to enable full debug \
logging.<br> [ERROR] <br>
[ERROR] For more information about the errors and possible solutions, please read the \
following articles:<br> [ERROR] [Help 1] <a \
href="http://cwiki.apache.org/confluence/display/MAVEN/DependencyResolutionException" \
target="_blank"> http://cwiki.apache.org/confluence/display/MAVEN/DependencyResolutionException</a><u></u><u></u></p>
 <p class="MsoNormal"><span \
style="font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;color:#1f497d">Regards,<u></u><u></u></span></p>
 <p class="MsoNormal"><span \
style="font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;color:#1f497d">Akila<u></u><u></u></span></p>
 <p class="MsoNormal"><span \
style="font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;color:#1f497d"><u></u> \
<u></u></span></p> <p class="MsoNormal"><b><span \
style="font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;">From:</span></b><span \
style="font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;"> \
Danushka Fernando [mailto:<a href="mailto:danushkaf@wso2.com" \
target="_blank">danushkaf@wso2.com</a>] <br>
<b>Sent:</b> Wednesday, August 27, 2014 2:20 PM<br>
<b>To:</b> Rajith Vitharana<br>
<b>Cc:</b> Akila Nimantha [IT/EKO/LOITS]; <a href="mailto:dev@wso2.org" \
target="_blank">dev@wso2.org</a></span></p><div><div><br> <b>Subject:</b> Re: [Dev] \
Failed to execute goal on project \
WSO2-Axis2-Client<u></u><u></u></div></div><p></p><div><div> <p \
class="MsoNormal"><u></u>  <u></u></p> <div>
<p class="MsoNormal">Hi Akila<u></u><u></u></p>
<div>
<p class="MsoNormal">1. You are using a wrong repository I guess use following \
instead<u></u><u></u></p> </div>
<div>
<p class="MsoNormal"><u></u>  <u></u></p>
</div>
<div>
<div>
<p class="MsoNormal">     &lt;repositories&gt;<u></u><u></u></p>
</div>
<div>
<p class="MsoNormal">              &lt;repository&gt;<u></u><u></u></p>
</div>
<div>
<p class="MsoNormal">                  \
&lt;id&gt;wso2-nexus&lt;/id&gt;<u></u><u></u></p> </div>
<div>
<p class="MsoNormal">                  &lt;name&gt;WSO2 internal \
Repository&lt;/name&gt;<u></u><u></u></p> </div>
<div>
<p class="MsoNormal">                  &lt;url&gt;<a \
href="http://maven.wso2.org/nexus/content/groups/wso2-public/" \
target="_blank">http://maven.wso2.org/nexus/content/groups/wso2-public/</a>&lt;/url&gt;<u></u><u></u></p>
 </div>
<div>
<p class="MsoNormal">                  &lt;releases&gt;<u></u><u></u></p>
</div>
<div>
<p class="MsoNormal">                        \
&lt;enabled&gt;true&lt;/enabled&gt;<u></u><u></u></p> </div>
<div>
<p class="MsoNormal">                        \
&lt;updatePolicy&gt;daily&lt;/updatePolicy&gt;<u></u><u></u></p> </div>
<div>
<p class="MsoNormal">                        \
&lt;checksumPolicy&gt;ignore&lt;/checksumPolicy&gt;<u></u><u></u></p> </div>
<div>
<p class="MsoNormal">                  &lt;/releases&gt;<u></u><u></u></p>
</div>
<div>
<p class="MsoNormal">            &lt;/repository&gt;<u></u><u></u></p>
</div>
<div>
<p class="MsoNormal">     &lt;/repositories&gt;<u></u><u></u></p>
</div>
</div>
<div>
<p class="MsoNormal">2. If you are using wso2 products its better to use wso2v10 \
rather than wso2v9 of axis2 since it is the version shipped in wso2 \
products.<u></u><u></u></p> </div>
<div>
<p class="MsoNormal">3. Can you post the full build error here.<u></u><u></u></p>
</div>
</div>
<div>
<p class="MsoNormal"><br clear="all">
<u></u><u></u></p>
<div>
<div>
<p class="MsoNormal">Thanks &amp; Regards<u></u><u></u></p>
<div>
<p class="MsoNormal">Danushka Fernando<u></u><u></u></p>
</div>
<div>
<p class="MsoNormal">Software Engineer<u></u><u></u></p>
</div>
<div>
<p class="MsoNormal">WSO2 inc.  <a href="http://wso2.com/" \
target="_blank">http://wso2.com/</a><u></u><u></u></p> </div>
<div>
<p class="MsoNormal">Mobile : <a href="tel:%2B94716332729" value="+94716332729" \
target="_blank">+94716332729</a><u></u><u></u></p> </div>
</div>
</div>
<p class="MsoNormal" style="margin-bottom:12.0pt"><u></u>  <u></u></p>
<div>
<p class="MsoNormal">On Wed, Aug 27, 2014 at 2:05 PM, Rajith Vitharana &lt;<a \
href="mailto:rajithv@wso2.com" target="_blank">rajithv@wso2.com</a>&gt; \
wrote:<u></u><u></u></p> <blockquote style="border:none;border-left:solid #cccccc \
1.0pt;padding:0in 0in 0in \
6.0pt;margin-left:4.8pt;margin-top:5.0pt;margin-right:0in;margin-bottom:5.0pt"> <div>
<p class="MsoNormal">Nice being able to help :)<u></u><u></u></p>
</div>
<div>
<div>
<div>
<p class="MsoNormal" style="margin-bottom:12.0pt"><u></u>  <u></u></p>
<div>
<p class="MsoNormal">On Wed, Aug 27, 2014 at 1:18 PM, Akila Nimantha [IT/EKO/LOITS] \
&lt;<a href="mailto:AkilaN@lolctech.com" target="_blank">AkilaN@lolctech.com</a>&gt; \
wrote:<u></u><u></u></p> <blockquote style="border:none;border-left:solid #cccccc \
1.0pt;padding:0in 0in 0in \
6.0pt;margin-left:4.8pt;margin-top:5.0pt;margin-right:0in;margin-bottom:5.0pt"> <div>
<div>
<p class="MsoNormal"><span \
style="font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;color:#1f497d">Hi \
Rajith,</span><u></u><u></u></p> <p class="MsoNormal"><span \
style="font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;color:#1f497d"> \
</span><u></u><u></u></p> <p class="MsoNormal"><span \
style="font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;color:#1f497d">Now \
it generated target files without errors. Thanks for your instant \
reply.</span><u></u><u></u></p>




<p class="MsoNormal"><span \
style="font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;color:#1f497d"> \
</span><u></u><u></u></p> <p class="MsoNormal"><span \
style="font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;color:#1f497d">Regards,</span><u></u><u></u></p>
 <p class="MsoNormal"><span \
style="font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;color:#1f497d">Akila</span><u></u><u></u></p>
 <p class="MsoNormal"><span \
style="font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;color:#1f497d"> \
</span><u></u><u></u></p> <p class="MsoNormal"><b><span \
style="font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;">From:</span></b><span \
style="font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;"> \
Rajith Vitharana [mailto:</span><a href="mailto:rajithv@wso2.com" \
target="_blank"><span \
style="font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;">rajithv@wso2.com</span></a><span \
style="font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;">] \
<br> <b>Sent:</b> Wednesday, August 27, 2014 12:49 PM<br>
<b>To:</b> Akila Nimantha [IT/EKO/LOITS]<br>
<b>Cc:</b> </span><a href="mailto:dev@wso2.org" target="_blank"><span \
style="font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;">dev@wso2.org</span></a><span \
style="font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;"><br>




<b>Subject:</b> Re: [Dev] Failed to execute goal on project \
WSO2-Axis2-Client</span><u></u><u></u></p> <div>
<div>
<p class="MsoNormal">  <u></u><u></u></p>
<div>
<p class="MsoNormal">Hi Akila,<u></u><u></u></p>
<div>
<p class="MsoNormal">  <u></u><u></u></p>
</div>
<div>
<p class="MsoNormal">It seems axis2 client version &quot;1.6.1-wso2v10&quot; is not \
released to nexus yet. So try building the sample with axis2 version \
&quot;1.6.1-wso2v9&quot; as shown below.<u></u><u></u></p> </div>
<div>
<p class="MsoNormal">  <u></u><u></u></p>
</div>
<div>
<p class="MsoNormal">&lt;axis2_version&gt;1.6.1-wso2v9&lt;/axis2_version&gt;<u></u><u></u></p>
 </div>
<div>
<p class="MsoNormal">  <u></u><u></u></p>
</div>
<div>
<p class="MsoNormal">Thanks,<u></u><u></u></p>
</div>
</div>
<div>
<p class="MsoNormal" style="margin-bottom:12.0pt">  <u></u><u></u></p>
<div>
<p class="MsoNormal">On Wed, Aug 27, 2014 at 12:22 PM, Akila Nimantha [IT/EKO/LOITS] \
&lt;<a href="mailto:AkilaN@lolctech.com" target="_blank">AkilaN@lolctech.com</a>&gt; \
wrote:<u></u><u></u></p> <blockquote style="border:none;border-left:solid #cccccc \
1.0pt;padding:0in 0in 0in \
6.0pt;margin-left:4.8pt;margin-top:5.0pt;margin-right:0in;margin-bottom:5.0pt"> <div>
<div>
<p class="MsoNormal">  <u></u><u></u></p>
<p class="MsoNormal"><span \
style="font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;color:#1f497d">Hi \
all,</span><u></u><u></u></p> <p class="MsoNormal"><span \
style="font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;color:#1f497d"> \
</span><u></u><u></u></p> <p class="MsoNormal"><span \
style="font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;">We \
tried to build application server Helloservice jar file using maven. When I trying to \
build the project using  "mvn clean install" I got following error.also I have \
attached generated POM file and wsdl file as well. </span><u></u><u></u></p>
<p class="MsoNormal"><span \
style="font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;">  \
</span><u></u><u></u></p> <p class="MsoNormal"><span \
style="color:#1f497d">"</span><u></u><u></u></p> <div>
<p class="MsoNormal" style="margin-bottom:12.0pt">  Failed to execute goal on project \
WSO2-Axis2-Client: Could not resolve dependencies for project \
WSO2:WSO2-Axis2-Client:jar:0.0.1-SNAPSHOT: Failure to find \
org.apache.axis2:axis2:jar:1.6.1-wso2v10  in <a href="http://dist.wso2.org/maven2/" \
target="_blank">http://dist.wso2.org/maven2/</a> was cached in the local repository, \
resolution will not be reattempted until the update interval of wso2-Nexus has \
elapsed or updates are forced -&gt; [Help 1]<u></u><u></u></p>




<p class="MsoNormal" style="margin-bottom:12.0pt"><span \
style="font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;color:#1f497d">"</span><u></u><u></u></p>
 <p class="MsoNormal" style="margin-bottom:12.0pt"><span \
style="font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;color:#1f497d">Also \
I tried replacing repository element with as below,</span><u></u><u></u></p>




<p class="MsoNormal">  &lt;repository&gt;<u></u><u></u></p>
<p class="MsoNormal">                  \
&lt;id&gt;wso2-nexus&lt;/id&gt;<u></u><u></u></p> <p class="MsoNormal">               \
&lt;name&gt;WSO2 internal Repository&lt;/name&gt;<u></u><u></u></p> <p \
class="MsoNormal">                  &lt;url&gt;<a \
href="http://maven.wso2.org/nexus/content/groups/wso2-public/" \
target="_blank">http://maven.wso2.org/nexus/content/groups/wso2-public/</a>&lt;/url&gt;<u></u><u></u></p>
 <p class="MsoNormal">&lt;/repository&gt;<u></u><u></u></p>
<p class="MsoNormal" style="margin-bottom:12.0pt"><span \
style="font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;color:#1f497d"> \
</span><u></u><u></u></p> <p class="MsoNormal" style="margin-bottom:12.0pt"><span \
style="font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;color:#1f497d">But \
it still give the same error..</span><u></u><u></u></p> <p class="MsoNormal" \
style="margin-bottom:12.0pt"><span \
style="font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;color:#1f497d"> \
</span><u></u><u></u></p> <p class="MsoNormal" style="margin-bottom:12.0pt"><span \
style="font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;color:#1f497d">Regards,</span><u></u><u></u></p>
 <p class="MsoNormal" style="margin-bottom:12.0pt"><span \
style="font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;color:#1f497d">Akila</span><u></u><u></u></p>
 </div>
</div>
<p>This message (including any attachments) is intended only for the use of the \
individual or entity to which it is addressed and may contain information that is \
non-public, proprietary, privileged, confidential, and exempt from disclosure under \
applicable  law or may constitute as attorney work product. If you are not the \
intended recipient, you are hereby notified that any use, dissemination, \
distribution, or copying of this communication is strictly prohibited. If you have \
received this communication in error,  notify us immediately by telephone and (i) \
destroy this message if a facsimile or (ii) delete this message immediately if this \
is an electronic communication. Thank you.<u></u><u></u></p> </div>
<p class="MsoNormal" style="margin-bottom:12.0pt"><br>
_______________________________________________<br>
Dev mailing list<br>
<a href="mailto:Dev@wso2.org" target="_blank">Dev@wso2.org</a><br>
<a href="http://wso2.org/cgi-bin/mailman/listinfo/dev" \
target="_blank">http://wso2.org/cgi-bin/mailman/listinfo/dev</a><u></u><u></u></p> \
</blockquote> </div>
<p class="MsoNormal"><br>
<br clear="all">
<u></u><u></u></p>
<div>
<p class="MsoNormal">  <u></u><u></u></p>
</div>
<p class="MsoNormal">--
<u></u><u></u></p>
<div>
<div>
<p class="MsoNormal"><span style="color:#222222">Rajith Vitharana<br>
<br>
Software Engineer,<br>
WSO2 Inc. :  </span><a href="http://wso2.com/" target="_blank">wso2.com</a><span \
style="color:#222222"><br> Mobile :  </span><a href="tel:%2B94715883223" \
target="_blank">+94715883223</a><span style="color:#222222"><br> Blog :  </span><a \
href="http://lankavitharana.blogspot.com/" \
target="_blank">http://lankavitharana.blogspot.com/</a><u></u><u></u></p> </div>
</div>
</div>
</div>
</div>
</div>
<div>
<div>
<p>This message (including any attachments) is intended only for the use of the \
individual or entity to which it is addressed and may contain information that is \
non-public, proprietary, privileged, confidential, and exempt from disclosure under \
applicable  law or may constitute as attorney work product. If you are not the \
intended recipient, you are hereby notified that any use, dissemination, \
distribution, or copying of this communication is strictly prohibited. If you have \
received this communication in error,  notify us immediately by telephone and (i) \
destroy this message if a facsimile or (ii) delete this message immediately if this \
is an electronic communication. Thank you.<u></u><u></u></p> </div>
</div>
</div>
</blockquote>
</div>
<p class="MsoNormal"><br>
<br clear="all">
<u></u><u></u></p>
<div>
<p class="MsoNormal"><u></u>  <u></u></p>
</div>
<p class="MsoNormal">-- <u></u><u></u></p>
<div>
<div>
<p class="MsoNormal"><span style="color:#222222">Rajith Vitharana<br>
<br>
Software Engineer,<br>
WSO2 Inc. :  </span><a href="http://wso2.com/" target="_blank">wso2.com</a><span \
style="color:#222222"><br> Mobile :  </span><span style="color:#888888"><a \
href="tel:%2B94715883223" value="+94715883223" \
target="_blank">+94715883223</a></span><span style="color:#222222"><br> Blog :  \
</span><a href="http://lankavitharana.blogspot.com/" \
target="_blank">http://lankavitharana.blogspot.com/</a><span \
style="color:#888888"><u></u><u></u></span></p> </div>
</div>
</div>
</div>
</div>
<p class="MsoNormal" style="margin-bottom:12.0pt"><br>
_______________________________________________<br>
Dev mailing list<br>
<a href="mailto:Dev@wso2.org" target="_blank">Dev@wso2.org</a><br>
<a href="http://wso2.org/cgi-bin/mailman/listinfo/dev" \
target="_blank">http://wso2.org/cgi-bin/mailman/listinfo/dev</a><u></u><u></u></p> \
</blockquote> </div>
<p class="MsoNormal"><u></u>  <u></u></p>
</div>
</div></div></div><div><div>
<p>This message (including any attachments) is intended only for
the use of the individual or entity to which it is addressed and
may contain information that is non-public, proprietary,
privileged, confidential, and exempt from disclosure under
applicable law or may constitute as attorney work product.
If you are not the intended recipient, you are hereby notified
that any use, dissemination, distribution, or copying of this
communication is strictly prohibited. If you have received this
communication in error, notify us immediately by telephone and
(i) destroy this message if a facsimile or (ii) delete this message
immediately if this is an electronic communication.

Thank you.</p>
</div></div></div>

</blockquote></div><br></div></div></div>
</blockquote></div><br><br clear="all"><div><br></div>-- <br><div dir="ltr"><div \
style="color:rgb(136,136,136)"><span style="color:rgb(34,34,34)">Rajith \
Vitharana</span><br style="color:rgb(34,34,34)"><br style="color:rgb(34,34,34)">


<span style="color:rgb(34,34,34)">Software Engineer,</span><br \
style="color:rgb(34,34,34)"><span style="color:rgb(34,34,34)">WSO2 Inc. :  </span><a \
href="http://wso2.com/" target="_blank">wso2.com</a><br style="color:rgb(34,34,34)">


<span style="color:rgb(34,34,34)">Mobile :  </span><a title="Call \
Now">+94715883223</a><br style="color:rgb(34,34,34)"><span \
style="color:rgb(34,34,34)">Blog :  </span><a \
href="http://lankavitharana.blogspot.com/" \
target="_blank">http://lankavitharana.blogspot.com/</a><br>


</div></div>
</div>
</div></div></blockquote></div><br></div>



_______________________________________________
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


[prev in list] [next in list] [prev in thread] [next in thread] 

Configure | About | News | Add a list | Sponsored by KoreLogic