Re: Missing 11 Build Path Entries

2012-07-25 Thread Alex Kotchnev
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 bobhar...@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 net.d...@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-unsubscr...@tapestry.apache.org
  For additional commands, e-mail: users-h...@tapestry.apache.org
 

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




Re: Missing 11 Build Path Entries

2012-07-25 Thread Thiago H de Paula Figueiredo
On Wed, 25 Jul 2012 10:17:02 -0300, Alex Kotchnev akoch...@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-unsubscr...@tapestry.apache.org
For additional commands, e-mail: users-h...@tapestry.apache.org



Re: Missing 11 Build Path Entries

2012-07-24 Thread netdawg
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-unsubscr...@tapestry.apache.org
For additional commands, e-mail: users-h...@tapestry.apache.org



Re: Missing 11 Build Path Entries

2012-07-24 Thread Thiago H de Paula Figueiredo

On Tue, 24 Jul 2012 16:16:43 -0300, netdawg net.d...@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-unsubscr...@tapestry.apache.org
For additional commands, e-mail: users-h...@tapestry.apache.org



Re: Missing 11 Build Path Entries

2012-07-24 Thread Kristian Marinkovic
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 
thiag...@gmail.com:

 On Tue, 24 Jul 2012 16:16:43 -0300, netdawg net.d...@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.orgusers-unsubscr...@tapestry.apache.org
 For additional commands, e-mail: users-h...@tapestry.apache.org




Re: Missing 11 Build Path Entries

2012-07-24 Thread netdawg
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-unsubscr...@tapestry.apache.org
For additional commands, e-mail: users-h...@tapestry.apache.org



Re: Missing 11 Build Path Entries

2012-07-24 Thread Bob Harner
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 net.d...@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-unsubscr...@tapestry.apache.org
 For additional commands, e-mail: users-h...@tapestry.apache.org


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