Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. Download the zipped project
  2. Download jta jar from here.
    • Note that the Download Manager may save the file to your root drive, and you may need to it may give the file a .ZIP extension. You must rename the file afterwards to jta-1.1-classes.jar.
    • If a later version is available, update the version references in the next step.
  3. Install the jta jar file running:
    Code Block
    $ mvn install:install-file -DgroupId=javax.transaction -DartifactId=jta -Dversion=1.1 -Dpackaging=jar -Dfile=c:\path\to\jar\jta-1.1-classes.jar
    
  4. Bear with me, we are almost there
  5. cd into quickstart and run:
    Code Block
    $ mvn jetty:run
    
  6. Point your browser to http://localhost:8080/quickstart
  7. To create an eclipse project run:
    Code Block
    $ mvn eclipse:eclipse
    
    or (to create web project for WTP):
    Code Block
    mvn eclipse:eclipse -Dwtpversion=1.0
    

...