framework:tapestry

Tapestry 5

génération
$ mvn archetype:generate -DarchetypeCatalog=http://tapestry.apache.org
  * Liste à puceTapestry 5 Quickstart Project
  * 1: 5.3.6
  * groupId: fabwice
    * artifactId: template
    * version: 1.0-SNAPSHOT
    * package: fr.fabwice.template
Integration dans git

créer un fichier .gitignore à la racine du nouveau projet :

.idea
.settings
*.iml
**/target/*
target/*
*.ipr
*.iws
.DS_Store
*.class
*.log
*.out
*.out.*
<code>

<code bash>
# initialisation du repo
$ git init
# ajout de tous les fichiers
$ git addall
# premier commit
$ git commit -m 'init'
Tester
$  mvn jetty:run -Dfile.encoding=UTF-8 -Xmx2048m -Xms1024m -XX:MaxPermSize=512m -XX:MaxNewSize=512m -Dtapestry.compress-whitespace=false -Dtapestry.production-mode=false -Dnet.sf.ehcache.skipUpdateCheck=true -Dlog4j.debug=true -Dmaven.tomcat.port=8082 -Djetty.port=8082
  • framework/tapestry.txt
  • Dernière modification: 2018/10/13 14:59
  • (modification externe)