You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@tapestry.apache.org by netdawg <ne...@yahoo.com> on 2012/07/24 21:12:03 UTC

Missing 11 Build Path Entries

I am following the tutorial trying to get going on a new project with 5.3.4
using 

mvn archetype:generate -DarchetypeCatalog=http://tapestry.apache.org

but the following 11 build path entries are missing when loading project
into eclipse even after 

mvn eclipse:clean
mvn eclipse:eclipse -DdownloadSources=true


1. 
M2_REPO/com/google/code/maven-play-plugin/com/yahoo/platform/yui/yuicompressor/2.4.7/yuicompressor-2.4.7.jar

2.  M2_REPO/org/apache/tapestry/plastic/5.3.4/plastic-5.3.4.jar

3.  M2_REPO/org/apache/tapestry/tapestry-core/5.3.4/tapestry-core-5.3.4.jar

4.  M2_REPO/org/apache/tapestry/tapestry-func/5.3.4/tapestry-func-5.3.4.jar

5.  M2_REPO/org/apache/tapestry/tapestry-ioc/5.3.4/tapestry-ioc-5.3.4.jar

6. 
M2_REPO/org/apache/tapestry/tapestry-javadoc/5.3.4/tapestry-javadoc-5.3.4.jar

7.  M2_REPO/org/apache/tapestry/tapestry-json/5.3.4/tapestry-json-5.3.4.jar

8.  M2_REPO/org/apache/tapestry/tapestry-test/5.3.4/tapestry-test-5.3.4.jar

9. 
M2_REPO/org/apache/tapestry/tapestry-yuicompressor/5.3.4/tapestry-yuicompressor-5.3.4.jar

10. 
M2_REPO/org/apache/tapestry/tapestry5-annotations/5.3.4/tapestry5-annotations-5.3.4.jar

11.  M2_REPO/org/testng/testng/5.14.10/testng-5.14.10.jar





--
View this message in context: http://tapestry.1045711.n5.nabble.com/Missing-11-Build-Path-Entries-tp5714760.html
Sent from the Tapestry - User mailing list archive at Nabble.com.

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
For additional commands, e-mail: users-help@tapestry.apache.org


Re: Missing 11 Build Path Entries

Posted by Kristian Marinkovic <kr...@gmail.com>.
Try a mvn clean install in your console. It should download whatever it
needs

Or use an maven plugin for your IDE
Am 24.07.2012 21:38 schrieb "Thiago H de Paula Figueiredo" <
thiagohp@gmail.com>:

> On Tue, 24 Jul 2012 16:16:43 -0300, netdawg <ne...@yahoo.com> wrote:
>
>  Problem/Question:  Is there a quick fix to get these files?  Or is it
>> manually install each?  Jetty will not launch without the plastic jar and
>> I did not even find plastic 5.3.4, just 5.3.3.  The maven dialogue allows
>> only 5.3.4
>>
>
> If you're using Eclipse, use the Maven integration plugin instead of
> command line. File -> New Project -> Project ... -> Maven Project -> Next
> -> type 'tapestry5' in the search box -> chosse artifact
> org.apache.tapestry quickstart -> change the version in the generated
> pom.xml to 5.3.4 or any other specific version you want.
>
> --
> Thiago H. de Paula Figueiredo
>
> ------------------------------**------------------------------**---------
> To unsubscribe, e-mail: users-unsubscribe@tapestry.**apache.org<us...@tapestry.apache.org>
> For additional commands, e-mail: users-help@tapestry.apache.org
>
>

Re: Missing 11 Build Path Entries

Posted by Thiago H de Paula Figueiredo <th...@gmail.com>.
On Wed, 25 Jul 2012 10:17:02 -0300, Alex Kotchnev <ak...@gmail.com>  
wrote:

> I think that the command line version of the tutorial is still very
> valuable as it provides a process that "always works" w/o having to  
> depend on IDE features.

m2e is included in Java-targeted Eclipse distributions for some time  
already. And most people nowadays aren't used to command line at all,  
unfortunately (I do think it is best for many kinds of tasks). The command  
line version of the tutorial expects Maven and Eclipse to be installed,  
while a version of it based on m2e would need just Eclipse. And I think we  
should have an Eclipse-based tutorial because that's the most popular IDE  
today, maybe by far (I don't have any numbers about it).

-- 
Thiago H. de Paula Figueiredo

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
For additional commands, e-mail: users-help@tapestry.apache.org


Re: Missing 11 Build Path Entries

Posted by Alex Kotchnev <ak...@gmail.com>.
I think that the command line version of the tutorial is still very
valuable as it provides a process that "always works" w/o having to depend
on IDE features. So, I'd say, maybe have something in the tutorial on
Eclipse or NetBeans instructions but the baseline, in my opinion, should
remain on the command line.

Cheers - Alex K

On Tue, Jul 24, 2012 at 9:46 PM, Bob Harner <bo...@gmail.com> wrote:

> Yes, in the last year or so the Eclipse support for Maven (the newer
> m2e) has improved, and now I think it's at the point that the Tapestry
> Tutorial could be simplified by using m2e within Eclipse and skipping
> the command-line-Maven stuff entirely. That would make an easier start
> for the many junior developers using Eclipse (although IDEA users
> would groan).
>
> On Tue, Jul 24, 2012 at 7:16 PM, netdawg <ne...@yahoo.com> wrote:
> > Thanks!!
> >
> > Yes, creating a Maven project within eclipse seems to be the way to go.
> > Although there was a minor hitch.  Searching for tapestry5 did not bring
> up
> > org.apache.tapestry.  So, have to manually install (add) it.
> >
> > No, as mentioned, command line quick start is not pulling in all the
> > required libraries.
> >
> > All steps are below:
> >
> > 1.  In Eclipse, under Help, choose Install New Software
> > 2.  In worth with enter URL:
> > http://download.eclipse.org/technology/m2e/releases
> > 3.  Follow dialogs to install m2ecplise.
> > 4.  File --> New --> Projects --> Maven
> > 5.  Add Archetype.
> >      GroupId: org,apache.tapestry
> >      ArtifactId: quickstart
> >      Archetype Version: 5.3.4
> >      Repository URL: (Leave Blank)
> > 6.  Follow dialogs to create your project
> > 7.  Run as Jetty
> > 8.  test it at localhost:8080/yourContext
> >
> >
> >
> > --
> > View this message in context:
> http://tapestry.1045711.n5.nabble.com/Missing-11-Build-Path-Entries-tp5714760p5714767.html
> > Sent from the Tapestry - User mailing list archive at Nabble.com.
> >
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
> > For additional commands, e-mail: users-help@tapestry.apache.org
> >
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
> For additional commands, e-mail: users-help@tapestry.apache.org
>
>

Re: Missing 11 Build Path Entries

Posted by Bob Harner <bo...@gmail.com>.
Yes, in the last year or so the Eclipse support for Maven (the newer
m2e) has improved, and now I think it's at the point that the Tapestry
Tutorial could be simplified by using m2e within Eclipse and skipping
the command-line-Maven stuff entirely. That would make an easier start
for the many junior developers using Eclipse (although IDEA users
would groan).

On Tue, Jul 24, 2012 at 7:16 PM, netdawg <ne...@yahoo.com> wrote:
> Thanks!!
>
> Yes, creating a Maven project within eclipse seems to be the way to go.
> Although there was a minor hitch.  Searching for tapestry5 did not bring up
> org.apache.tapestry.  So, have to manually install (add) it.
>
> No, as mentioned, command line quick start is not pulling in all the
> required libraries.
>
> All steps are below:
>
> 1.  In Eclipse, under Help, choose Install New Software
> 2.  In worth with enter URL:
> http://download.eclipse.org/technology/m2e/releases
> 3.  Follow dialogs to install m2ecplise.
> 4.  File --> New --> Projects --> Maven
> 5.  Add Archetype.
>      GroupId: org,apache.tapestry
>      ArtifactId: quickstart
>      Archetype Version: 5.3.4
>      Repository URL: (Leave Blank)
> 6.  Follow dialogs to create your project
> 7.  Run as Jetty
> 8.  test it at localhost:8080/yourContext
>
>
>
> --
> View this message in context: http://tapestry.1045711.n5.nabble.com/Missing-11-Build-Path-Entries-tp5714760p5714767.html
> Sent from the Tapestry - User mailing list archive at Nabble.com.
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
> For additional commands, e-mail: users-help@tapestry.apache.org
>

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
For additional commands, e-mail: users-help@tapestry.apache.org


Re: Missing 11 Build Path Entries

Posted by netdawg <ne...@yahoo.com>.
Thanks!!  

Yes, creating a Maven project within eclipse seems to be the way to go. 
Although there was a minor hitch.  Searching for tapestry5 did not bring up
org.apache.tapestry.  So, have to manually install (add) it.  

No, as mentioned, command line quick start is not pulling in all the
required libraries.  

All steps are below: 

1.  In Eclipse, under Help, choose Install New Software
2.  In worth with enter URL:
http://download.eclipse.org/technology/m2e/releases
3.  Follow dialogs to install m2ecplise.
4.  File --> New --> Projects --> Maven 
5.  Add Archetype.  
     GroupId: org,apache.tapestry
     ArtifactId: quickstart
     Archetype Version: 5.3.4
     Repository URL: (Leave Blank)
6.  Follow dialogs to create your project
7.  Run as Jetty 
8.  test it at localhost:8080/yourContext



--
View this message in context: http://tapestry.1045711.n5.nabble.com/Missing-11-Build-Path-Entries-tp5714760p5714767.html
Sent from the Tapestry - User mailing list archive at Nabble.com.

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
For additional commands, e-mail: users-help@tapestry.apache.org


Re: Missing 11 Build Path Entries

Posted by Thiago H de Paula Figueiredo <th...@gmail.com>.
On Tue, 24 Jul 2012 16:16:43 -0300, netdawg <ne...@yahoo.com> wrote:

> Problem/Question:  Is there a quick fix to get these files?  Or is it
> manually install each?  Jetty will not launch without the plastic jar  
> and I did not even find plastic 5.3.4, just 5.3.3.  The maven dialogue  
> allows only 5.3.4

If you're using Eclipse, use the Maven integration plugin instead of  
command line. File -> New Project -> Project ... -> Maven Project -> Next  
-> type 'tapestry5' in the search box -> chosse artifact  
org.apache.tapestry quickstart -> change the version in the generated  
pom.xml to 5.3.4 or any other specific version you want.

-- 
Thiago H. de Paula Figueiredo

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
For additional commands, e-mail: users-help@tapestry.apache.org


Re: Missing 11 Build Path Entries

Posted by netdawg <ne...@yahoo.com>.
Problem/Question:  Is there a quick fix to get these files?  Or is it
manually install each?  Jetty will not launch without the plastic jar and I
did not even find plastic 5.3.4, just 5.3.3.  The maven dialogue allows only
5.3.4



--
View this message in context: http://tapestry.1045711.n5.nabble.com/Missing-11-Build-Path-Entries-tp5714760p5714762.html
Sent from the Tapestry - User mailing list archive at Nabble.com.

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
For additional commands, e-mail: users-help@tapestry.apache.org