TAGL/TP

From air
Revision as of 10:28, 6 February 2014 by Donsez (talk | contribs)
Jump to navigation Jump to search

Séance 1

Créer un dépôt Git local (bare)

mkdir tagl
cd tagl
mkdir testgit
cd testgit
git init --bare
cd ..
git clone testgit testgit-work
cd testgit-work
echo hello > readme.rst
git add readme.rst
git commit
git push

Installer dans votre Eclipse le plugin ReST Editor depuis le Marketplace Eclipse


Créer compte individuel sur GitHub https://github.com

Forker le projet TAGL (url) cron4j (2.5.5)

Ajouter un collaborateur au projet forké

Activer de Travis-CI

Commit/Push .travis.yml pour Ant (depuis un gist)




Créer cron4j-mvn (layout + pom.xml)

Modifier .travis.yml pour mvn -DskipTests=true clean install (Commit/Push)

Tests unitaires du i.s.c.CronParser (JUnit 4)

Modifier .travis.yml pour mvn clean install (Commit/Push)

Séance 2