I can't get OFBiz to build, using the latest trunk:
Buildfile: E:\Develop\ofbiz\build.xml clean-all: clean-ivy: BUILD FAILED E:\Develop\ofbiz\build.xml:83: The following error occurred while executing this line: E:\Develop\ofbiz\build.xml:1250: Problem: failed to create task or type antlib:org.apache.ivy.ant:cleancache Cause: The name is undefined. Action: Check the spelling. Action: Check that any custom tasks/types have been declared. Action: Check that any <presetdef>/<macrodef> declarations have taken place. No types or tasks have been defined in this namespace yet This appears to be an antlib declaration. Action: Check that the implementing library exists in one of: -E:\Develop\ofbiz\lib\lib -a directory added on the command line with the -lib argument Total time: 0 seconds -- Adrian Crum Sandglass Software www.sandglass-software.com |
Yes, I know. See my response to the buildbot failure.
Ofbiz makes use of internal ant version 1.9.0. This version may or may not have particular version requirements on the tools being called. External ant may be any random version. So, trying to have shipped jars that match some random external version is very difficult. I removed ant-nodeps, and moved other ant jars around. If you are attempting to use an external ant, then you will have to ensure yourself that it has the correct installed contrib jars. I've ran into this problem myself over the years; I eventually retrained my fingers to always run the included ant. On 06/24/2014 11:45 AM, Adrian Crum wrote: > I can't get OFBiz to build, using the latest trunk: > > Buildfile: E:\Develop\ofbiz\build.xml > > clean-all: > > clean-ivy: > > BUILD FAILED > E:\Develop\ofbiz\build.xml:83: The following error occurred while > executing this line: > E:\Develop\ofbiz\build.xml:1250: Problem: failed to create task or > type antlib:org.apache.ivy.ant:cleancache > Cause: The name is undefined. > Action: Check the spelling. > Action: Check that any custom tasks/types have been declared. > Action: Check that any <presetdef>/<macrodef> declarations have taken > place. > No types or tasks have been defined in this namespace yet > > This appears to be an antlib declaration. > Action: Check that the implementing library exists in one of: > -E:\Develop\ofbiz\lib\lib > -a directory added on the command line with the -lib argument > > > Total time: 0 seconds > > |
I don't understand what you are saying. The command
ant clean-all has always worked before, and now it doesn't work. On my Windows machine, the command runs the ant.bat script. How do we get the script to work? Adrian Crum Sandglass Software www.sandglass-software.com On 6/24/2014 9:50 AM, Adam Heath wrote: > Yes, I know. See my response to the buildbot failure. > > Ofbiz makes use of internal ant version 1.9.0. This version may or may > not have particular version requirements on the tools being called. > > External ant may be any random version. So, trying to have shipped jars > that match some random external version is very difficult. > > I removed ant-nodeps, and moved other ant jars around. If you are > attempting to use an external ant, then you will have to ensure yourself > that it has the correct installed contrib jars. > > I've ran into this problem myself over the years; I eventually retrained > my fingers to always run the included ant. > > On 06/24/2014 11:45 AM, Adrian Crum wrote: >> I can't get OFBiz to build, using the latest trunk: >> >> Buildfile: E:\Develop\ofbiz\build.xml >> >> clean-all: >> >> clean-ivy: >> >> BUILD FAILED >> E:\Develop\ofbiz\build.xml:83: The following error occurred while >> executing this line: >> E:\Develop\ofbiz\build.xml:1250: Problem: failed to create task or >> type antlib:org.apache.ivy.ant:cleancache >> Cause: The name is undefined. >> Action: Check the spelling. >> Action: Check that any custom tasks/types have been declared. >> Action: Check that any <presetdef>/<macrodef> declarations have taken >> place. >> No types or tasks have been defined in this namespace yet >> >> This appears to be an antlib declaration. >> Action: Check that the implementing library exists in one of: >> -E:\Develop\ofbiz\lib\lib >> -a directory added on the command line with the -lib argument >> >> >> Total time: 0 seconds >> >> > |
I'm attempting to get a machine available that can replicate the
problem, however: I can duplicate it on linux, when I run an external, system-installed ant, but the problem goes away if I run the internal version. I did the same type of change to both the shell script and the batch file, so it should work identically. Are you absolutely certain the batch file is being used? Move it out of the way, and then try again. If ant still runs, then you are using a system-installed version. On 06/24/2014 11:54 AM, Adrian Crum wrote: > I don't understand what you are saying. The command > > ant clean-all > > has always worked before, and now it doesn't work. On my Windows > machine, the command runs the ant.bat script. How do we get the script > to work? > > Adrian Crum > Sandglass Software > www.sandglass-software.com > > On 6/24/2014 9:50 AM, Adam Heath wrote: >> Yes, I know. See my response to the buildbot failure. >> >> Ofbiz makes use of internal ant version 1.9.0. This version may or may >> not have particular version requirements on the tools being called. >> >> External ant may be any random version. So, trying to have shipped jars >> that match some random external version is very difficult. >> >> I removed ant-nodeps, and moved other ant jars around. If you are >> attempting to use an external ant, then you will have to ensure yourself >> that it has the correct installed contrib jars. >> >> I've ran into this problem myself over the years; I eventually retrained >> my fingers to always run the included ant. >> >> On 06/24/2014 11:45 AM, Adrian Crum wrote: >>> I can't get OFBiz to build, using the latest trunk: >>> >>> Buildfile: E:\Develop\ofbiz\build.xml >>> >>> clean-all: >>> >>> clean-ivy: >>> >>> BUILD FAILED >>> E:\Develop\ofbiz\build.xml:83: The following error occurred while >>> executing this line: >>> E:\Develop\ofbiz\build.xml:1250: Problem: failed to create task or >>> type antlib:org.apache.ivy.ant:cleancache >>> Cause: The name is undefined. >>> Action: Check the spelling. >>> Action: Check that any custom tasks/types have been declared. >>> Action: Check that any <presetdef>/<macrodef> declarations have taken >>> place. >>> No types or tasks have been defined in this namespace yet >>> >>> This appears to be an antlib declaration. >>> Action: Check that the implementing library exists in one of: >>> -E:\Develop\ofbiz\lib\lib >>> -a directory added on the command line with the -lib argument >>> >>> >>> Total time: 0 seconds >>> >>> >> |
I confirmed that I am using the ant.bat script. Ant is not accessible
from the command line. Adrian Crum Sandglass Software www.sandglass-software.com On 6/24/2014 10:03 AM, Adam Heath wrote: > I'm attempting to get a machine available that can replicate the > problem, however: > > I can duplicate it on linux, when I run an external, system-installed > ant, but the problem goes away if I run the internal version. > > I did the same type of change to both the shell script and the batch > file, so it should work identically. > > Are you absolutely certain the batch file is being used? Move it out of > the way, and then try again. If ant still runs, then you are using a > system-installed version. > > On 06/24/2014 11:54 AM, Adrian Crum wrote: >> I don't understand what you are saying. The command >> >> ant clean-all >> >> has always worked before, and now it doesn't work. On my Windows >> machine, the command runs the ant.bat script. How do we get the script >> to work? >> >> Adrian Crum >> Sandglass Software >> www.sandglass-software.com >> >> On 6/24/2014 9:50 AM, Adam Heath wrote: >>> Yes, I know. See my response to the buildbot failure. >>> >>> Ofbiz makes use of internal ant version 1.9.0. This version may or may >>> not have particular version requirements on the tools being called. >>> >>> External ant may be any random version. So, trying to have shipped jars >>> that match some random external version is very difficult. >>> >>> I removed ant-nodeps, and moved other ant jars around. If you are >>> attempting to use an external ant, then you will have to ensure yourself >>> that it has the correct installed contrib jars. >>> >>> I've ran into this problem myself over the years; I eventually retrained >>> my fingers to always run the included ant. >>> >>> On 06/24/2014 11:45 AM, Adrian Crum wrote: >>>> I can't get OFBiz to build, using the latest trunk: >>>> >>>> Buildfile: E:\Develop\ofbiz\build.xml >>>> >>>> clean-all: >>>> >>>> clean-ivy: >>>> >>>> BUILD FAILED >>>> E:\Develop\ofbiz\build.xml:83: The following error occurred while >>>> executing this line: >>>> E:\Develop\ofbiz\build.xml:1250: Problem: failed to create task or >>>> type antlib:org.apache.ivy.ant:cleancache >>>> Cause: The name is undefined. >>>> Action: Check the spelling. >>>> Action: Check that any custom tasks/types have been declared. >>>> Action: Check that any <presetdef>/<macrodef> declarations have taken >>>> place. >>>> No types or tasks have been defined in this namespace yet >>>> >>>> This appears to be an antlib declaration. >>>> Action: Check that the implementing library exists in one of: >>>> -E:\Develop\ofbiz\lib\lib >>>> -a directory added on the command line with the -lib argument >>>> >>>> >>>> Total time: 0 seconds >>>> >>>> >>> > |
Working towards this; I've got wine working, and had verified the batch
file is running. I'm currently installing java 1.7 in wine as well. On 06/24/2014 12:17 PM, Adrian Crum wrote: > I confirmed that I am using the ant.bat script. Ant is not accessible > from the command line. > > > Adrian Crum > Sandglass Software > www.sandglass-software.com > > On 6/24/2014 10:03 AM, Adam Heath wrote: >> I'm attempting to get a machine available that can replicate the >> problem, however: >> >> I can duplicate it on linux, when I run an external, system-installed >> ant, but the problem goes away if I run the internal version. >> >> I did the same type of change to both the shell script and the batch >> file, so it should work identically. >> >> Are you absolutely certain the batch file is being used? Move it out of >> the way, and then try again. If ant still runs, then you are using a >> system-installed version. >> >> On 06/24/2014 11:54 AM, Adrian Crum wrote: >>> I don't understand what you are saying. The command >>> >>> ant clean-all >>> >>> has always worked before, and now it doesn't work. On my Windows >>> machine, the command runs the ant.bat script. How do we get the script >>> to work? >>> >>> Adrian Crum >>> Sandglass Software >>> www.sandglass-software.com >>> >>> On 6/24/2014 9:50 AM, Adam Heath wrote: >>>> Yes, I know. See my response to the buildbot failure. >>>> >>>> Ofbiz makes use of internal ant version 1.9.0. This version may or >>>> may >>>> not have particular version requirements on the tools being called. >>>> >>>> External ant may be any random version. So, trying to have shipped >>>> jars >>>> that match some random external version is very difficult. >>>> >>>> I removed ant-nodeps, and moved other ant jars around. If you are >>>> attempting to use an external ant, then you will have to ensure >>>> yourself >>>> that it has the correct installed contrib jars. >>>> >>>> I've ran into this problem myself over the years; I eventually >>>> retrained >>>> my fingers to always run the included ant. >>>> >>>> On 06/24/2014 11:45 AM, Adrian Crum wrote: >>>>> I can't get OFBiz to build, using the latest trunk: >>>>> >>>>> Buildfile: E:\Develop\ofbiz\build.xml >>>>> >>>>> clean-all: >>>>> >>>>> clean-ivy: >>>>> >>>>> BUILD FAILED >>>>> E:\Develop\ofbiz\build.xml:83: The following error occurred while >>>>> executing this line: >>>>> E:\Develop\ofbiz\build.xml:1250: Problem: failed to create task or >>>>> type antlib:org.apache.ivy.ant:cleancache >>>>> Cause: The name is undefined. >>>>> Action: Check the spelling. >>>>> Action: Check that any custom tasks/types have been declared. >>>>> Action: Check that any <presetdef>/<macrodef> declarations have taken >>>>> place. >>>>> No types or tasks have been defined in this namespace yet >>>>> >>>>> This appears to be an antlib declaration. >>>>> Action: Check that the implementing library exists in one of: >>>>> -E:\Develop\ofbiz\lib\lib >>>>> -a directory added on the command line with the -lib argument >>>>> >>>>> >>>>> Total time: 0 seconds >>>>> >>>>> >>>> >> |
I fixed it by copying the Ivy jar to the new ant folder.
Adrian Crum Sandglass Software www.sandglass-software.com On 6/24/2014 10:38 AM, Adam Heath wrote: > Working towards this; I've got wine working, and had verified the batch > file is running. I'm currently installing java 1.7 in wine as well. > > On 06/24/2014 12:17 PM, Adrian Crum wrote: >> I confirmed that I am using the ant.bat script. Ant is not accessible >> from the command line. >> >> >> Adrian Crum >> Sandglass Software >> www.sandglass-software.com >> >> On 6/24/2014 10:03 AM, Adam Heath wrote: >>> I'm attempting to get a machine available that can replicate the >>> problem, however: >>> >>> I can duplicate it on linux, when I run an external, system-installed >>> ant, but the problem goes away if I run the internal version. >>> >>> I did the same type of change to both the shell script and the batch >>> file, so it should work identically. >>> >>> Are you absolutely certain the batch file is being used? Move it out of >>> the way, and then try again. If ant still runs, then you are using a >>> system-installed version. >>> >>> On 06/24/2014 11:54 AM, Adrian Crum wrote: >>>> I don't understand what you are saying. The command >>>> >>>> ant clean-all >>>> >>>> has always worked before, and now it doesn't work. On my Windows >>>> machine, the command runs the ant.bat script. How do we get the script >>>> to work? >>>> >>>> Adrian Crum >>>> Sandglass Software >>>> www.sandglass-software.com >>>> >>>> On 6/24/2014 9:50 AM, Adam Heath wrote: >>>>> Yes, I know. See my response to the buildbot failure. >>>>> >>>>> Ofbiz makes use of internal ant version 1.9.0. This version may or >>>>> may >>>>> not have particular version requirements on the tools being called. >>>>> >>>>> External ant may be any random version. So, trying to have shipped >>>>> jars >>>>> that match some random external version is very difficult. >>>>> >>>>> I removed ant-nodeps, and moved other ant jars around. If you are >>>>> attempting to use an external ant, then you will have to ensure >>>>> yourself >>>>> that it has the correct installed contrib jars. >>>>> >>>>> I've ran into this problem myself over the years; I eventually >>>>> retrained >>>>> my fingers to always run the included ant. >>>>> >>>>> On 06/24/2014 11:45 AM, Adrian Crum wrote: >>>>>> I can't get OFBiz to build, using the latest trunk: >>>>>> >>>>>> Buildfile: E:\Develop\ofbiz\build.xml >>>>>> >>>>>> clean-all: >>>>>> >>>>>> clean-ivy: >>>>>> >>>>>> BUILD FAILED >>>>>> E:\Develop\ofbiz\build.xml:83: The following error occurred while >>>>>> executing this line: >>>>>> E:\Develop\ofbiz\build.xml:1250: Problem: failed to create task or >>>>>> type antlib:org.apache.ivy.ant:cleancache >>>>>> Cause: The name is undefined. >>>>>> Action: Check the spelling. >>>>>> Action: Check that any custom tasks/types have been declared. >>>>>> Action: Check that any <presetdef>/<macrodef> declarations have taken >>>>>> place. >>>>>> No types or tasks have been defined in this namespace yet >>>>>> >>>>>> This appears to be an antlib declaration. >>>>>> Action: Check that the implementing library exists in one of: >>>>>> -E:\Develop\ofbiz\lib\lib >>>>>> -a directory added on the command line with the -lib argument >>>>>> >>>>>> >>>>>> Total time: 0 seconds >>>>>> >>>>>> >>>>> >>> > |
That fixed the command line build, but running the build from inside
Eclipse fails. Right-click on build.xml -> Run As -> Ant Build Adrian Crum Sandglass Software www.sandglass-software.com On 6/24/2014 11:01 AM, Adrian Crum wrote: > I fixed it by copying the Ivy jar to the new ant folder. > > Adrian Crum > Sandglass Software > www.sandglass-software.com > > On 6/24/2014 10:38 AM, Adam Heath wrote: >> Working towards this; I've got wine working, and had verified the batch >> file is running. I'm currently installing java 1.7 in wine as well. >> >> On 06/24/2014 12:17 PM, Adrian Crum wrote: >>> I confirmed that I am using the ant.bat script. Ant is not accessible >>> from the command line. >>> >>> >>> Adrian Crum >>> Sandglass Software >>> www.sandglass-software.com >>> >>> On 6/24/2014 10:03 AM, Adam Heath wrote: >>>> I'm attempting to get a machine available that can replicate the >>>> problem, however: >>>> >>>> I can duplicate it on linux, when I run an external, system-installed >>>> ant, but the problem goes away if I run the internal version. >>>> >>>> I did the same type of change to both the shell script and the batch >>>> file, so it should work identically. >>>> >>>> Are you absolutely certain the batch file is being used? Move it >>>> out of >>>> the way, and then try again. If ant still runs, then you are using a >>>> system-installed version. >>>> >>>> On 06/24/2014 11:54 AM, Adrian Crum wrote: >>>>> I don't understand what you are saying. The command >>>>> >>>>> ant clean-all >>>>> >>>>> has always worked before, and now it doesn't work. On my Windows >>>>> machine, the command runs the ant.bat script. How do we get the script >>>>> to work? >>>>> >>>>> Adrian Crum >>>>> Sandglass Software >>>>> www.sandglass-software.com >>>>> >>>>> On 6/24/2014 9:50 AM, Adam Heath wrote: >>>>>> Yes, I know. See my response to the buildbot failure. >>>>>> >>>>>> Ofbiz makes use of internal ant version 1.9.0. This version may or >>>>>> may >>>>>> not have particular version requirements on the tools being called. >>>>>> >>>>>> External ant may be any random version. So, trying to have shipped >>>>>> jars >>>>>> that match some random external version is very difficult. >>>>>> >>>>>> I removed ant-nodeps, and moved other ant jars around. If you are >>>>>> attempting to use an external ant, then you will have to ensure >>>>>> yourself >>>>>> that it has the correct installed contrib jars. >>>>>> >>>>>> I've ran into this problem myself over the years; I eventually >>>>>> retrained >>>>>> my fingers to always run the included ant. >>>>>> >>>>>> On 06/24/2014 11:45 AM, Adrian Crum wrote: >>>>>>> I can't get OFBiz to build, using the latest trunk: >>>>>>> >>>>>>> Buildfile: E:\Develop\ofbiz\build.xml >>>>>>> >>>>>>> clean-all: >>>>>>> >>>>>>> clean-ivy: >>>>>>> >>>>>>> BUILD FAILED >>>>>>> E:\Develop\ofbiz\build.xml:83: The following error occurred while >>>>>>> executing this line: >>>>>>> E:\Develop\ofbiz\build.xml:1250: Problem: failed to create task or >>>>>>> type antlib:org.apache.ivy.ant:cleancache >>>>>>> Cause: The name is undefined. >>>>>>> Action: Check the spelling. >>>>>>> Action: Check that any custom tasks/types have been declared. >>>>>>> Action: Check that any <presetdef>/<macrodef> declarations have >>>>>>> taken >>>>>>> place. >>>>>>> No types or tasks have been defined in this namespace yet >>>>>>> >>>>>>> This appears to be an antlib declaration. >>>>>>> Action: Check that the implementing library exists in one of: >>>>>>> -E:\Develop\ofbiz\lib\lib >>>>>>> -a directory added on the command line with the -lib >>>>>>> argument >>>>>>> >>>>>>> >>>>>>> Total time: 0 seconds >>>>>>> >>>>>>> >>>>>> >>>> >> |
I had just come upon that myself. I had a copy of ivy installed into
$HOME/.ant/lib, which allowed this to work on my machine. :( I don't see any other references to ivy in any java or groovy file, so I'm going to move that jar. And, eclipse will probably be fixed by updating .classpath at the top. We're about to head to lunch, so I'll finish this fix after that. ps: I can compile ofbiz in windows on linux by using wine, this is kinda cool. On 06/24/2014 01:07 PM, Adrian Crum wrote: > That fixed the command line build, but running the build from inside > Eclipse fails. > > Right-click on build.xml -> Run As -> Ant Build > > Adrian Crum > Sandglass Software > www.sandglass-software.com > > On 6/24/2014 11:01 AM, Adrian Crum wrote: >> I fixed it by copying the Ivy jar to the new ant folder. >> >> Adrian Crum >> Sandglass Software >> www.sandglass-software.com >> >> On 6/24/2014 10:38 AM, Adam Heath wrote: >>> Working towards this; I've got wine working, and had verified the batch >>> file is running. I'm currently installing java 1.7 in wine as well. >>> >>> On 06/24/2014 12:17 PM, Adrian Crum wrote: >>>> I confirmed that I am using the ant.bat script. Ant is not accessible >>>> from the command line. >>>> >>>> >>>> Adrian Crum >>>> Sandglass Software >>>> www.sandglass-software.com >>>> >>>> On 6/24/2014 10:03 AM, Adam Heath wrote: >>>>> I'm attempting to get a machine available that can replicate the >>>>> problem, however: >>>>> >>>>> I can duplicate it on linux, when I run an external, system-installed >>>>> ant, but the problem goes away if I run the internal version. >>>>> >>>>> I did the same type of change to both the shell script and the batch >>>>> file, so it should work identically. >>>>> >>>>> Are you absolutely certain the batch file is being used? Move it >>>>> out of >>>>> the way, and then try again. If ant still runs, then you are using a >>>>> system-installed version. >>>>> >>>>> On 06/24/2014 11:54 AM, Adrian Crum wrote: >>>>>> I don't understand what you are saying. The command >>>>>> >>>>>> ant clean-all >>>>>> >>>>>> has always worked before, and now it doesn't work. On my Windows >>>>>> machine, the command runs the ant.bat script. How do we get the >>>>>> script >>>>>> to work? >>>>>> >>>>>> Adrian Crum >>>>>> Sandglass Software >>>>>> www.sandglass-software.com >>>>>> >>>>>> On 6/24/2014 9:50 AM, Adam Heath wrote: >>>>>>> Yes, I know. See my response to the buildbot failure. >>>>>>> >>>>>>> Ofbiz makes use of internal ant version 1.9.0. This version may or >>>>>>> may >>>>>>> not have particular version requirements on the tools being called. >>>>>>> >>>>>>> External ant may be any random version. So, trying to have shipped >>>>>>> jars >>>>>>> that match some random external version is very difficult. >>>>>>> >>>>>>> I removed ant-nodeps, and moved other ant jars around. If you are >>>>>>> attempting to use an external ant, then you will have to ensure >>>>>>> yourself >>>>>>> that it has the correct installed contrib jars. >>>>>>> >>>>>>> I've ran into this problem myself over the years; I eventually >>>>>>> retrained >>>>>>> my fingers to always run the included ant. >>>>>>> >>>>>>> On 06/24/2014 11:45 AM, Adrian Crum wrote: >>>>>>>> I can't get OFBiz to build, using the latest trunk: >>>>>>>> >>>>>>>> Buildfile: E:\Develop\ofbiz\build.xml >>>>>>>> >>>>>>>> clean-all: >>>>>>>> >>>>>>>> clean-ivy: >>>>>>>> >>>>>>>> BUILD FAILED >>>>>>>> E:\Develop\ofbiz\build.xml:83: The following error occurred while >>>>>>>> executing this line: >>>>>>>> E:\Develop\ofbiz\build.xml:1250: Problem: failed to create task or >>>>>>>> type antlib:org.apache.ivy.ant:cleancache >>>>>>>> Cause: The name is undefined. >>>>>>>> Action: Check the spelling. >>>>>>>> Action: Check that any custom tasks/types have been declared. >>>>>>>> Action: Check that any <presetdef>/<macrodef> declarations have >>>>>>>> taken >>>>>>>> place. >>>>>>>> No types or tasks have been defined in this namespace yet >>>>>>>> >>>>>>>> This appears to be an antlib declaration. >>>>>>>> Action: Check that the implementing library exists in one of: >>>>>>>> -E:\Develop\ofbiz\lib\lib >>>>>>>> -a directory added on the command line with the -lib >>>>>>>> argument >>>>>>>> >>>>>>>> >>>>>>>> Total time: 0 seconds >>>>>>>> >>>>>>>> >>>>>>> >>>>> >>> |
Are we still using macros.xml? It seems to be very outdated.
Adrian Crum Sandglass Software www.sandglass-software.com On 6/24/2014 11:14 AM, Adam Heath wrote: > I had just come upon that myself. I had a copy of ivy installed into > $HOME/.ant/lib, which allowed this to work on my machine. :( > > I don't see any other references to ivy in any java or groovy file, so > I'm going to move that jar. > > And, eclipse will probably be fixed by updating .classpath at the top. > > We're about to head to lunch, so I'll finish this fix after that. > > ps: I can compile ofbiz in windows on linux by using wine, this is kinda > cool. > > On 06/24/2014 01:07 PM, Adrian Crum wrote: >> That fixed the command line build, but running the build from inside >> Eclipse fails. >> >> Right-click on build.xml -> Run As -> Ant Build >> >> Adrian Crum >> Sandglass Software >> www.sandglass-software.com >> >> On 6/24/2014 11:01 AM, Adrian Crum wrote: >>> I fixed it by copying the Ivy jar to the new ant folder. >>> >>> Adrian Crum >>> Sandglass Software >>> www.sandglass-software.com >>> >>> On 6/24/2014 10:38 AM, Adam Heath wrote: >>>> Working towards this; I've got wine working, and had verified the batch >>>> file is running. I'm currently installing java 1.7 in wine as well. >>>> >>>> On 06/24/2014 12:17 PM, Adrian Crum wrote: >>>>> I confirmed that I am using the ant.bat script. Ant is not accessible >>>>> from the command line. >>>>> >>>>> >>>>> Adrian Crum >>>>> Sandglass Software >>>>> www.sandglass-software.com >>>>> >>>>> On 6/24/2014 10:03 AM, Adam Heath wrote: >>>>>> I'm attempting to get a machine available that can replicate the >>>>>> problem, however: >>>>>> >>>>>> I can duplicate it on linux, when I run an external, system-installed >>>>>> ant, but the problem goes away if I run the internal version. >>>>>> >>>>>> I did the same type of change to both the shell script and the batch >>>>>> file, so it should work identically. >>>>>> >>>>>> Are you absolutely certain the batch file is being used? Move it >>>>>> out of >>>>>> the way, and then try again. If ant still runs, then you are using a >>>>>> system-installed version. >>>>>> >>>>>> On 06/24/2014 11:54 AM, Adrian Crum wrote: >>>>>>> I don't understand what you are saying. The command >>>>>>> >>>>>>> ant clean-all >>>>>>> >>>>>>> has always worked before, and now it doesn't work. On my Windows >>>>>>> machine, the command runs the ant.bat script. How do we get the >>>>>>> script >>>>>>> to work? >>>>>>> >>>>>>> Adrian Crum >>>>>>> Sandglass Software >>>>>>> www.sandglass-software.com >>>>>>> >>>>>>> On 6/24/2014 9:50 AM, Adam Heath wrote: >>>>>>>> Yes, I know. See my response to the buildbot failure. >>>>>>>> >>>>>>>> Ofbiz makes use of internal ant version 1.9.0. This version may or >>>>>>>> may >>>>>>>> not have particular version requirements on the tools being called. >>>>>>>> >>>>>>>> External ant may be any random version. So, trying to have shipped >>>>>>>> jars >>>>>>>> that match some random external version is very difficult. >>>>>>>> >>>>>>>> I removed ant-nodeps, and moved other ant jars around. If you are >>>>>>>> attempting to use an external ant, then you will have to ensure >>>>>>>> yourself >>>>>>>> that it has the correct installed contrib jars. >>>>>>>> >>>>>>>> I've ran into this problem myself over the years; I eventually >>>>>>>> retrained >>>>>>>> my fingers to always run the included ant. >>>>>>>> >>>>>>>> On 06/24/2014 11:45 AM, Adrian Crum wrote: >>>>>>>>> I can't get OFBiz to build, using the latest trunk: >>>>>>>>> >>>>>>>>> Buildfile: E:\Develop\ofbiz\build.xml >>>>>>>>> >>>>>>>>> clean-all: >>>>>>>>> >>>>>>>>> clean-ivy: >>>>>>>>> >>>>>>>>> BUILD FAILED >>>>>>>>> E:\Develop\ofbiz\build.xml:83: The following error occurred while >>>>>>>>> executing this line: >>>>>>>>> E:\Develop\ofbiz\build.xml:1250: Problem: failed to create task or >>>>>>>>> type antlib:org.apache.ivy.ant:cleancache >>>>>>>>> Cause: The name is undefined. >>>>>>>>> Action: Check the spelling. >>>>>>>>> Action: Check that any custom tasks/types have been declared. >>>>>>>>> Action: Check that any <presetdef>/<macrodef> declarations have >>>>>>>>> taken >>>>>>>>> place. >>>>>>>>> No types or tasks have been defined in this namespace yet >>>>>>>>> >>>>>>>>> This appears to be an antlib declaration. >>>>>>>>> Action: Check that the implementing library exists in one of: >>>>>>>>> -E:\Develop\ofbiz\lib\lib >>>>>>>>> -a directory added on the command line with the -lib >>>>>>>>> argument >>>>>>>>> >>>>>>>>> >>>>>>>>> Total time: 0 seconds >>>>>>>>> >>>>>>>>> >>>>>>>> >>>>>> >>>> > |
Ivy may be a good building tool.But try a demo application on top of OFBiz.
One can check with base/lib... folder structure/web-app folder structure to confirm for java jar loaders. -- A Question for God every morning. What is the main event today? What do you want me to focus on today? God Speed... Thanks & Regards Prabhakar Balakrishna +91-88977-49482 |
In reply to this post by Adam Heath-2
The command line build is fixed now, but I still can't get Eclipse to build:
Buildfile: E:\Develop\ofbiz\build.xml [taskdef] Could not load definitions from resource net/sf/antcontrib/antlib.xml. It could not be found. clean: [ivy:cleancache] :: Ivy 2.2.0 - 20100923230623 :: http://ant.apache.org/ivy/ :: [ivy:cleancache] :: loading settings :: url = jar:file:/E:/Develop/ofbiz/framework/base/lib/ivy-2.2.0.jar!/org/apache/ivy/core/settings/ivysettings.xml BUILD FAILED E:\Develop\ofbiz\build.xml:194: The following error occurred while executing this line: E:\Develop\ofbiz\build.xml:357: Problem: failed to create task or type if Cause: The name is undefined. Action: Check the spelling. Action: Check that any custom tasks/types have been declared. Action: Check that any <presetdef>/<macrodef> declarations have taken place. Total time: 734 milliseconds Adrian Crum Sandglass Software www.sandglass-software.com On 6/24/2014 11:14 AM, Adam Heath wrote: > I had just come upon that myself. I had a copy of ivy installed into > $HOME/.ant/lib, which allowed this to work on my machine. :( > > I don't see any other references to ivy in any java or groovy file, so > I'm going to move that jar. > > And, eclipse will probably be fixed by updating .classpath at the top. > > We're about to head to lunch, so I'll finish this fix after that. > > ps: I can compile ofbiz in windows on linux by using wine, this is kinda > cool. > > On 06/24/2014 01:07 PM, Adrian Crum wrote: >> That fixed the command line build, but running the build from inside >> Eclipse fails. >> >> Right-click on build.xml -> Run As -> Ant Build >> >> Adrian Crum >> Sandglass Software >> www.sandglass-software.com >> >> On 6/24/2014 11:01 AM, Adrian Crum wrote: >>> I fixed it by copying the Ivy jar to the new ant folder. >>> >>> Adrian Crum >>> Sandglass Software >>> www.sandglass-software.com >>> >>> On 6/24/2014 10:38 AM, Adam Heath wrote: >>>> Working towards this; I've got wine working, and had verified the batch >>>> file is running. I'm currently installing java 1.7 in wine as well. >>>> >>>> On 06/24/2014 12:17 PM, Adrian Crum wrote: >>>>> I confirmed that I am using the ant.bat script. Ant is not accessible >>>>> from the command line. >>>>> >>>>> >>>>> Adrian Crum >>>>> Sandglass Software >>>>> www.sandglass-software.com >>>>> >>>>> On 6/24/2014 10:03 AM, Adam Heath wrote: >>>>>> I'm attempting to get a machine available that can replicate the >>>>>> problem, however: >>>>>> >>>>>> I can duplicate it on linux, when I run an external, system-installed >>>>>> ant, but the problem goes away if I run the internal version. >>>>>> >>>>>> I did the same type of change to both the shell script and the batch >>>>>> file, so it should work identically. >>>>>> >>>>>> Are you absolutely certain the batch file is being used? Move it >>>>>> out of >>>>>> the way, and then try again. If ant still runs, then you are using a >>>>>> system-installed version. >>>>>> >>>>>> On 06/24/2014 11:54 AM, Adrian Crum wrote: >>>>>>> I don't understand what you are saying. The command >>>>>>> >>>>>>> ant clean-all >>>>>>> >>>>>>> has always worked before, and now it doesn't work. On my Windows >>>>>>> machine, the command runs the ant.bat script. How do we get the >>>>>>> script >>>>>>> to work? >>>>>>> >>>>>>> Adrian Crum >>>>>>> Sandglass Software >>>>>>> www.sandglass-software.com >>>>>>> >>>>>>> On 6/24/2014 9:50 AM, Adam Heath wrote: >>>>>>>> Yes, I know. See my response to the buildbot failure. >>>>>>>> >>>>>>>> Ofbiz makes use of internal ant version 1.9.0. This version may or >>>>>>>> may >>>>>>>> not have particular version requirements on the tools being called. >>>>>>>> >>>>>>>> External ant may be any random version. So, trying to have shipped >>>>>>>> jars >>>>>>>> that match some random external version is very difficult. >>>>>>>> >>>>>>>> I removed ant-nodeps, and moved other ant jars around. If you are >>>>>>>> attempting to use an external ant, then you will have to ensure >>>>>>>> yourself >>>>>>>> that it has the correct installed contrib jars. >>>>>>>> >>>>>>>> I've ran into this problem myself over the years; I eventually >>>>>>>> retrained >>>>>>>> my fingers to always run the included ant. >>>>>>>> >>>>>>>> On 06/24/2014 11:45 AM, Adrian Crum wrote: >>>>>>>>> I can't get OFBiz to build, using the latest trunk: >>>>>>>>> >>>>>>>>> Buildfile: E:\Develop\ofbiz\build.xml >>>>>>>>> >>>>>>>>> clean-all: >>>>>>>>> >>>>>>>>> clean-ivy: >>>>>>>>> >>>>>>>>> BUILD FAILED >>>>>>>>> E:\Develop\ofbiz\build.xml:83: The following error occurred while >>>>>>>>> executing this line: >>>>>>>>> E:\Develop\ofbiz\build.xml:1250: Problem: failed to create task or >>>>>>>>> type antlib:org.apache.ivy.ant:cleancache >>>>>>>>> Cause: The name is undefined. >>>>>>>>> Action: Check the spelling. >>>>>>>>> Action: Check that any custom tasks/types have been declared. >>>>>>>>> Action: Check that any <presetdef>/<macrodef> declarations have >>>>>>>>> taken >>>>>>>>> place. >>>>>>>>> No types or tasks have been defined in this namespace yet >>>>>>>>> >>>>>>>>> This appears to be an antlib declaration. >>>>>>>>> Action: Check that the implementing library exists in one of: >>>>>>>>> -E:\Develop\ofbiz\lib\lib >>>>>>>>> -a directory added on the command line with the -lib >>>>>>>>> argument >>>>>>>>> >>>>>>>>> >>>>>>>>> Total time: 0 seconds >>>>>>>>> >>>>>>>>> >>>>>>>> >>>>>> >>>> > |
In reply to this post by Adrian Crum-3
You can try running ./ant.bat from OFBiz home folder. This will make
sure you are running internal ant. I am not sure about Windows but on Linux systems, running 'ant clean-all' will run the command from system PATH. I generally use ./ant <target> to use the internal ant command. Raj On Tuesday 24 June 2014 10:24 PM, Adrian Crum wrote: > I don't understand what you are saying. The command > > ant clean-all > > has always worked before, and now it doesn't work. On my Windows > machine, the command runs the ant.bat script. How do we get the script > to work? > > Adrian Crum > Sandglass Software > www.sandglass-software.com > > On 6/24/2014 9:50 AM, Adam Heath wrote: >> Yes, I know. See my response to the buildbot failure. >> >> Ofbiz makes use of internal ant version 1.9.0. This version may or may >> not have particular version requirements on the tools being called. >> >> External ant may be any random version. So, trying to have shipped jars >> that match some random external version is very difficult. >> >> I removed ant-nodeps, and moved other ant jars around. If you are >> attempting to use an external ant, then you will have to ensure yourself >> that it has the correct installed contrib jars. >> >> I've ran into this problem myself over the years; I eventually retrained >> my fingers to always run the included ant. >> >> On 06/24/2014 11:45 AM, Adrian Crum wrote: >>> I can't get OFBiz to build, using the latest trunk: >>> >>> Buildfile: E:\Develop\ofbiz\build.xml >>> >>> clean-all: >>> >>> clean-ivy: >>> >>> BUILD FAILED >>> E:\Develop\ofbiz\build.xml:83: The following error occurred while >>> executing this line: >>> E:\Develop\ofbiz\build.xml:1250: Problem: failed to create task or >>> type antlib:org.apache.ivy.ant:cleancache >>> Cause: The name is undefined. >>> Action: Check the spelling. >>> Action: Check that any custom tasks/types have been declared. >>> Action: Check that any <presetdef>/<macrodef> declarations have taken >>> place. >>> No types or tasks have been defined in this namespace yet >>> >>> This appears to be an antlib declaration. >>> Action: Check that the implementing library exists in one of: >>> -E:\Develop\ofbiz\lib\lib >>> -a directory added on the command line with the -lib argument >>> >>> >>> Total time: 0 seconds >>> >>> >> > |
Administrator
|
In reply to this post by Adrian Crum-3
Le 24/06/2014 20:25, Adrian Crum a écrit : > Are we still using macros.xml? It seems to be very outdated. > Yes we are, just look at svn history Jacques > Adrian Crum > Sandglass Software > www.sandglass-software.com > > On 6/24/2014 11:14 AM, Adam Heath wrote: >> I had just come upon that myself. I had a copy of ivy installed into >> $HOME/.ant/lib, which allowed this to work on my machine. :( >> >> I don't see any other references to ivy in any java or groovy file, so >> I'm going to move that jar. >> >> And, eclipse will probably be fixed by updating .classpath at the top. >> >> We're about to head to lunch, so I'll finish this fix after that. >> >> ps: I can compile ofbiz in windows on linux by using wine, this is kinda >> cool. >> >> On 06/24/2014 01:07 PM, Adrian Crum wrote: >>> That fixed the command line build, but running the build from inside >>> Eclipse fails. >>> >>> Right-click on build.xml -> Run As -> Ant Build >>> >>> Adrian Crum >>> Sandglass Software >>> www.sandglass-software.com >>> >>> On 6/24/2014 11:01 AM, Adrian Crum wrote: >>>> I fixed it by copying the Ivy jar to the new ant folder. >>>> >>>> Adrian Crum >>>> Sandglass Software >>>> www.sandglass-software.com >>>> >>>> On 6/24/2014 10:38 AM, Adam Heath wrote: >>>>> Working towards this; I've got wine working, and had verified the batch >>>>> file is running. I'm currently installing java 1.7 in wine as well. >>>>> >>>>> On 06/24/2014 12:17 PM, Adrian Crum wrote: >>>>>> I confirmed that I am using the ant.bat script. Ant is not accessible >>>>>> from the command line. >>>>>> >>>>>> >>>>>> Adrian Crum >>>>>> Sandglass Software >>>>>> www.sandglass-software.com >>>>>> >>>>>> On 6/24/2014 10:03 AM, Adam Heath wrote: >>>>>>> I'm attempting to get a machine available that can replicate the >>>>>>> problem, however: >>>>>>> >>>>>>> I can duplicate it on linux, when I run an external, system-installed >>>>>>> ant, but the problem goes away if I run the internal version. >>>>>>> >>>>>>> I did the same type of change to both the shell script and the batch >>>>>>> file, so it should work identically. >>>>>>> >>>>>>> Are you absolutely certain the batch file is being used? Move it >>>>>>> out of >>>>>>> the way, and then try again. If ant still runs, then you are using a >>>>>>> system-installed version. >>>>>>> >>>>>>> On 06/24/2014 11:54 AM, Adrian Crum wrote: >>>>>>>> I don't understand what you are saying. The command >>>>>>>> >>>>>>>> ant clean-all >>>>>>>> >>>>>>>> has always worked before, and now it doesn't work. On my Windows >>>>>>>> machine, the command runs the ant.bat script. How do we get the >>>>>>>> script >>>>>>>> to work? >>>>>>>> >>>>>>>> Adrian Crum >>>>>>>> Sandglass Software >>>>>>>> www.sandglass-software.com >>>>>>>> >>>>>>>> On 6/24/2014 9:50 AM, Adam Heath wrote: >>>>>>>>> Yes, I know. See my response to the buildbot failure. >>>>>>>>> >>>>>>>>> Ofbiz makes use of internal ant version 1.9.0. This version may or >>>>>>>>> may >>>>>>>>> not have particular version requirements on the tools being called. >>>>>>>>> >>>>>>>>> External ant may be any random version. So, trying to have shipped >>>>>>>>> jars >>>>>>>>> that match some random external version is very difficult. >>>>>>>>> >>>>>>>>> I removed ant-nodeps, and moved other ant jars around. If you are >>>>>>>>> attempting to use an external ant, then you will have to ensure >>>>>>>>> yourself >>>>>>>>> that it has the correct installed contrib jars. >>>>>>>>> >>>>>>>>> I've ran into this problem myself over the years; I eventually >>>>>>>>> retrained >>>>>>>>> my fingers to always run the included ant. >>>>>>>>> >>>>>>>>> On 06/24/2014 11:45 AM, Adrian Crum wrote: >>>>>>>>>> I can't get OFBiz to build, using the latest trunk: >>>>>>>>>> >>>>>>>>>> Buildfile: E:\Develop\ofbiz\build.xml >>>>>>>>>> >>>>>>>>>> clean-all: >>>>>>>>>> >>>>>>>>>> clean-ivy: >>>>>>>>>> >>>>>>>>>> BUILD FAILED >>>>>>>>>> E:\Develop\ofbiz\build.xml:83: The following error occurred while >>>>>>>>>> executing this line: >>>>>>>>>> E:\Develop\ofbiz\build.xml:1250: Problem: failed to create task or >>>>>>>>>> type antlib:org.apache.ivy.ant:cleancache >>>>>>>>>> Cause: The name is undefined. >>>>>>>>>> Action: Check the spelling. >>>>>>>>>> Action: Check that any custom tasks/types have been declared. >>>>>>>>>> Action: Check that any <presetdef>/<macrodef> declarations have >>>>>>>>>> taken >>>>>>>>>> place. >>>>>>>>>> No types or tasks have been defined in this namespace yet >>>>>>>>>> >>>>>>>>>> This appears to be an antlib declaration. >>>>>>>>>> Action: Check that the implementing library exists in one of: >>>>>>>>>> -E:\Develop\ofbiz\lib\lib >>>>>>>>>> -a directory added on the command line with the -lib >>>>>>>>>> argument >>>>>>>>>> >>>>>>>>>> >>>>>>>>>> Total time: 0 seconds >>>>>>>>>> >>>>>>>>>> >>>>>>>>> >>>>>>> >>>>> >> > -- |
I'll be reverting these changes, sorry about the turmoil. I need to do
more testing. On 06/24/2014 03:20 PM, Jacques Le Roux wrote: > > Le 24/06/2014 20:25, Adrian Crum a écrit : >> Are we still using macros.xml? It seems to be very outdated. >> > > Yes we are, just look at svn history > > Jacques > >> Adrian Crum >> Sandglass Software >> www.sandglass-software.com >> >> On 6/24/2014 11:14 AM, Adam Heath wrote: >>> I had just come upon that myself. I had a copy of ivy installed into >>> $HOME/.ant/lib, which allowed this to work on my machine. :( >>> >>> I don't see any other references to ivy in any java or groovy file, so >>> I'm going to move that jar. >>> >>> And, eclipse will probably be fixed by updating .classpath at the top. >>> >>> We're about to head to lunch, so I'll finish this fix after that. >>> >>> ps: I can compile ofbiz in windows on linux by using wine, this is >>> kinda >>> cool. >>> >>> On 06/24/2014 01:07 PM, Adrian Crum wrote: >>>> That fixed the command line build, but running the build from inside >>>> Eclipse fails. >>>> >>>> Right-click on build.xml -> Run As -> Ant Build >>>> >>>> Adrian Crum >>>> Sandglass Software >>>> www.sandglass-software.com >>>> >>>> On 6/24/2014 11:01 AM, Adrian Crum wrote: >>>>> I fixed it by copying the Ivy jar to the new ant folder. >>>>> >>>>> Adrian Crum >>>>> Sandglass Software >>>>> www.sandglass-software.com >>>>> >>>>> On 6/24/2014 10:38 AM, Adam Heath wrote: >>>>>> Working towards this; I've got wine working, and had verified the >>>>>> batch >>>>>> file is running. I'm currently installing java 1.7 in wine as well. >>>>>> >>>>>> On 06/24/2014 12:17 PM, Adrian Crum wrote: >>>>>>> I confirmed that I am using the ant.bat script. Ant is not >>>>>>> accessible >>>>>>> from the command line. >>>>>>> >>>>>>> >>>>>>> Adrian Crum >>>>>>> Sandglass Software >>>>>>> www.sandglass-software.com >>>>>>> >>>>>>> On 6/24/2014 10:03 AM, Adam Heath wrote: >>>>>>>> I'm attempting to get a machine available that can replicate the >>>>>>>> problem, however: >>>>>>>> >>>>>>>> I can duplicate it on linux, when I run an external, >>>>>>>> system-installed >>>>>>>> ant, but the problem goes away if I run the internal version. >>>>>>>> >>>>>>>> I did the same type of change to both the shell script and the >>>>>>>> batch >>>>>>>> file, so it should work identically. >>>>>>>> >>>>>>>> Are you absolutely certain the batch file is being used? Move it >>>>>>>> out of >>>>>>>> the way, and then try again. If ant still runs, then you are >>>>>>>> using a >>>>>>>> system-installed version. >>>>>>>> >>>>>>>> On 06/24/2014 11:54 AM, Adrian Crum wrote: >>>>>>>>> I don't understand what you are saying. The command >>>>>>>>> >>>>>>>>> ant clean-all >>>>>>>>> >>>>>>>>> has always worked before, and now it doesn't work. On my Windows >>>>>>>>> machine, the command runs the ant.bat script. How do we get the >>>>>>>>> script >>>>>>>>> to work? >>>>>>>>> >>>>>>>>> Adrian Crum >>>>>>>>> Sandglass Software >>>>>>>>> www.sandglass-software.com >>>>>>>>> >>>>>>>>> On 6/24/2014 9:50 AM, Adam Heath wrote: >>>>>>>>>> Yes, I know. See my response to the buildbot failure. >>>>>>>>>> >>>>>>>>>> Ofbiz makes use of internal ant version 1.9.0. This version >>>>>>>>>> may or >>>>>>>>>> may >>>>>>>>>> not have particular version requirements on the tools being >>>>>>>>>> called. >>>>>>>>>> >>>>>>>>>> External ant may be any random version. So, trying to have >>>>>>>>>> shipped >>>>>>>>>> jars >>>>>>>>>> that match some random external version is very difficult. >>>>>>>>>> >>>>>>>>>> I removed ant-nodeps, and moved other ant jars around. If >>>>>>>>>> you are >>>>>>>>>> attempting to use an external ant, then you will have to ensure >>>>>>>>>> yourself >>>>>>>>>> that it has the correct installed contrib jars. >>>>>>>>>> >>>>>>>>>> I've ran into this problem myself over the years; I eventually >>>>>>>>>> retrained >>>>>>>>>> my fingers to always run the included ant. >>>>>>>>>> >>>>>>>>>> On 06/24/2014 11:45 AM, Adrian Crum wrote: >>>>>>>>>>> I can't get OFBiz to build, using the latest trunk: >>>>>>>>>>> >>>>>>>>>>> Buildfile: E:\Develop\ofbiz\build.xml >>>>>>>>>>> >>>>>>>>>>> clean-all: >>>>>>>>>>> >>>>>>>>>>> clean-ivy: >>>>>>>>>>> >>>>>>>>>>> BUILD FAILED >>>>>>>>>>> E:\Develop\ofbiz\build.xml:83: The following error occurred >>>>>>>>>>> while >>>>>>>>>>> executing this line: >>>>>>>>>>> E:\Develop\ofbiz\build.xml:1250: Problem: failed to create >>>>>>>>>>> task or >>>>>>>>>>> type antlib:org.apache.ivy.ant:cleancache >>>>>>>>>>> Cause: The name is undefined. >>>>>>>>>>> Action: Check the spelling. >>>>>>>>>>> Action: Check that any custom tasks/types have been declared. >>>>>>>>>>> Action: Check that any <presetdef>/<macrodef> declarations have >>>>>>>>>>> taken >>>>>>>>>>> place. >>>>>>>>>>> No types or tasks have been defined in this namespace yet >>>>>>>>>>> >>>>>>>>>>> This appears to be an antlib declaration. >>>>>>>>>>> Action: Check that the implementing library exists in one of: >>>>>>>>>>> -E:\Develop\ofbiz\lib\lib >>>>>>>>>>> -a directory added on the command line with the -lib >>>>>>>>>>> argument >>>>>>>>>>> >>>>>>>>>>> >>>>>>>>>>> Total time: 0 seconds >>>>>>>>>>> >>>>>>>>>>> >>>>>>>>>> >>>>>>>> >>>>>> >>> >> > |
Free forum by Nabble | Edit this page |