You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@ignite.apache.org by Raymond Wilson <ra...@trimble.com> on 2021/05/09 23:51:23 UTC

Issue building Ignite 2.10 branch

Hi,

I have made a small modification to the ignite-kubernetes module to allow
specification of a port for the IP finder.

To build Ignite, I am using this comment from DEVNOTES.TXT:

mvn clean install -am -Pall-java,all-scala,licenses -DskipTests

This ultimately fails with the following error:

[ERROR] Failed to execute goal on project ignite-jta: Could not resolve
dependencies for project org.apache.ignite:ignite-jta:jar:2.10.0: Failed to
collect dependencies at org.ow2.jotm:jotm-core:jar:2.2.3 ->
org.ow2.carol:carol:jar:3.0.8 ->
org.jacorb:jacorb:jar:2.2.3-jonas-patch-20071018: Failed to read artifact
descriptor for org.jacorb:jacorb:jar:2.2.3-jonas-patch-20071018: Could not
transfer artifact org.jacorb:jacorb:pom:2.2.3-jonas-patch-20071018 from/to
maven-default-http-blocker (http://0.0.0.0/): transfer failed for
http://0.0.0.0/org/jacorb/jacorb/2.2.3-jonas-patch-20071018/jacorb-2.2.3-jonas-patch-20071018.pom:
Connect to 0.0.0.0:80 [/0.0.0.0] failed: Connection refused: connect ->
[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
[ERROR]
[ERROR] After correcting the problems, you can resume the build with the
command
[ERROR]   mvn <args> -rf :ignite-jta

Is there an easy work around for this?

Thanks,
Raymond.


-- 
<http://www.trimble.com/>
Raymond Wilson
Solution Architect, Civil Construction Software Systems (CCSS)
11 Birmingham Drive | Christchurch, New Zealand
raymond_wilson@trimble.com

<https://worksos.trimble.com/?utm_source=Trimble&utm_medium=emailsign&utm_campaign=Launch>

Re: Issue building Ignite 2.10 branch

Posted by Raymond Wilson <ra...@trimble.com>.
Thanks Ivan, that did the trick :)

On Wed, May 12, 2021 at 8:55 PM Ivan Pavlukhin <vo...@gmail.com> wrote:

> Hi Raymond,
>
> Following comes to my mind as a workaround. If you need to build only
> kubernetes module you can specify it directly with mvn command
> arguments.
>
> mvn clean install -Pall-java,all-scala,licenses -DskipTests -pl
> modules/kubernetes -am
>
> Or possibly exclude only jta module from build.
>
> mvn clean install -Pall-java,all-scala,licenses -DskipTests -pl
> '!modules/jta'
>
> 2021-05-12 4:29 GMT+03:00, Raymond Wilson <ra...@trimble.com>:
> > Hi Vishwas,
> >
> > I added the following to my global Maven settings.xml file in the .m2
> > folder:
> >
> > <?xml version="1.0" encoding="UTF-8"?>
> > <settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
> >           xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
> >           xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0
> > http://maven.apache.org/xsd/settings-1.0.0.xsd">
> >
> > <profiles>
> >    <profile>
> >      <id>myprofile</id>
> >      <repositories>
> >        <repository>
> >          <id>my-repo2</id>
> >          <name>your custom repo</name>
> >          <url>
> https://repository.ow2.org/nexus/content/repositories/public/
> > </url>
> >        </repository>
> >      </repositories>
> >    </profile>
> >  </profiles>
> > </settings>
> >
> > I get the same result on running the "mvn clean install
> > -Pall-java,all-scala,licenses -DskipTests" command line:
> >
> > [ERROR] Failed to execute goal on project ignite-jta: Could not resolve
> > dependencies for project org.apache.ignite:ignite-jta:jar:2.10.0: Failed
> to
> > collect dependencies at org.ow2.jotm:jotm-core:jar:2.2.3 ->
> > org.ow2.carol:carol:jar:3.0.8 ->
> > org.jacorb:jacorb:jar:2.2.3-jonas-patch-20071018: Failed to read artifact
> > descriptor for org.jacorb:jacorb:jar:2.2.3-jonas-patch-20071018: Could
> not
> > transfer artifact org.jacorb:jacorb:pom:2.2.3-jonas-patch-20071018
> from/to
> > maven-default-http-blocker (http://0.0.0.0/): transfer failed for
> >
> http://0.0.0.0/org/jacorb/jacorb/2.2.3-jonas-patch-20071018/jacorb-2.2.3-jonas-patch-20071018.pom
> :
> > Connect to 0.0.0.0:80 [/0.0.0.0] failed: Connection refused: connect ->
> > [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
> > [ERROR]
> > [ERROR] After correcting the problems, you can resume the build with the
> > command
> > [ERROR]   mvn <args> -rf :ignite-jta
> >
> > Raymond.
> >
> > On Wed, May 12, 2021 at 12:50 PM Vishwas Bm <bm...@gmail.com> wrote:
> >
> >> Hi Raymond,
> >>
> >> This is an issue related to repository configuration in settings.xml.
> >>
> >> You can find more information in below thread
> >>
> >>
> http://apache-ignite-developers.2346864.n4.nabble.com/Building-Ignite-with-Adopt-OpenJDK-11-td52389.html#a52391
> >>
> >>
> >>
> >> Regards,
> >> Vishwas
> >>
> >> On Wed, 12 May, 2021, 05:17 Raymond Wilson, <raymond_wilson@trimble.com
> >
> >> wrote:
> >>
> >> > Hi,
> >> >
> >> > I have made a small modification to the ignite-kubernetes module to
> >> > allow
> >> > specification of a port for the IP finder.
> >> >
> >> > To build Ignite, I am using this comment from DEVNOTES.TXT:
> >> >
> >> > mvn clean install -am -Pall-java,all-scala,licenses -DskipTests
> >> >
> >> > This ultimately fails with the following error:
> >> >
> >> > [ERROR] Failed to execute goal on project ignite-jta: Could not
> resolve
> >> > dependencies for project org.apache.ignite:ignite-jta:jar:2.10.0:
> >> > Failed
> >> to
> >> > collect dependencies at org.ow2.jotm:jotm-core:jar:2.2.3 ->
> >> > org.ow2.carol:carol:jar:3.0.8 ->
> >> > org.jacorb:jacorb:jar:2.2.3-jonas-patch-20071018: Failed to read
> >> > artifact
> >> > descriptor for org.jacorb:jacorb:jar:2.2.3-jonas-patch-20071018: Could
> >> not
> >> > transfer artifact org.jacorb:jacorb:pom:2.2.3-jonas-patch-20071018
> >> from/to
> >> > maven-default-http-blocker (http://0.0.0.0/): transfer failed for
> >> >
> >> >
> >>
> http://0.0.0.0/org/jacorb/jacorb/2.2.3-jonas-patch-20071018/jacorb-2.2.3-jonas-patch-20071018.pom
> >> > :
> >> > Connect to 0.0.0.0:80 [/0.0.0.0] failed: Connection refused: connect
> ->
> >> > [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
> >> > [ERROR]
> >> > [ERROR] After correcting the problems, you can resume the build with
> >> > the
> >> > command
> >> > [ERROR]   mvn <args> -rf :ignite-jta
> >> >
> >> > I found some release notes that indicated the Maven (as of 3.8.1) is
> no
> >> > longer supporting HTTP addresses for dependencies. I downgraded to
> >> > Maven
> >> > 3.8.0 with no change to the result.
> >> >
> >> > Is there an easy work around for this?
> >> >
> >> > Thanks,
> >> > Raymond.
> >> >
> >> >
> >> > --
> >> > <http://www.trimble.com/>
> >> > Raymond Wilson
> >> > Trimble Distinguished Engineer, Civil Construction Software (CCS)
> >> > 11 Birmingham Drive | Christchurch, New Zealand
> >> > raymond_wilson@trimble.com
> >> >
> >> > <
> >> >
> >>
> https://worksos.trimble.com/?utm_source=Trimble&utm_medium=emailsign&utm_campaign=Launch
> >> > >
> >> >
> >>
> >
> >
> > --
> > <http://www.trimble.com/>
> > Raymond Wilson
> > Trimble Distinguished Engineer, Civil Construction Software (CCS)
> > 11 Birmingham Drive | Christchurch, New Zealand
> > raymond_wilson@trimble.com
> >
> > <
> https://worksos.trimble.com/?utm_source=Trimble&utm_medium=emailsign&utm_campaign=Launch
> >
> >
>
>
> --
>
> Best regards,
> Ivan Pavlukhin
>


-- 
<http://www.trimble.com/>
Raymond Wilson
Trimble Distinguished Engineer, Civil Construction Software (CCS)
11 Birmingham Drive | Christchurch, New Zealand
raymond_wilson@trimble.com

<https://worksos.trimble.com/?utm_source=Trimble&utm_medium=emailsign&utm_campaign=Launch>

Re: Issue building Ignite 2.10 branch

Posted by Ivan Pavlukhin <vo...@gmail.com>.
Hi Raymond,

Following comes to my mind as a workaround. If you need to build only
kubernetes module you can specify it directly with mvn command
arguments.

mvn clean install -Pall-java,all-scala,licenses -DskipTests -pl
modules/kubernetes -am

Or possibly exclude only jta module from build.

mvn clean install -Pall-java,all-scala,licenses -DskipTests -pl '!modules/jta'

2021-05-12 4:29 GMT+03:00, Raymond Wilson <ra...@trimble.com>:
> Hi Vishwas,
>
> I added the following to my global Maven settings.xml file in the .m2
> folder:
>
> <?xml version="1.0" encoding="UTF-8"?>
> <settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
>           xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
>           xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0
> http://maven.apache.org/xsd/settings-1.0.0.xsd">
>
> <profiles>
>    <profile>
>      <id>myprofile</id>
>      <repositories>
>        <repository>
>          <id>my-repo2</id>
>          <name>your custom repo</name>
>          <url>https://repository.ow2.org/nexus/content/repositories/public/
> </url>
>        </repository>
>      </repositories>
>    </profile>
>  </profiles>
> </settings>
>
> I get the same result on running the "mvn clean install
> -Pall-java,all-scala,licenses -DskipTests" command line:
>
> [ERROR] Failed to execute goal on project ignite-jta: Could not resolve
> dependencies for project org.apache.ignite:ignite-jta:jar:2.10.0: Failed to
> collect dependencies at org.ow2.jotm:jotm-core:jar:2.2.3 ->
> org.ow2.carol:carol:jar:3.0.8 ->
> org.jacorb:jacorb:jar:2.2.3-jonas-patch-20071018: Failed to read artifact
> descriptor for org.jacorb:jacorb:jar:2.2.3-jonas-patch-20071018: Could not
> transfer artifact org.jacorb:jacorb:pom:2.2.3-jonas-patch-20071018 from/to
> maven-default-http-blocker (http://0.0.0.0/): transfer failed for
> http://0.0.0.0/org/jacorb/jacorb/2.2.3-jonas-patch-20071018/jacorb-2.2.3-jonas-patch-20071018.pom:
> Connect to 0.0.0.0:80 [/0.0.0.0] failed: Connection refused: connect ->
> [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
> [ERROR]
> [ERROR] After correcting the problems, you can resume the build with the
> command
> [ERROR]   mvn <args> -rf :ignite-jta
>
> Raymond.
>
> On Wed, May 12, 2021 at 12:50 PM Vishwas Bm <bm...@gmail.com> wrote:
>
>> Hi Raymond,
>>
>> This is an issue related to repository configuration in settings.xml.
>>
>> You can find more information in below thread
>>
>> http://apache-ignite-developers.2346864.n4.nabble.com/Building-Ignite-with-Adopt-OpenJDK-11-td52389.html#a52391
>>
>>
>>
>> Regards,
>> Vishwas
>>
>> On Wed, 12 May, 2021, 05:17 Raymond Wilson, <ra...@trimble.com>
>> wrote:
>>
>> > Hi,
>> >
>> > I have made a small modification to the ignite-kubernetes module to
>> > allow
>> > specification of a port for the IP finder.
>> >
>> > To build Ignite, I am using this comment from DEVNOTES.TXT:
>> >
>> > mvn clean install -am -Pall-java,all-scala,licenses -DskipTests
>> >
>> > This ultimately fails with the following error:
>> >
>> > [ERROR] Failed to execute goal on project ignite-jta: Could not resolve
>> > dependencies for project org.apache.ignite:ignite-jta:jar:2.10.0:
>> > Failed
>> to
>> > collect dependencies at org.ow2.jotm:jotm-core:jar:2.2.3 ->
>> > org.ow2.carol:carol:jar:3.0.8 ->
>> > org.jacorb:jacorb:jar:2.2.3-jonas-patch-20071018: Failed to read
>> > artifact
>> > descriptor for org.jacorb:jacorb:jar:2.2.3-jonas-patch-20071018: Could
>> not
>> > transfer artifact org.jacorb:jacorb:pom:2.2.3-jonas-patch-20071018
>> from/to
>> > maven-default-http-blocker (http://0.0.0.0/): transfer failed for
>> >
>> >
>> http://0.0.0.0/org/jacorb/jacorb/2.2.3-jonas-patch-20071018/jacorb-2.2.3-jonas-patch-20071018.pom
>> > :
>> > Connect to 0.0.0.0:80 [/0.0.0.0] failed: Connection refused: connect ->
>> > [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
>> > [ERROR]
>> > [ERROR] After correcting the problems, you can resume the build with
>> > the
>> > command
>> > [ERROR]   mvn <args> -rf :ignite-jta
>> >
>> > I found some release notes that indicated the Maven (as of 3.8.1) is no
>> > longer supporting HTTP addresses for dependencies. I downgraded to
>> > Maven
>> > 3.8.0 with no change to the result.
>> >
>> > Is there an easy work around for this?
>> >
>> > Thanks,
>> > Raymond.
>> >
>> >
>> > --
>> > <http://www.trimble.com/>
>> > Raymond Wilson
>> > Trimble Distinguished Engineer, Civil Construction Software (CCS)
>> > 11 Birmingham Drive | Christchurch, New Zealand
>> > raymond_wilson@trimble.com
>> >
>> > <
>> >
>> https://worksos.trimble.com/?utm_source=Trimble&utm_medium=emailsign&utm_campaign=Launch
>> > >
>> >
>>
>
>
> --
> <http://www.trimble.com/>
> Raymond Wilson
> Trimble Distinguished Engineer, Civil Construction Software (CCS)
> 11 Birmingham Drive | Christchurch, New Zealand
> raymond_wilson@trimble.com
>
> <https://worksos.trimble.com/?utm_source=Trimble&utm_medium=emailsign&utm_campaign=Launch>
>


-- 

Best regards,
Ivan Pavlukhin

Re: Issue building Ignite 2.10 branch

Posted by Raymond Wilson <ra...@trimble.com>.
Hi Vishwas,

I added the following to my global Maven settings.xml file in the .m2
folder:

<?xml version="1.0" encoding="UTF-8"?>
<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
          xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0
http://maven.apache.org/xsd/settings-1.0.0.xsd">

<profiles>
   <profile>
     <id>myprofile</id>
     <repositories>
       <repository>
         <id>my-repo2</id>
         <name>your custom repo</name>
         <url>https://repository.ow2.org/nexus/content/repositories/public/
</url>
       </repository>
     </repositories>
   </profile>
 </profiles>
</settings>

I get the same result on running the "mvn clean install
-Pall-java,all-scala,licenses -DskipTests" command line:

[ERROR] Failed to execute goal on project ignite-jta: Could not resolve
dependencies for project org.apache.ignite:ignite-jta:jar:2.10.0: Failed to
collect dependencies at org.ow2.jotm:jotm-core:jar:2.2.3 ->
org.ow2.carol:carol:jar:3.0.8 ->
org.jacorb:jacorb:jar:2.2.3-jonas-patch-20071018: Failed to read artifact
descriptor for org.jacorb:jacorb:jar:2.2.3-jonas-patch-20071018: Could not
transfer artifact org.jacorb:jacorb:pom:2.2.3-jonas-patch-20071018 from/to
maven-default-http-blocker (http://0.0.0.0/): transfer failed for
http://0.0.0.0/org/jacorb/jacorb/2.2.3-jonas-patch-20071018/jacorb-2.2.3-jonas-patch-20071018.pom:
Connect to 0.0.0.0:80 [/0.0.0.0] failed: Connection refused: connect ->
[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
[ERROR]
[ERROR] After correcting the problems, you can resume the build with the
command
[ERROR]   mvn <args> -rf :ignite-jta

Raymond.

On Wed, May 12, 2021 at 12:50 PM Vishwas Bm <bm...@gmail.com> wrote:

> Hi Raymond,
>
> This is an issue related to repository configuration in settings.xml.
>
> You can find more information in below thread
>
> http://apache-ignite-developers.2346864.n4.nabble.com/Building-Ignite-with-Adopt-OpenJDK-11-td52389.html#a52391
>
>
>
> Regards,
> Vishwas
>
> On Wed, 12 May, 2021, 05:17 Raymond Wilson, <ra...@trimble.com>
> wrote:
>
> > Hi,
> >
> > I have made a small modification to the ignite-kubernetes module to allow
> > specification of a port for the IP finder.
> >
> > To build Ignite, I am using this comment from DEVNOTES.TXT:
> >
> > mvn clean install -am -Pall-java,all-scala,licenses -DskipTests
> >
> > This ultimately fails with the following error:
> >
> > [ERROR] Failed to execute goal on project ignite-jta: Could not resolve
> > dependencies for project org.apache.ignite:ignite-jta:jar:2.10.0: Failed
> to
> > collect dependencies at org.ow2.jotm:jotm-core:jar:2.2.3 ->
> > org.ow2.carol:carol:jar:3.0.8 ->
> > org.jacorb:jacorb:jar:2.2.3-jonas-patch-20071018: Failed to read artifact
> > descriptor for org.jacorb:jacorb:jar:2.2.3-jonas-patch-20071018: Could
> not
> > transfer artifact org.jacorb:jacorb:pom:2.2.3-jonas-patch-20071018
> from/to
> > maven-default-http-blocker (http://0.0.0.0/): transfer failed for
> >
> >
> http://0.0.0.0/org/jacorb/jacorb/2.2.3-jonas-patch-20071018/jacorb-2.2.3-jonas-patch-20071018.pom
> > :
> > Connect to 0.0.0.0:80 [/0.0.0.0] failed: Connection refused: connect ->
> > [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
> > [ERROR]
> > [ERROR] After correcting the problems, you can resume the build with the
> > command
> > [ERROR]   mvn <args> -rf :ignite-jta
> >
> > I found some release notes that indicated the Maven (as of 3.8.1) is no
> > longer supporting HTTP addresses for dependencies. I downgraded to Maven
> > 3.8.0 with no change to the result.
> >
> > Is there an easy work around for this?
> >
> > Thanks,
> > Raymond.
> >
> >
> > --
> > <http://www.trimble.com/>
> > Raymond Wilson
> > Trimble Distinguished Engineer, Civil Construction Software (CCS)
> > 11 Birmingham Drive | Christchurch, New Zealand
> > raymond_wilson@trimble.com
> >
> > <
> >
> https://worksos.trimble.com/?utm_source=Trimble&utm_medium=emailsign&utm_campaign=Launch
> > >
> >
>


-- 
<http://www.trimble.com/>
Raymond Wilson
Trimble Distinguished Engineer, Civil Construction Software (CCS)
11 Birmingham Drive | Christchurch, New Zealand
raymond_wilson@trimble.com

<https://worksos.trimble.com/?utm_source=Trimble&utm_medium=emailsign&utm_campaign=Launch>

Re: Issue building Ignite 2.10 branch

Posted by Vishwas Bm <bm...@gmail.com>.
Hi Raymond,

This is an issue related to repository configuration in settings.xml.

You can find more information in below thread
http://apache-ignite-developers.2346864.n4.nabble.com/Building-Ignite-with-Adopt-OpenJDK-11-td52389.html#a52391



Regards,
Vishwas

On Wed, 12 May, 2021, 05:17 Raymond Wilson, <ra...@trimble.com>
wrote:

> Hi,
>
> I have made a small modification to the ignite-kubernetes module to allow
> specification of a port for the IP finder.
>
> To build Ignite, I am using this comment from DEVNOTES.TXT:
>
> mvn clean install -am -Pall-java,all-scala,licenses -DskipTests
>
> This ultimately fails with the following error:
>
> [ERROR] Failed to execute goal on project ignite-jta: Could not resolve
> dependencies for project org.apache.ignite:ignite-jta:jar:2.10.0: Failed to
> collect dependencies at org.ow2.jotm:jotm-core:jar:2.2.3 ->
> org.ow2.carol:carol:jar:3.0.8 ->
> org.jacorb:jacorb:jar:2.2.3-jonas-patch-20071018: Failed to read artifact
> descriptor for org.jacorb:jacorb:jar:2.2.3-jonas-patch-20071018: Could not
> transfer artifact org.jacorb:jacorb:pom:2.2.3-jonas-patch-20071018 from/to
> maven-default-http-blocker (http://0.0.0.0/): transfer failed for
>
> http://0.0.0.0/org/jacorb/jacorb/2.2.3-jonas-patch-20071018/jacorb-2.2.3-jonas-patch-20071018.pom
> :
> Connect to 0.0.0.0:80 [/0.0.0.0] failed: Connection refused: connect ->
> [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
> [ERROR]
> [ERROR] After correcting the problems, you can resume the build with the
> command
> [ERROR]   mvn <args> -rf :ignite-jta
>
> I found some release notes that indicated the Maven (as of 3.8.1) is no
> longer supporting HTTP addresses for dependencies. I downgraded to Maven
> 3.8.0 with no change to the result.
>
> Is there an easy work around for this?
>
> Thanks,
> Raymond.
>
>
> --
> <http://www.trimble.com/>
> Raymond Wilson
> Trimble Distinguished Engineer, Civil Construction Software (CCS)
> 11 Birmingham Drive | Christchurch, New Zealand
> raymond_wilson@trimble.com
>
> <
> https://worksos.trimble.com/?utm_source=Trimble&utm_medium=emailsign&utm_campaign=Launch
> >
>

Fwd: Issue building Ignite 2.10 branch

Posted by Raymond Wilson <ra...@trimble.com>.
Hi,

I have made a small modification to the ignite-kubernetes module to allow
specification of a port for the IP finder.

To build Ignite, I am using this comment from DEVNOTES.TXT:

mvn clean install -am -Pall-java,all-scala,licenses -DskipTests

This ultimately fails with the following error:

[ERROR] Failed to execute goal on project ignite-jta: Could not resolve
dependencies for project org.apache.ignite:ignite-jta:jar:2.10.0: Failed to
collect dependencies at org.ow2.jotm:jotm-core:jar:2.2.3 ->
org.ow2.carol:carol:jar:3.0.8 ->
org.jacorb:jacorb:jar:2.2.3-jonas-patch-20071018: Failed to read artifact
descriptor for org.jacorb:jacorb:jar:2.2.3-jonas-patch-20071018: Could not
transfer artifact org.jacorb:jacorb:pom:2.2.3-jonas-patch-20071018 from/to
maven-default-http-blocker (http://0.0.0.0/): transfer failed for
http://0.0.0.0/org/jacorb/jacorb/2.2.3-jonas-patch-20071018/jacorb-2.2.3-jonas-patch-20071018.pom:
Connect to 0.0.0.0:80 [/0.0.0.0] failed: Connection refused: connect ->
[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
[ERROR]
[ERROR] After correcting the problems, you can resume the build with the
command
[ERROR]   mvn <args> -rf :ignite-jta

I found some release notes that indicated the Maven (as of 3.8.1) is no
longer supporting HTTP addresses for dependencies. I downgraded to Maven
3.8.0 with no change to the result.

Is there an easy work around for this?

Thanks,
Raymond.


-- 
<http://www.trimble.com/>
Raymond Wilson
Trimble Distinguished Engineer, Civil Construction Software (CCS)
11 Birmingham Drive | Christchurch, New Zealand
raymond_wilson@trimble.com

<https://worksos.trimble.com/?utm_source=Trimble&utm_medium=emailsign&utm_campaign=Launch>

Re: Issue building Ignite 2.10 branch

Posted by Stephen Darlington <st...@gridgain.com>.
Probably a question for the developer mailing list.

http://apache-ignite-developers.2346864.n4.nabble.com

(FWIW, I get the same error message. I’ve not had the chance to debug it yet.)

> On 10 May 2021, at 00:51, Raymond Wilson <ra...@trimble.com> wrote:
> 
> Hi,
> 
> I have made a small modification to the ignite-kubernetes module to allow specification of a port for the IP finder.
> 
> To build Ignite, I am using this comment from DEVNOTES.TXT:
> 
> mvn clean install -am -Pall-java,all-scala,licenses -DskipTests
> 
> This ultimately fails with the following error:
> 
> [ERROR] Failed to execute goal on project ignite-jta: Could not resolve dependencies for project org.apache.ignite:ignite-jta:jar:2.10.0: Failed to collect dependencies at org.ow2.jotm:jotm-core:jar:2.2.3 -> org.ow2.carol:carol:jar:3.0.8 -> org.jacorb:jacorb:jar:2.2.3-jonas-patch-20071018: Failed to read artifact descriptor for org.jacorb:jacorb:jar:2.2.3-jonas-patch-20071018: Could not transfer artifact org.jacorb:jacorb:pom:2.2.3-jonas-patch-20071018 from/to maven-default-http-blocker (http://0.0.0.0/ <http://0.0.0.0/>): transfer failed for http://0.0.0.0/org/jacorb/jacorb/2.2.3-jonas-patch-20071018/jacorb-2.2.3-jonas-patch-20071018.pom <http://0.0.0.0/org/jacorb/jacorb/2.2.3-jonas-patch-20071018/jacorb-2.2.3-jonas-patch-20071018.pom>: Connect to 0.0.0.0:80 <http://0.0.0.0/> [/0.0.0.0 <http://0.0.0.0/>] failed: Connection refused: connect -> [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 <http://cwiki.apache.org/confluence/display/MAVEN/DependencyResolutionException>
> [ERROR]
> [ERROR] After correcting the problems, you can resume the build with the command
> [ERROR]   mvn <args> -rf :ignite-jta
> 
> Is there an easy work around for this?
> 
> Thanks,
> Raymond.
> 
> 
> -- 
>  <http://www.trimble.com/>
> Raymond Wilson
> Solution Architect, Civil Construction Software Systems (CCSS)
> 11 Birmingham Drive | Christchurch, New Zealand
> raymond_wilson@trimble.com <ma...@trimble.com>
>  <https://worksos.trimble.com/?utm_source=Trimble&utm_medium=emailsign&utm_campaign=Launch>