|
View:
New views
5 Messages
—
Rating Filter:
Alert me
|
|
|
@Freeman: SOLVED: SMX4 maven install problemHi Freeman,
after adding this repo to features/pom.xml SMX4 did build without any error <repository> <id>repository.apache.org</id> <name>repository.apache.org</name> <releases> <enabled>true</enabled> <updatePolicy>always</updatePolicy> <checksumPolicy>warn</checksumPolicy> </releases> <snapshots> <enabled>true</enabled> <updatePolicy>never</updatePolicy> <checksumPolicy>fail</checksumPolicy> </snapshots> <url>https://repository.apache.org/content/repositories/snapshots/</url> <layout>default</layout> </repository> I checked out fresh sources with following commands svn co https://svn.apache.org/repos/asf/servicemix/smx4/all smx4 svn co https://svn.apache.org/repos/asf/servicemix/maven-plugins/maven-plugins-pom/trunk smx4-maven-plugins svn co https://svn.apache.org/repos/asf/servicemix/components/all smx4-components And after that I did a grep for repository.apache.org but nothing was found, so I added it to the features pom. Is that the right place? Thanks for your help! Michael -- Filekeys Ltd. Michael Roepke Praça da Alegria 18, 4D 1250-004 Lisboa, Portugal www.filekeys.com +351 96 75 93 528 +49 178 391 38 38 |
|
|
Re: @Freeman: SOLVED: SMX4 maven install problemHi,
You need grep http://repository.apache.org/content/groups/snapshots-group they are in features/pom.xml, I just confirmed it. So I still think it's a temporary network access problem for you. Freeman On 2009-11-5, at 上午6:10, Michael Roepke, Filekeys wrote: > Hi Freeman, > > after adding this repo to features/pom.xml SMX4 did build without > any error > > <repository> > <id>repository.apache.org</id> > <name>repository.apache.org</name> > <releases> > <enabled>true</enabled> > <updatePolicy>always</updatePolicy> > <checksumPolicy>warn</checksumPolicy> > </releases> > <snapshots> > <enabled>true</enabled> > <updatePolicy>never</updatePolicy> > <checksumPolicy>fail</checksumPolicy> > </snapshots> > <url>https://repository.apache.org/content/repositories/snapshots/ > </url> > <layout>default</layout> > </repository> > > I checked out fresh sources with following commands > > svn co https://svn.apache.org/repos/asf/servicemix/smx4/all smx4 > svn co https://svn.apache.org/repos/asf/servicemix/maven-plugins/maven-plugins-pom/trunk > smx4-maven-plugins > svn co https://svn.apache.org/repos/asf/servicemix/components/all > smx4-components > > And after that I did a grep for repository.apache.org but nothing was > found, so I added it to the features pom. Is that the right place? > > Thanks for your help! > Michael > > -- > Filekeys Ltd. > Michael Roepke > Praça da Alegria 18, 4D > 1250-004 Lisboa, Portugal > www.filekeys.com > +351 96 75 93 528 > +49 178 391 38 38 -- Freeman Fang ------------------------ Open Source SOA: http://fusesource.com |
|
|
Re: @Freeman: SOLVED: SMX4 maven install problemHi Freeman,
thanks for your reply. I was trying to mention that in my fresh copy from SMX subversion repository this entry was missing in the features/pom.xml <repository> <id>repository.apache.org</id> <name>repository.apache.org</name> <releases> <enabled>true</enabled> <updatePolicy>always</updatePolicy> <checksumPolicy>warn</checksumPolicy> </releases> <snapshots> <enabled>true</enabled> <updatePolicy>never</updatePolicy> <checksumPolicy>fail</checksumPolicy> </snapshots> <url>https://repository.apache.org/content/repositories/snapshots/</url> <layout>default</layout> </repository> I added it manually. So it isn't in the SMX4 subversion... Cheers Michael 2009/11/5 Freeman Fang <freeman.fang@...>: > Hi, > > You need grep http://repository.apache.org/content/groups/snapshots-group > > they are in features/pom.xml, I just confirmed it. > > So I still think it's a temporary network access problem for you. > > Freeman > On 2009-11-5, at 上午6:10, Michael Roepke, Filekeys wrote: > >> Hi Freeman, >> >> after adding this repo to features/pom.xml SMX4 did build without any >> error >> >> <repository> >> <id>repository.apache.org</id> >> <name>repository.apache.org</name> >> <releases> >> <enabled>true</enabled> >> <updatePolicy>always</updatePolicy> >> <checksumPolicy>warn</checksumPolicy> >> </releases> >> <snapshots> >> <enabled>true</enabled> >> <updatePolicy>never</updatePolicy> >> <checksumPolicy>fail</checksumPolicy> >> </snapshots> >> >> <url>https://repository.apache.org/content/repositories/snapshots/</url> >> <layout>default</layout> >> </repository> >> >> I checked out fresh sources with following commands >> >> svn co https://svn.apache.org/repos/asf/servicemix/smx4/all smx4 >> svn co >> https://svn.apache.org/repos/asf/servicemix/maven-plugins/maven-plugins-pom/trunk >> smx4-maven-plugins >> svn co https://svn.apache.org/repos/asf/servicemix/components/all >> smx4-components >> >> And after that I did a grep for repository.apache.org but nothing was >> found, so I added it to the features pom. Is that the right place? >> >> Thanks for your help! >> Michael >> >> -- >> Filekeys Ltd. >> Michael Roepke >> Praça da Alegria 18, 4D >> 1250-004 Lisboa, Portugal >> www.filekeys.com >> +351 96 75 93 528 >> +49 178 391 38 38 > > > -- > Freeman Fang > ------------------------ > Open Source SOA: http://fusesource.com > > -- Filekeys Ltd. Michael Roepke Praça da Alegria 18, 4D 1250-004 Lisboa, Portugal www.filekeys.com +351 96 75 93 528 +49 178 391 38 38 Sent from Lisbon, 11, Portugal |
|
|
Re: @Freeman: SOLVED: SMX4 maven install problemHi,
We have http://repository.apache.org/content/groups/snapshots-group but not https://repository.apache.org/content/repositories/snapshots/ in features/pom.xml Those two url are pretty much same for me and it also works Freeman On 2009-11-5, at 下午5:13, Michael Roepke, Filekeys wrote: > Hi Freeman, > > thanks for your reply. I was trying to mention that in my fresh copy > from SMX subversion repository this entry was missing in the > features/pom.xml > > <repository> > <id>repository.apache.org</id> > <name>repository.apache.org</name> > <releases> > <enabled>true</enabled> > <updatePolicy>always</updatePolicy> > <checksumPolicy>warn</checksumPolicy> > </releases> > <snapshots> > <enabled>true</enabled> > <updatePolicy>never</updatePolicy> > <checksumPolicy>fail</checksumPolicy> > </snapshots> > <url>https://repository.apache.org/content/repositories/snapshots/ > </url> > <layout>default</layout> > </repository> > > I added it manually. So it isn't in the SMX4 subversion... > > Cheers > Michael > > 2009/11/5 Freeman Fang <freeman.fang@...>: >> Hi, >> >> You need grep http://repository.apache.org/content/groups/snapshots-group >> >> they are in features/pom.xml, I just confirmed it. >> >> So I still think it's a temporary network access problem for you. >> >> Freeman >> On 2009-11-5, at 上午6:10, Michael Roepke, Filekeys wrote: >> >>> Hi Freeman, >>> >>> after adding this repo to features/pom.xml SMX4 did build without >>> any >>> error >>> >>> <repository> >>> <id>repository.apache.org</id> >>> <name>repository.apache.org</name> >>> <releases> >>> <enabled>true</enabled> >>> <updatePolicy>always</updatePolicy> >>> <checksumPolicy>warn</checksumPolicy> >>> </releases> >>> <snapshots> >>> <enabled>true</enabled> >>> <updatePolicy>never</updatePolicy> >>> <checksumPolicy>fail</checksumPolicy> >>> </snapshots> >>> >>> <url>https://repository.apache.org/content/repositories/snapshots/ >>> </url> >>> <layout>default</layout> >>> </repository> >>> >>> I checked out fresh sources with following commands >>> >>> svn co https://svn.apache.org/repos/asf/servicemix/smx4/all smx4 >>> svn co >>> https://svn.apache.org/repos/asf/servicemix/maven-plugins/maven-plugins-pom/trunk >>> smx4-maven-plugins >>> svn co https://svn.apache.org/repos/asf/servicemix/components/all >>> smx4-components >>> >>> And after that I did a grep for repository.apache.org but nothing >>> was >>> found, so I added it to the features pom. Is that the right place? >>> >>> Thanks for your help! >>> Michael >>> >>> -- >>> Filekeys Ltd. >>> Michael Roepke >>> Praça da Alegria 18, 4D >>> 1250-004 Lisboa, Portugal >>> www.filekeys.com >>> +351 96 75 93 528 >>> +49 178 391 38 38 >> >> >> -- >> Freeman Fang >> ------------------------ >> Open Source SOA: http://fusesource.com >> >> > > > > -- > Filekeys Ltd. > Michael Roepke > Praça da Alegria 18, 4D > 1250-004 Lisboa, Portugal > www.filekeys.com > +351 96 75 93 528 > +49 178 391 38 38 > > > > Sent from Lisbon, 11, Portugal -- Freeman Fang ------------------------ Open Source SOA: http://fusesource.com |
|
|
Re: @Freeman: SOLVED: SMX4 maven install problemAh ok, now I understand what you mean!!!!
Thanks a lot!!! 2009/11/5 Freeman Fang <freeman.fang@...>: > Hi, > > We have http://repository.apache.org/content/groups/snapshots-group but not > https://repository.apache.org/content/repositories/snapshots/ in > features/pom.xml > > Those two url are pretty much same for me and it also works > > Freeman > > > > On 2009-11-5, at 下午5:13, Michael Roepke, Filekeys wrote: > >> Hi Freeman, >> >> thanks for your reply. I was trying to mention that in my fresh copy >> from SMX subversion repository this entry was missing in the >> features/pom.xml >> >> <repository> >> <id>repository.apache.org</id> >> <name>repository.apache.org</name> >> <releases> >> <enabled>true</enabled> >> <updatePolicy>always</updatePolicy> >> <checksumPolicy>warn</checksumPolicy> >> </releases> >> <snapshots> >> <enabled>true</enabled> >> <updatePolicy>never</updatePolicy> >> <checksumPolicy>fail</checksumPolicy> >> </snapshots> >> >> <url>https://repository.apache.org/content/repositories/snapshots/</url> >> <layout>default</layout> >> </repository> >> >> I added it manually. So it isn't in the SMX4 subversion... >> >> Cheers >> Michael >> >> 2009/11/5 Freeman Fang <freeman.fang@...>: >>> >>> Hi, >>> >>> You need grep http://repository.apache.org/content/groups/snapshots-group >>> >>> they are in features/pom.xml, I just confirmed it. >>> >>> So I still think it's a temporary network access problem for you. >>> >>> Freeman >>> On 2009-11-5, at 上午6:10, Michael Roepke, Filekeys wrote: >>> >>>> Hi Freeman, >>>> >>>> after adding this repo to features/pom.xml SMX4 did build without any >>>> error >>>> >>>> <repository> >>>> <id>repository.apache.org</id> >>>> <name>repository.apache.org</name> >>>> <releases> >>>> <enabled>true</enabled> >>>> <updatePolicy>always</updatePolicy> >>>> <checksumPolicy>warn</checksumPolicy> >>>> </releases> >>>> <snapshots> >>>> <enabled>true</enabled> >>>> <updatePolicy>never</updatePolicy> >>>> <checksumPolicy>fail</checksumPolicy> >>>> </snapshots> >>>> >>>> <url>https://repository.apache.org/content/repositories/snapshots/</url> >>>> <layout>default</layout> >>>> </repository> >>>> >>>> I checked out fresh sources with following commands >>>> >>>> svn co https://svn.apache.org/repos/asf/servicemix/smx4/all smx4 >>>> svn co >>>> >>>> https://svn.apache.org/repos/asf/servicemix/maven-plugins/maven-plugins-pom/trunk >>>> smx4-maven-plugins >>>> svn co https://svn.apache.org/repos/asf/servicemix/components/all >>>> smx4-components >>>> >>>> And after that I did a grep for repository.apache.org but nothing was >>>> found, so I added it to the features pom. Is that the right place? >>>> >>>> Thanks for your help! >>>> Michael >>>> >>>> -- >>>> Filekeys Ltd. >>>> Michael Roepke >>>> Praça da Alegria 18, 4D >>>> 1250-004 Lisboa, Portugal >>>> www.filekeys.com >>>> +351 96 75 93 528 >>>> +49 178 391 38 38 >>> >>> >>> -- >>> Freeman Fang >>> ------------------------ >>> Open Source SOA: http://fusesource.com >>> >>> >> >> >> >> -- >> Filekeys Ltd. >> Michael Roepke >> Praça da Alegria 18, 4D >> 1250-004 Lisboa, Portugal >> www.filekeys.com >> +351 96 75 93 528 >> +49 178 391 38 38 >> >> >> >> Sent from Lisbon, 11, Portugal > > > -- > Freeman Fang > ------------------------ > Open Source SOA: http://fusesource.com > > -- Filekeys Ltd. Michael Roepke Praça da Alegria 18, 4D 1250-004 Lisboa, Portugal www.filekeys.com +351 96 75 93 528 +49 178 391 38 38 Sent from Lisbon, 11, Portugal |
| Free embeddable forum powered by Nabble | Forum Help |