Nuiton-utils-commits
Threads by month
- ----- 2026 -----
- June
- May
- April
- March
- February
- January
- ----- 2025 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2024 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2023 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2022 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2021 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2020 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2019 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2018 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2017 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2016 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2015 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2014 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2013 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2012 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2011 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2010 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2009 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2008 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2007 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2006 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2005 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2004 -----
- December
- November
- October
- September
- August
February 2009
- 2 participants
- 86 discussions
[Lutinutil-commits] r1401 - lutinutil/trunk/src/test/java/org/codelutin/util
by chatellier@users.labs.libre-entreprise.org 26 Feb '09
by chatellier@users.labs.libre-entreprise.org 26 Feb '09
26 Feb '09
Author: chatellier
Date: 2009-02-26 17:01:02 +0000 (Thu, 26 Feb 2009)
New Revision: 1401
Modified:
lutinutil/trunk/src/test/java/org/codelutin/util/ResourceTest.java
Log:
Fix test
Modified: lutinutil/trunk/src/test/java/org/codelutin/util/ResourceTest.java
===================================================================
--- lutinutil/trunk/src/test/java/org/codelutin/util/ResourceTest.java 2009-02-23 16:47:47 UTC (rev 1400)
+++ lutinutil/trunk/src/test/java/org/codelutin/util/ResourceTest.java 2009-02-26 17:01:02 UTC (rev 1401)
@@ -60,7 +60,7 @@
public void testGetURL()throws Exception {
URL url;
- url = Resource.getURL("README");
+ url = Resource.getURL("README.txt");
Assert.assertNotNull(url);
url = Resource.getURL("bin/java");
1
0
[Lutinutil-commits] r1400 - in maven-i18n-plugin/trunk: . src/main/java/org/codelutin/i18n/plugin src/main/java/org/codelutin/i18n/plugin/parser
by tchemit@users.labs.libre-entreprise.org 23 Feb '09
by tchemit@users.labs.libre-entreprise.org 23 Feb '09
23 Feb '09
Author: tchemit
Date: 2009-02-23 16:47:47 +0000 (Mon, 23 Feb 2009)
New Revision: 1400
Modified:
maven-i18n-plugin/trunk/changelog.txt
maven-i18n-plugin/trunk/src/main/java/org/codelutin/i18n/plugin/AbstractI18nPlugin.java
maven-i18n-plugin/trunk/src/main/java/org/codelutin/i18n/plugin/Generate.java
maven-i18n-plugin/trunk/src/main/java/org/codelutin/i18n/plugin/Getter.java
maven-i18n-plugin/trunk/src/main/java/org/codelutin/i18n/plugin/parser/AbstractI18nParser.java
Log:
will skip get and gen goal if no getters were registred while parsing goals
Modified: maven-i18n-plugin/trunk/changelog.txt
===================================================================
--- maven-i18n-plugin/trunk/changelog.txt 2009-02-23 13:08:50 UTC (rev 1399)
+++ maven-i18n-plugin/trunk/changelog.txt 2009-02-23 16:47:47 UTC (rev 1400)
@@ -1,3 +1,5 @@
+0.10 ??? 2009????
+ * 20090223 [chemit] will skip get and gen goal if no getters were registred while parsing goals
0.9 chemit 20090218
* 20090217 [chemit] use project.build.sourceEncoding instead of maven.compile.encoding as default encoding
* 20090214 [chemit] add safeMode, showTouchedFiles properties in parser mojo (none safeMode will improve performance)
Modified: maven-i18n-plugin/trunk/src/main/java/org/codelutin/i18n/plugin/AbstractI18nPlugin.java
===================================================================
--- maven-i18n-plugin/trunk/src/main/java/org/codelutin/i18n/plugin/AbstractI18nPlugin.java 2009-02-23 13:08:50 UTC (rev 1399)
+++ maven-i18n-plugin/trunk/src/main/java/org/codelutin/i18n/plugin/AbstractI18nPlugin.java 2009-02-23 16:47:47 UTC (rev 1400)
@@ -35,6 +35,11 @@
public abstract class AbstractI18nPlugin extends AbstractMojo {
/**
+ * Le nombre de getters détectés pendant le cycle de vie du build.
+ */
+ private static int NB_GETTER_FILES = 0;
+
+ /**
* Répertoire de stockage des fichiers i18n pour la recuperation des fichiers
* de traduction entre librairie
*/
@@ -43,7 +48,6 @@
/** les bundles par defaut utilisés, si aucun bundle n'est renseigné. */
protected static final String[] DEFAULT_BUNDLES = new String[]{"fr_FR", "en_GB"};
-
/**
* Nom du projet.
*
@@ -124,6 +128,9 @@
/**
* ne conserve que les clef scannees (et donc traite tous les fichiers)
*
+ * <p/>
+ * Note : par default, on ne l'active car rescanne tous les fichiers.
+ *s
* @parameter expression="${i18n.strictMode}" default-value="false"
*/
protected boolean strictMode;
@@ -131,6 +138,8 @@
/** Liste des évènements */
protected List<ParserEvent> events = new ArrayList<ParserEvent>();
+ /**logger verbeux */
+ protected I18nLogger verboseLog;
/**
* Ajoute un évènement
@@ -150,22 +159,17 @@
this.events.remove(parserEvent);
}
- @Override
- public I18nLogger getLog() {
- return (I18nLogger) super.getLog();
- }
-
public void init() {
- // set logger
- setLog(new I18nLogger(this));
+ verboseLog = new I18nLogger(this);
+
if (verbose) {
- getLog().infoAction("config", "verbose mode is on");
+ getLog().info("config - verbose mode is on");
}
// set default bundle in none specified
if (bundles == null || bundles.length == 0 || (bundles.length == 1 && (bundles[0] == null || bundles[0].trim().isEmpty()))) {
if (verbose) {
- getLog().infoAction("config", "use default bundles " + Arrays.toString(DEFAULT_BUNDLES));
+ getLog().info("config - use default bundles " + Arrays.toString(DEFAULT_BUNDLES));
}
bundles = DEFAULT_BUNDLES;
}
@@ -174,4 +178,29 @@
public String getArtifactId() {
return artifactId;
}
+
+ /**
+ *
+ * @return <code>true</code> si des getters ont etes enregistres pendant
+ * le cycle de vie, <code>false</code> sinon.
+ */
+ protected boolean needGeneration(){
+ boolean needGeneration = NB_GETTER_FILES > 0;
+ return needGeneration;
+ }
+
+ /**
+ * Prend en compte qu'un getter a été détecté.
+ *
+ * Cela veut dire qu'un goal de parser a détecté des clefs. Il
+ * faudra donc activer les goal get et gen.
+ */
+ protected void addGetter() {
+ NB_GETTER_FILES++;
+ }
+
+ protected I18nLogger getVerboseLog() {
+ return verboseLog;
+ }
+
}
Modified: maven-i18n-plugin/trunk/src/main/java/org/codelutin/i18n/plugin/Generate.java
===================================================================
--- maven-i18n-plugin/trunk/src/main/java/org/codelutin/i18n/plugin/Generate.java 2009-02-23 13:08:50 UTC (rev 1399)
+++ maven-i18n-plugin/trunk/src/main/java/org/codelutin/i18n/plugin/Generate.java 2009-02-23 16:47:47 UTC (rev 1400)
@@ -41,10 +41,16 @@
* (non-Javadoc)
* @see org.apache.maven.plugin.AbstractMojo#execute()
*/
+ @Override
public void execute() throws MojoExecutionException, MojoFailureException {
init();
-
+
+ if (!needGeneration()) {
+ getLog().info("Nothing to generate - all files are up to date.");
+ return;
+ }
+
for (String bundle : bundles) {
try {
// Merge
@@ -89,14 +95,14 @@
FileUtil.copy(bundleSrc, PluginHelper.getI18nFileBackup(src, artifactId, bundle));
}
- getLog().infoAction("merge", bundleSrc.getAbsolutePath());
+ getLog().info("merge bundle " + bundleSrc.getAbsolutePath());
}
if (genSrc) {
// Copie des fichiers dans les sources
FileUtil.copy(bundleOut, bundleSrc);
if (verbose) {
- getLog().infoAction("copy", bundleSrc.getAbsolutePath());
+ getVerboseLog().infoAction("copy", bundleSrc.getAbsolutePath());
}
}
Modified: maven-i18n-plugin/trunk/src/main/java/org/codelutin/i18n/plugin/Getter.java
===================================================================
--- maven-i18n-plugin/trunk/src/main/java/org/codelutin/i18n/plugin/Getter.java 2009-02-23 13:08:50 UTC (rev 1399)
+++ maven-i18n-plugin/trunk/src/main/java/org/codelutin/i18n/plugin/Getter.java 2009-02-23 16:47:47 UTC (rev 1400)
@@ -41,10 +41,18 @@
* (non-Javadoc)
* @see org.apache.maven.plugin.AbstractMojo#execute()
*/
+ @Override
public void execute() throws MojoExecutionException, MojoFailureException {
init();
+ if (!needGeneration()) {
+ if (verbose) {
+ getLog().info("Nothing to generate - all files are up to date.");
+ }
+ return;
+ }
+
try {
File bundleGetters = new File(out.getAbsolutePath() + File.separatorChar + artifactId + ".properties");
bundleGetters.createNewFile();
@@ -62,7 +70,7 @@
if (genSrc) {
bundleGetter.delete();
}
- getLog().infoAction("create", bundleGetter.getAbsolutePath());
+ getLog().info("create bundle " + bundleGetter.getAbsolutePath());
}
// Création des bundles
@@ -70,7 +78,7 @@
File bundleOut = PluginHelper.getI18nFile(out, artifactId, bundle, false);
FileUtil.copy(bundleGetters, bundleOut);
if (verbose) {
- getLog().infoAction("generate", bundleOut.getAbsolutePath());
+ getVerboseLog().infoAction("generate", bundleOut.getAbsolutePath());
}
}
@@ -86,8 +94,7 @@
*
* @param in le fichier entrant
* @param out le fichier sortant
- * @throws FileNotFoundException si fichier non trouvé
- * @throws IOException si problème pendant la sauvegarde
+ * @throws IOException si problème pendant la sauvegarde ou fichier non trouvé.
*/
protected void concactProperties(File in, File out) throws IOException {
I18nProperties propertiesIn = new I18nProperties(encoding).load(in);
Modified: maven-i18n-plugin/trunk/src/main/java/org/codelutin/i18n/plugin/parser/AbstractI18nParser.java
===================================================================
--- maven-i18n-plugin/trunk/src/main/java/org/codelutin/i18n/plugin/parser/AbstractI18nParser.java 2009-02-23 13:08:50 UTC (rev 1399)
+++ maven-i18n-plugin/trunk/src/main/java/org/codelutin/i18n/plugin/parser/AbstractI18nParser.java 2009-02-23 16:47:47 UTC (rev 1400)
@@ -20,10 +20,10 @@
import org.apache.maven.plugin.MojoExecutionException;
import org.apache.maven.plugin.MojoFailureException;
import org.codelutin.i18n.plugin.AbstractI18nPlugin;
+import org.codelutin.i18n.plugin.I18nLogger;
import org.codelutin.i18n.plugin.PluginHelper;
import org.codelutin.i18n.plugin.PluginHelper.I18nProperties;
import org.codelutin.i18n.plugin.SourceEntry;
-import org.codelutin.i18n.plugin.I18nLogger;
import org.codelutin.i18n.plugin.parser.event.KeysModifier;
import org.codelutin.util.FileUpdater;
import org.codelutin.util.FileUtil;
@@ -127,6 +127,7 @@
* (non-Javadoc)
* @see org.apache.maven.plugin.AbstractMojo#execute()
*/
+ @Override
public void execute() throws MojoExecutionException, MojoFailureException {
init();
@@ -136,10 +137,10 @@
}
if (safeMode) {
- getLog().infoAction("config","safeMode is on (could be slower).");
+ getLog().info("config - safeMode is on (could be slower).");
}
if (strictMode) {
- getLog().infoAction("config","strictMode is on (all files will be parsed).");
+ getLog().info("config - strictMode is on (all files will be parsed).");
}
try {
@@ -164,9 +165,10 @@
int i = treadedFiles.size();
if (fileTreated == 0) {
- getLog().info(getLog().getLogEntry("parsing is done. [no files treated]", 0, 0, t0));
+ getLog().info("Nothing to generate - all files are up to date.");
} else {
- getLog().info(getLog().getLogEntry("parsing is done. [treated file(s) : " + i + '/' + fileTreated + "]", fileTreated, 0, t0));
+ getLog().info(getVerboseLog().getLogEntry("parsing is done. [treated file(s) : " + i + '/' + fileTreated + "]", fileTreated, 0, t0));
+ addGetter();
}
} catch (Exception e) {
@@ -181,20 +183,22 @@
*
* @throws IOException if any io pb
*/
+ @Override
public void parse() throws IOException {
if (treateDefaultEntry) {
addDefaultEntry();
}
long t00 = System.nanoTime();
for (MySourceEntry entry : this.entries) {
+ I18nLogger vLog = getVerboseLog();
- getLog().setEntry(entry);
+ vLog.setEntry(entry);
boolean skip = entry.init(this);
if (skip) {
if (verbose) {
- getLog().infoEntry("skip", entry.getSkipMessage());
+ getLog().info("skip - " + entry.getSkipMessage());
}
continue;
}
@@ -202,7 +206,7 @@
long t000 = System.nanoTime();
int nbFiles = entry.getFiles().length;
if (verbose) {
- getLog().infoEntry("start", getLog().getLogEntry("[incoming file(s) : " + entry.getFoudFiles() + "]", 0, 0, 0));
+ vLog.infoEntry("start", vLog.getLogEntry("[incoming file(s) : " + entry.getFoudFiles() + "]", 0, 0, 0));
}
// launch parser for found files
@@ -211,13 +215,13 @@
if (verbose) {
// log skipped files
for (String skipFile : entry.getSkipFiles()) {
- getLog().setFile( new File(entry.getBasedir(), skipFile));
- getLog().infoFile("skip", null);
+ vLog.setFile( new File(entry.getBasedir(), skipFile));
+ vLog.infoFile("skip", null);
}
}
fileTreated += nbFiles;
if (verbose) {
- getLog().infoEntry("end", getLog().getLogEntry("[treated file(s) : " + nbFiles + "]", nbFiles, t000, t00));
+ vLog.infoEntry("end", vLog.getLogEntry("[treated file(s) : " + nbFiles + "]", nbFiles, t000, t00));
}
t00 = System.nanoTime();
}
@@ -259,12 +263,13 @@
for (ParserEvent event : events) {
event.eventChangeFile(file);
}
- getLog().setFile(file);
+ I18nLogger vLog = getVerboseLog();
+ vLog.setFile(file);
touchFile = false;
int size = result.size();
if (verbose) {
- getLog().infoFile("parse", null);
+ vLog.infoFile("parse", null);
}
parseFile(file);
@@ -279,11 +284,11 @@
}
if (touchFile) {
if (showTouchedFiles) {
- getLog().infoFile("touch", null);
+ vLog.infoFile("touch", null);
}
treadedFiles.add(file);
if (getLog().isDebugEnabled()) {
- getLog().debug(getLog().getLogEntry(fileName, i, t000, t00));
+ vLog.debug(vLog.getLogEntry(fileName, i, t000, t00));
}
}
for (ParserEvent event : events) {
1
0
23 Feb '09
Author: tchemit
Date: 2009-02-23 13:08:50 +0000 (Mon, 23 Feb 2009)
New Revision: 1399
Modified:
commandline/trunk/
commandline/trunk/changelog.txt
commandline/trunk/pom.xml
Log:
- use jaxx 1.2
Property changes on: commandline/trunk
___________________________________________________________________
Name: svn:ignore
- *.iws
*.ipr
*.iml
*.log
+ *.iws
*.ipr
*.iml
*.log
target
Modified: commandline/trunk/changelog.txt
===================================================================
--- commandline/trunk/changelog.txt 2009-02-23 08:48:33 UTC (rev 1398)
+++ commandline/trunk/changelog.txt 2009-02-23 13:08:50 UTC (rev 1399)
@@ -1,3 +1,5 @@
+1.1 chemit 200901??
+ * 20090223 [chemit] - use jaxx-1.2
1.0 chemit 200901??
* 20090121 [chemit] - refactor pom for sibling module dependencies
- use Jaxx 1.1-SNAPSHOT (no use anylonger uimodel directory, but src/main/java instead)
Modified: commandline/trunk/pom.xml
===================================================================
--- commandline/trunk/pom.xml 2009-02-23 08:48:33 UTC (rev 1398)
+++ commandline/trunk/pom.xml 2009-02-23 13:08:50 UTC (rev 1399)
@@ -57,11 +57,11 @@
</dependency>
<!-- jaxx library -->
- <dependency>
+ <!--dependency>
<groupId>org.codelutin.jaxx</groupId>
<artifactId>jaxx-util</artifactId>
<version>${jaxx.version}</version>
- </dependency>
+ </dependency-->
<dependency>
<groupId>org.codelutin.jaxx</groupId>
@@ -110,7 +110,7 @@
<labs.project>lutinutil</labs.project>
<!-- libs version -->
- <jaxx.version>1.1</jaxx.version>
+ <jaxx.version>1.2-SNAPSHOT</jaxx.version>
<i18n.version>0.9</i18n.version>
<lutinwidget.version>0.13</lutinwidget.version>
<lutinutil.version>1.0.3</lutinutil.version>
1
0
[Lutinutil-commits] r1398 - lutinpluginutil/trunk lutinpluginutil/trunk/src/site lutinutil/trunk/src/main/assembly lutinutil/trunk/src/site lutinutilextra/trunk/src/site maven-i18n-plugin/trunk maven-i18n-plugin/trunk/src/site
by chatellier@users.labs.libre-entreprise.org 23 Feb '09
by chatellier@users.labs.libre-entreprise.org 23 Feb '09
23 Feb '09
Author: chatellier
Date: 2009-02-23 08:48:33 +0000 (Mon, 23 Feb 2009)
New Revision: 1398
Modified:
lutinpluginutil/trunk/pom.xml
lutinpluginutil/trunk/src/site/site.xml
lutinutil/trunk/src/main/assembly/deps.xml
lutinutil/trunk/src/main/assembly/full.xml
lutinutil/trunk/src/site/site.xml
lutinutilextra/trunk/src/site/site.xml
maven-i18n-plugin/trunk/pom.xml
maven-i18n-plugin/trunk/src/site/site.xml
Log:
Update some version, and add some assembly.
Modified: lutinpluginutil/trunk/pom.xml
===================================================================
--- lutinpluginutil/trunk/pom.xml 2009-02-20 19:56:12 UTC (rev 1397)
+++ lutinpluginutil/trunk/pom.xml 2009-02-23 08:48:33 UTC (rev 1398)
@@ -59,7 +59,7 @@
<!-- nom du projet sur le labs -->
<labs.project>lutinutil</labs.project>
- <maven.version>2.0.9</maven.version>
+ <maven.version>2.0.10</maven.version>
</properties>
<build>
@@ -70,7 +70,7 @@
<plugin>
<groupId>org.codelutin</groupId>
<artifactId>maven-jrst-plugin</artifactId>
- <version>0.8.3</version>
+ <version>0.8.4</version>
<configuration>
<defaultLocale>fr</defaultLocale>
</configuration>
@@ -128,7 +128,7 @@
<plugin>
<groupId>org.codelutin</groupId>
<artifactId>maven-license-switcher-plugin</artifactId>
- <version>0.5</version>
+ <version>0.6</version>
<executions>
<execution>
<id>attach-licenses</id>
Modified: lutinpluginutil/trunk/src/site/site.xml
===================================================================
--- lutinpluginutil/trunk/src/site/site.xml 2009-02-20 19:56:12 UTC (rev 1397)
+++ lutinpluginutil/trunk/src/site/site.xml 2009-02-23 08:48:33 UTC (rev 1398)
@@ -4,7 +4,7 @@
<skin>
<groupId>org.codelutin</groupId>
<artifactId>maven-lutin-skin</artifactId>
- <version>0.2.1</version>
+ <version>0.2.3</version>
</skin>
<bannerLeft>
Modified: lutinutil/trunk/src/main/assembly/deps.xml
===================================================================
--- lutinutil/trunk/src/main/assembly/deps.xml 2009-02-20 19:56:12 UTC (rev 1397)
+++ lutinutil/trunk/src/main/assembly/deps.xml 2009-02-23 08:48:33 UTC (rev 1398)
@@ -18,9 +18,9 @@
<file>
<source>target/${artifact.artifactId}-${artifact.version}.jar</source>
</file>
- <file>
+ <!-- <file>
<source>target/classes/THIRD-PARTY.txt</source>
- </file>
+ </file> -->
</files>
<fileSets>
<fileSet>
Modified: lutinutil/trunk/src/main/assembly/full.xml
===================================================================
--- lutinutil/trunk/src/main/assembly/full.xml 2009-02-20 19:56:12 UTC (rev 1397)
+++ lutinutil/trunk/src/main/assembly/full.xml 2009-02-23 08:48:33 UTC (rev 1398)
@@ -17,9 +17,9 @@
<file>
<source>target/${artifact.artifactId}-${artifact.version}.jar</source>
</file>
- <file>
+ <!-- <file>
<source>target/classes/THIRD-PARTY.txt</source>
- </file>
+ </file> -->
</files>
<fileSets>
<fileSet>
Modified: lutinutil/trunk/src/site/site.xml
===================================================================
--- lutinutil/trunk/src/site/site.xml 2009-02-20 19:56:12 UTC (rev 1397)
+++ lutinutil/trunk/src/site/site.xml 2009-02-23 08:48:33 UTC (rev 1398)
@@ -6,7 +6,7 @@
<skin>
<groupId>org.codelutin</groupId>
<artifactId>maven-lutin-skin</artifactId>
- <version>0.2.1</version>
+ <version>0.2.3</version>
</skin>
<bannerLeft>
Modified: lutinutilextra/trunk/src/site/site.xml
===================================================================
--- lutinutilextra/trunk/src/site/site.xml 2009-02-20 19:56:12 UTC (rev 1397)
+++ lutinutilextra/trunk/src/site/site.xml 2009-02-23 08:48:33 UTC (rev 1398)
@@ -4,7 +4,7 @@
<skin>
<groupId>org.codelutin</groupId>
<artifactId>maven-lutin-skin</artifactId>
- <version>0.2.1</version>
+ <version>0.2.3</version>
</skin>
<bannerLeft>
Modified: maven-i18n-plugin/trunk/pom.xml
===================================================================
--- maven-i18n-plugin/trunk/pom.xml 2009-02-20 19:56:12 UTC (rev 1397)
+++ maven-i18n-plugin/trunk/pom.xml 2009-02-23 08:48:33 UTC (rev 1398)
@@ -86,7 +86,7 @@
<!-- nom du projet sur le labs -->
<labs.project>lutinutil</labs.project>
- <maven.version>2.0.9</maven.version>
+ <maven.version>2.0.10</maven.version>
<processor.version>0.17</processor.version>
<lutinpluginutil.version>0.3</lutinpluginutil.version>
</properties>
Modified: maven-i18n-plugin/trunk/src/site/site.xml
===================================================================
--- maven-i18n-plugin/trunk/src/site/site.xml 2009-02-20 19:56:12 UTC (rev 1397)
+++ maven-i18n-plugin/trunk/src/site/site.xml 2009-02-23 08:48:33 UTC (rev 1398)
@@ -6,7 +6,7 @@
<skin>
<groupId>org.codelutin</groupId>
<artifactId>maven-lutin-skin</artifactId>
- <version>0.2.1</version>
+ <version>0.2.3</version>
</skin>
<bannerLeft>
1
0
[Lutinutil-commits] r1397 - in commandline/trunk: . commandline-core commandline-ui commandline-ui-action maven-commandline-plugin
by tchemit@users.labs.libre-entreprise.org 20 Feb '09
by tchemit@users.labs.libre-entreprise.org 20 Feb '09
20 Feb '09
Author: tchemit
Date: 2009-02-20 19:56:12 +0000 (Fri, 20 Feb 2009)
New Revision: 1397
Modified:
commandline/trunk/commandline-core/pom.xml
commandline/trunk/commandline-ui-action/pom.xml
commandline/trunk/commandline-ui/pom.xml
commandline/trunk/maven-commandline-plugin/pom.xml
commandline/trunk/pom.xml
Log:
push back generic scm values
Modified: commandline/trunk/commandline-core/pom.xml
===================================================================
--- commandline/trunk/commandline-core/pom.xml 2009-02-20 19:20:25 UTC (rev 1396)
+++ commandline/trunk/commandline-core/pom.xml 2009-02-20 19:56:12 UTC (rev 1397)
@@ -45,9 +45,9 @@
<!-- *** Build Environment ************************************** -->
<!-- ************************************************************* -->
<scm>
- <connection>scm:svn:svn://anonymous@labs.libre-entreprise.org/svnroot/lutinutil/commandline/trunk/commandline-core</connection>
- <developerConnection>scm:svn:svn+ssh://tchemit@labs.libre-entreprise.org/svnroot/lutinutil/commandline/trunk/commandline-core</developerConnection>
- <url>http://labs.libre-entreprise.org/plugins/scmsvn/viewcvs.php/commandline/tru…</url>
+ <connection>${maven.scm.connection.child}</connection>
+ <developerConnection>${maven.scm.developerConnection.child}</developerConnection>
+ <url>${maven.scm.url.child}</url>
</scm>
</project>
Modified: commandline/trunk/commandline-ui/pom.xml
===================================================================
--- commandline/trunk/commandline-ui/pom.xml 2009-02-20 19:20:25 UTC (rev 1396)
+++ commandline/trunk/commandline-ui/pom.xml 2009-02-20 19:56:12 UTC (rev 1397)
@@ -83,9 +83,9 @@
<!-- *** Build Environment ************************************** -->
<!-- ************************************************************* -->
<scm>
- <connection>scm:svn:svn://anonymous@labs.libre-entreprise.org/svnroot/lutinutil/commandline/trunk/commandline-ui</connection>
- <developerConnection>scm:svn:svn+ssh://tchemit@labs.libre-entreprise.org/svnroot/lutinutil/commandline/trunk/commandline-ui</developerConnection>
- <url>http://labs.libre-entreprise.org/plugins/scmsvn/viewcvs.php/commandline/tru…</url>
+ <connection>${maven.scm.connection.child}</connection>
+ <developerConnection>${maven.scm.developerConnection.child}</developerConnection>
+ <url>${maven.scm.url.child}</url>
</scm>
</project>
\ No newline at end of file
Modified: commandline/trunk/commandline-ui-action/pom.xml
===================================================================
--- commandline/trunk/commandline-ui-action/pom.xml 2009-02-20 19:20:25 UTC (rev 1396)
+++ commandline/trunk/commandline-ui-action/pom.xml 2009-02-20 19:56:12 UTC (rev 1397)
@@ -105,9 +105,9 @@
<!-- *** Build Environment ************************************** -->
<!-- ************************************************************* -->
<scm>
- <connection>scm:svn:svn://anonymous@labs.libre-entreprise.org/svnroot/lutinutil/commandline/trunk/commandline-ui-action</connection>
- <developerConnection>scm:svn:svn+ssh://tchemit@labs.libre-entreprise.org/svnroot/lutinutil/commandline/trunk/commandline-ui-action</developerConnection>
- <url>http://labs.libre-entreprise.org/plugins/scmsvn/viewcvs.php/commandline/tru…</url>
+ <connection>${maven.scm.connection.child}</connection>
+ <developerConnection>${maven.scm.developerConnection.child}</developerConnection>
+ <url>${maven.scm.url.child}</url>
</scm>
</project>
\ No newline at end of file
Modified: commandline/trunk/maven-commandline-plugin/pom.xml
===================================================================
--- commandline/trunk/maven-commandline-plugin/pom.xml 2009-02-20 19:20:25 UTC (rev 1396)
+++ commandline/trunk/maven-commandline-plugin/pom.xml 2009-02-20 19:56:12 UTC (rev 1397)
@@ -107,9 +107,9 @@
<!-- *** Build Environment ************************************** -->
<!-- ************************************************************* -->
<scm>
- <connection>scm:svn:svn://anonymous@labs.libre-entreprise.org/svnroot/lutinutil/commandline/trunk/maven-commandline-plugin</connection>
- <developerConnection>scm:svn:svn+ssh://tchemit@labs.libre-entreprise.org/svnroot/lutinutil/commandline/trunk/maven-commandline-plugin</developerConnection>
- <url>http://labs.libre-entreprise.org/plugins/scmsvn/viewcvs.php/commandline/tru…</url>
+ <connection>${maven.scm.connection.child}</connection>
+ <developerConnection>${maven.scm.developerConnection.child}</developerConnection>
+ <url>${maven.scm.url.child}</url>
</scm>
</project>
\ No newline at end of file
Modified: commandline/trunk/pom.xml
===================================================================
--- commandline/trunk/pom.xml 2009-02-20 19:20:25 UTC (rev 1396)
+++ commandline/trunk/pom.xml 2009-02-20 19:56:12 UTC (rev 1397)
@@ -181,9 +181,9 @@
<!-- *** Build Environment ************************************** -->
<!-- ************************************************************* -->
<scm>
- <connection>scm:svn:svn://anonymous@labs.libre-entreprise.org/svnroot/lutinutil/commandline/trunk</connection>
- <developerConnection>scm:svn:svn+ssh://tchemit@labs.libre-entreprise.org/svnroot/lutinutil/commandline/trunk</developerConnection>
- <url>http://labs.libre-entreprise.org/plugins/scmsvn/viewcvs.php/commandline/tru…</url>
+ <connection>${maven.scm.connection}</connection>
+ <developerConnection>${maven.scm.developerConnection}</developerConnection>
+ <url>${maven.scm.url}</url>
</scm>
<!--Code Lutin Repository-->
1
0
[Lutinutil-commits] r1396 - in commandline/trunk: . commandline-core commandline-demo commandline-ui commandline-ui-action maven-commandline-plugin
by tchemit@users.labs.libre-entreprise.org 20 Feb '09
by tchemit@users.labs.libre-entreprise.org 20 Feb '09
20 Feb '09
Author: tchemit
Date: 2009-02-20 19:20:25 +0000 (Fri, 20 Feb 2009)
New Revision: 1396
Modified:
commandline/trunk/commandline-core/pom.xml
commandline/trunk/commandline-demo/pom.xml
commandline/trunk/commandline-ui-action/pom.xml
commandline/trunk/commandline-ui/pom.xml
commandline/trunk/maven-commandline-plugin/pom.xml
commandline/trunk/pom.xml
Log:
[maven-release-plugin] prepare for next development iteration
Modified: commandline/trunk/commandline-core/pom.xml
===================================================================
--- commandline/trunk/commandline-core/pom.xml 2009-02-20 19:20:21 UTC (rev 1395)
+++ commandline/trunk/commandline-core/pom.xml 2009-02-20 19:20:25 UTC (rev 1396)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.codelutin</groupId>
<artifactId>commandline</artifactId>
- <version>1.0</version>
+ <version>1.1-SNAPSHOT</version>
</parent>
<groupId>org.codelutin.commandline</groupId>
@@ -45,9 +45,9 @@
<!-- *** Build Environment ************************************** -->
<!-- ************************************************************* -->
<scm>
- <connection>scm:svn:svn://anonymous@labs.libre-entreprise.org/svnroot/lutinutil/commandline/tags/1.0/commandline-core</connection>
- <developerConnection>scm:svn:svn+ssh://tchemit@labs.libre-entreprise.org/svnroot/lutinutil/commandline/tags/1.0/commandline-core</developerConnection>
- <url>http://labs.libre-entreprise.org/plugins/scmsvn/viewcvs.php/commandline/tag…</url>
+ <connection>scm:svn:svn://anonymous@labs.libre-entreprise.org/svnroot/lutinutil/commandline/trunk/commandline-core</connection>
+ <developerConnection>scm:svn:svn+ssh://tchemit@labs.libre-entreprise.org/svnroot/lutinutil/commandline/trunk/commandline-core</developerConnection>
+ <url>http://labs.libre-entreprise.org/plugins/scmsvn/viewcvs.php/commandline/tru…</url>
</scm>
</project>
Modified: commandline/trunk/commandline-demo/pom.xml
===================================================================
--- commandline/trunk/commandline-demo/pom.xml 2009-02-20 19:20:21 UTC (rev 1395)
+++ commandline/trunk/commandline-demo/pom.xml 2009-02-20 19:20:25 UTC (rev 1396)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.codelutin</groupId>
<artifactId>commandline</artifactId>
- <version>1.0</version>
+ <version>1.1-SNAPSHOT</version>
</parent>
<groupId>org.codelutin.commandline</groupId>
@@ -182,9 +182,9 @@
<!-- *** Build Environment ************************************** -->
<!-- ************************************************************* -->
<scm>
- <connection>scm:svn:svn://anonymous@labs.libre-entreprise.org/svnroot/lutinutil/commandline/tags/1.0/commandline-demo</connection>
- <developerConnection>scm:svn:svn+ssh://tchemit@labs.libre-entreprise.org/svnroot/lutinutil/commandline/tags/1.0/commandline-demo</developerConnection>
- <url>http://labs.libre-entreprise.org/plugins/scmsvn/viewcvs.php/commandline/tag…</url>
+ <connection>scm:svn:svn://anonymous@labs.libre-entreprise.org/svnroot/lutinutil/commandline/trunk/commandline-demo</connection>
+ <developerConnection>scm:svn:svn+ssh://tchemit@labs.libre-entreprise.org/svnroot/lutinutil/commandline/trunk/commandline-demo</developerConnection>
+ <url>http://labs.libre-entreprise.org/plugins/scmsvn/viewcvs.php/commandline/tru…</url>
</scm>
</project>
\ No newline at end of file
Modified: commandline/trunk/commandline-ui/pom.xml
===================================================================
--- commandline/trunk/commandline-ui/pom.xml 2009-02-20 19:20:21 UTC (rev 1395)
+++ commandline/trunk/commandline-ui/pom.xml 2009-02-20 19:20:25 UTC (rev 1396)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.codelutin</groupId>
<artifactId>commandline</artifactId>
- <version>1.0</version>
+ <version>1.1-SNAPSHOT</version>
</parent>
<groupId>org.codelutin.commandline</groupId>
@@ -83,9 +83,9 @@
<!-- *** Build Environment ************************************** -->
<!-- ************************************************************* -->
<scm>
- <connection>scm:svn:svn://anonymous@labs.libre-entreprise.org/svnroot/lutinutil/commandline/tags/1.0/commandline-ui</connection>
- <developerConnection>scm:svn:svn+ssh://tchemit@labs.libre-entreprise.org/svnroot/lutinutil/commandline/tags/1.0/commandline-ui</developerConnection>
- <url>http://labs.libre-entreprise.org/plugins/scmsvn/viewcvs.php/commandline/tag…</url>
+ <connection>scm:svn:svn://anonymous@labs.libre-entreprise.org/svnroot/lutinutil/commandline/trunk/commandline-ui</connection>
+ <developerConnection>scm:svn:svn+ssh://tchemit@labs.libre-entreprise.org/svnroot/lutinutil/commandline/trunk/commandline-ui</developerConnection>
+ <url>http://labs.libre-entreprise.org/plugins/scmsvn/viewcvs.php/commandline/tru…</url>
</scm>
</project>
\ No newline at end of file
Modified: commandline/trunk/commandline-ui-action/pom.xml
===================================================================
--- commandline/trunk/commandline-ui-action/pom.xml 2009-02-20 19:20:21 UTC (rev 1395)
+++ commandline/trunk/commandline-ui-action/pom.xml 2009-02-20 19:20:25 UTC (rev 1396)
@@ -8,7 +8,7 @@
<parent>
<groupId>org.codelutin</groupId>
<artifactId>commandline</artifactId>
- <version>1.0</version>
+ <version>1.1-SNAPSHOT</version>
</parent>
<groupId>org.codelutin.commandline</groupId>
@@ -105,9 +105,9 @@
<!-- *** Build Environment ************************************** -->
<!-- ************************************************************* -->
<scm>
- <connection>scm:svn:svn://anonymous@labs.libre-entreprise.org/svnroot/lutinutil/commandline/tags/1.0/commandline-ui-action</connection>
- <developerConnection>scm:svn:svn+ssh://tchemit@labs.libre-entreprise.org/svnroot/lutinutil/commandline/tags/1.0/commandline-ui-action</developerConnection>
- <url>http://labs.libre-entreprise.org/plugins/scmsvn/viewcvs.php/commandline/tag…</url>
+ <connection>scm:svn:svn://anonymous@labs.libre-entreprise.org/svnroot/lutinutil/commandline/trunk/commandline-ui-action</connection>
+ <developerConnection>scm:svn:svn+ssh://tchemit@labs.libre-entreprise.org/svnroot/lutinutil/commandline/trunk/commandline-ui-action</developerConnection>
+ <url>http://labs.libre-entreprise.org/plugins/scmsvn/viewcvs.php/commandline/tru…</url>
</scm>
</project>
\ No newline at end of file
Modified: commandline/trunk/maven-commandline-plugin/pom.xml
===================================================================
--- commandline/trunk/maven-commandline-plugin/pom.xml 2009-02-20 19:20:21 UTC (rev 1395)
+++ commandline/trunk/maven-commandline-plugin/pom.xml 2009-02-20 19:20:25 UTC (rev 1396)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.codelutin</groupId>
<artifactId>commandline</artifactId>
- <version>1.0</version>
+ <version>1.1-SNAPSHOT</version>
</parent>
<groupId>org.codelutin.commandline</groupId>
@@ -107,9 +107,9 @@
<!-- *** Build Environment ************************************** -->
<!-- ************************************************************* -->
<scm>
- <connection>scm:svn:svn://anonymous@labs.libre-entreprise.org/svnroot/lutinutil/commandline/tags/1.0/maven-commandline-plugin</connection>
- <developerConnection>scm:svn:svn+ssh://tchemit@labs.libre-entreprise.org/svnroot/lutinutil/commandline/tags/1.0/maven-commandline-plugin</developerConnection>
- <url>http://labs.libre-entreprise.org/plugins/scmsvn/viewcvs.php/commandline/tag…</url>
+ <connection>scm:svn:svn://anonymous@labs.libre-entreprise.org/svnroot/lutinutil/commandline/trunk/maven-commandline-plugin</connection>
+ <developerConnection>scm:svn:svn+ssh://tchemit@labs.libre-entreprise.org/svnroot/lutinutil/commandline/trunk/maven-commandline-plugin</developerConnection>
+ <url>http://labs.libre-entreprise.org/plugins/scmsvn/viewcvs.php/commandline/tru…</url>
</scm>
</project>
\ No newline at end of file
Modified: commandline/trunk/pom.xml
===================================================================
--- commandline/trunk/pom.xml 2009-02-20 19:20:21 UTC (rev 1395)
+++ commandline/trunk/pom.xml 2009-02-20 19:20:25 UTC (rev 1396)
@@ -14,7 +14,7 @@
<groupId>org.codelutin</groupId>
<artifactId>commandline</artifactId>
- <version>1.0</version>
+ <version>1.1-SNAPSHOT</version>
<modules>
<module>commandline-core</module>
@@ -181,9 +181,9 @@
<!-- *** Build Environment ************************************** -->
<!-- ************************************************************* -->
<scm>
- <connection>scm:svn:svn://anonymous@labs.libre-entreprise.org/svnroot/lutinutil/commandline/tags/1.0</connection>
- <developerConnection>scm:svn:svn+ssh://tchemit@labs.libre-entreprise.org/svnroot/lutinutil/commandline/tags/1.0</developerConnection>
- <url>http://labs.libre-entreprise.org/plugins/scmsvn/viewcvs.php/commandline/tag…</url>
+ <connection>scm:svn:svn://anonymous@labs.libre-entreprise.org/svnroot/lutinutil/commandline/trunk</connection>
+ <developerConnection>scm:svn:svn+ssh://tchemit@labs.libre-entreprise.org/svnroot/lutinutil/commandline/trunk</developerConnection>
+ <url>http://labs.libre-entreprise.org/plugins/scmsvn/viewcvs.php/commandline/tru…</url>
</scm>
<!--Code Lutin Repository-->
1
0
[Lutinutil-commits] r1395 - in commandline/tags: . 1.0 1.0/commandline-core 1.0/commandline-demo 1.0/commandline-ui 1.0/commandline-ui-action 1.0/maven-commandline-plugin
by tchemit@users.labs.libre-entreprise.org 20 Feb '09
by tchemit@users.labs.libre-entreprise.org 20 Feb '09
20 Feb '09
Author: tchemit
Date: 2009-02-20 19:20:21 +0000 (Fri, 20 Feb 2009)
New Revision: 1395
Added:
commandline/tags/1.0/
commandline/tags/1.0/commandline-core/pom.xml
commandline/tags/1.0/commandline-demo/pom.xml
commandline/tags/1.0/commandline-ui-action/pom.xml
commandline/tags/1.0/commandline-ui/pom.xml
commandline/tags/1.0/maven-commandline-plugin/pom.xml
commandline/tags/1.0/pom.xml
Removed:
commandline/tags/1.0/commandline-core/pom.xml
commandline/tags/1.0/commandline-demo/pom.xml
commandline/tags/1.0/commandline-ui-action/pom.xml
commandline/tags/1.0/commandline-ui/pom.xml
commandline/tags/1.0/maven-commandline-plugin/pom.xml
commandline/tags/1.0/pom.xml
Log:
[maven-release-plugin] copy for tag 1.0
Copied: commandline/tags/1.0 (from rev 1388, commandline/trunk)
Deleted: commandline/tags/1.0/commandline-core/pom.xml
===================================================================
--- commandline/trunk/commandline-core/pom.xml 2009-02-20 19:14:45 UTC (rev 1388)
+++ commandline/tags/1.0/commandline-core/pom.xml 2009-02-20 19:20:21 UTC (rev 1395)
@@ -1,53 +0,0 @@
-<?xml version="1.0" encoding="ISO-8859-1"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
-
- <modelVersion>4.0.0</modelVersion>
-
- <parent>
- <groupId>org.codelutin</groupId>
- <artifactId>commandline</artifactId>
- <version>1.0</version>
- </parent>
-
- <groupId>org.codelutin.commandline</groupId>
- <artifactId>commandline-core</artifactId>
- <name>commandline-core</name>
-
- <dependencies>
- <dependency>
- <groupId>org.codelutin</groupId>
- <artifactId>lutinutil</artifactId>
- </dependency>
- </dependencies>
-
- <packaging>jar</packaging>
- <description>lutincommandline core library</description>
-
- <build>
- <plugins>
- <!-- i18n -->
- <plugin>
- <groupId>org.codelutin</groupId>
- <artifactId>maven-i18n-plugin</artifactId>
- <executions>
- <execution>
- <goals>
- <goal>parserJava</goal>
- <goal>gen</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
-
- <!-- ************************************************************* -->
- <!-- *** Build Environment ************************************** -->
- <!-- ************************************************************* -->
- <scm>
- <connection>scm:svn:svn://anonymous@labs.libre-entreprise.org/svnroot/lutinutil/commandline/tags/1.0/commandline-core</connection>
- <developerConnection>scm:svn:svn+ssh://tchemit@labs.libre-entreprise.org/svnroot/lutinutil/commandline/tags/1.0/commandline-core</developerConnection>
- <url>http://labs.libre-entreprise.org/plugins/scmsvn/viewcvs.php/commandline/tag…</url>
- </scm>
-
-</project>
Copied: commandline/tags/1.0/commandline-core/pom.xml (from rev 1394, commandline/trunk/commandline-core/pom.xml)
===================================================================
--- commandline/tags/1.0/commandline-core/pom.xml (rev 0)
+++ commandline/tags/1.0/commandline-core/pom.xml 2009-02-20 19:20:21 UTC (rev 1395)
@@ -0,0 +1,53 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+
+ <modelVersion>4.0.0</modelVersion>
+
+ <parent>
+ <groupId>org.codelutin</groupId>
+ <artifactId>commandline</artifactId>
+ <version>1.0</version>
+ </parent>
+
+ <groupId>org.codelutin.commandline</groupId>
+ <artifactId>commandline-core</artifactId>
+ <name>commandline-core</name>
+
+ <dependencies>
+ <dependency>
+ <groupId>org.codelutin</groupId>
+ <artifactId>lutinutil</artifactId>
+ </dependency>
+ </dependencies>
+
+ <packaging>jar</packaging>
+ <description>lutincommandline core library</description>
+
+ <build>
+ <plugins>
+ <!-- i18n -->
+ <plugin>
+ <groupId>org.codelutin</groupId>
+ <artifactId>maven-i18n-plugin</artifactId>
+ <executions>
+ <execution>
+ <goals>
+ <goal>parserJava</goal>
+ <goal>gen</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
+
+ <!-- ************************************************************* -->
+ <!-- *** Build Environment ************************************** -->
+ <!-- ************************************************************* -->
+ <scm>
+ <connection>scm:svn:svn://anonymous@labs.libre-entreprise.org/svnroot/lutinutil/commandline/tags/1.0/commandline-core</connection>
+ <developerConnection>scm:svn:svn+ssh://tchemit@labs.libre-entreprise.org/svnroot/lutinutil/commandline/tags/1.0/commandline-core</developerConnection>
+ <url>http://labs.libre-entreprise.org/plugins/scmsvn/viewcvs.php/commandline/tag…</url>
+ </scm>
+
+</project>
Deleted: commandline/tags/1.0/commandline-demo/pom.xml
===================================================================
--- commandline/trunk/commandline-demo/pom.xml 2009-02-20 19:14:45 UTC (rev 1388)
+++ commandline/tags/1.0/commandline-demo/pom.xml 2009-02-20 19:20:21 UTC (rev 1395)
@@ -1,190 +0,0 @@
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
- <modelVersion>4.0.0</modelVersion>
-
-
- <!-- ************************************************************* -->
- <!-- *** POM Relationships *************************************** -->
- <!-- ************************************************************* -->
-
- <parent>
- <groupId>org.codelutin</groupId>
- <artifactId>commandline</artifactId>
- <version>1.0</version>
- </parent>
-
- <groupId>org.codelutin.commandline</groupId>
- <artifactId>commandline-demo</artifactId>
-
- <dependencies>
-
- <!-- sibling dependencies -->
- <dependency>
- <groupId>${project.groupId}</groupId>
- <artifactId>commandline-core</artifactId>
- <version>${project.version}</version>
- </dependency>
-
- <dependency>
- <groupId>${project.groupId}</groupId>
- <artifactId>commandline-ui</artifactId>
- <version>${project.version}</version>
- </dependency>
-
- <dependency>
- <groupId>${project.groupId}</groupId>
- <artifactId>commandline-ui-action</artifactId>
- <version>${project.version}</version>
- </dependency>
-
- <!-- other dependencies -->
- <dependency>
- <groupId>org.codelutin.jaxx</groupId>
- <artifactId>jaxx-swing-action</artifactId>
- </dependency>
-
- <dependency>
- <groupId>org.codelutin</groupId>
- <artifactId>lutinwidget</artifactId>
- </dependency>
-
- </dependencies>
-
-
- <!-- ************************************************************* -->
- <!-- *** Project Information ************************************* -->
- <!-- ************************************************************* -->
-
- <name>commandline-demo</name>
- <description>commandline demo module</description>
-
- <!-- ************************************************************* -->
- <!-- *** Build Settings ****************************************** -->
- <!-- ************************************************************* -->
-
- <packaging>jar</packaging>
-
- <properties>
-
- <!--Main class in JAR -->
- <maven.jar.main.class>org.codelutin.commandline.demo.DemoMain</maven.jar.main.class>
-
- </properties>
-
- <build>
- <plugins>
-
- <plugin>
- <groupId>org.codelutin.jaxx</groupId>
- <artifactId>maven-jaxx-plugin</artifactId>
- </plugin>
-
- <plugin>
- <groupId>org.codelutin.commandline</groupId>
- <artifactId>maven-commandline-plugin</artifactId>
- <version>${project.version}</version>
- <configuration>
- <prefix>CommandLineDemo</prefix>
- <packageName>org.codelutin.commandline.demo</packageName>
- <source>${maven.src.dir}/main/resources/commandline.properties</source>
- <outClass>${basedir}/target/classes</outClass>
- </configuration>
- <executions>
- <execution>
- <id>genJava</id>
- <goals>
- <goal>genJava</goal>
- </goals>
- <configuration>
- <out>${maven.gen.dir}/java</out>
- <concreteConfig>true</concreteConfig>
- <concreteContextFQN>org.codelutin.commandline.demo.DemoContext</concreteContextFQN>
- <_projectName>CommandlineDemo</_projectName>
- <_projectURL>http://commandline.labs.libre-entreprise.org</_projectURL>
- <_configFileName>.commandlineDemo-1</_configFileName>
- <_version>${project.version}</_version>
- <_organisationName>Codelutin</_organisationName>
- <_organisationURL>http://codelutin.com</_organisationURL>
- <_copyright>Copyright Codelutin 2008</_copyright>
- </configuration>
- </execution>
- <execution>
- <id>genRst</id>
- <goals>
- <goal>genRst</goal>
- </goals>
- <configuration>
- <bundles>
- <bundle>fr_FR</bundle>
- <bundle>en_GB</bundle>
- </bundles>
- <rstFilePath>${maven.src.dir}/site/@bundle@/rst/user</rstFilePath>
- <i18nCP>${maven.src.dir}/main/resources</i18nCP>
- </configuration>
- </execution>
- </executions>
- </plugin>
-
- <plugin>
- <groupId>org.codelutin</groupId>
- <artifactId>maven-i18n-plugin</artifactId>
- <executions>
- <execution>
- <id>java</id>
- <configuration>
- <entries>
- <entry>
- <basedir>${maven.gen.dir}/java</basedir>
- </entry>
- </entries>
- </configuration>
- <goals>
- <goal>parserJava</goal>
- <goal>gen</goal>
- </goals>
- </execution>
- </executions>
- <!-- FIXME : plugin wants to use the LutinLogFactory why ? -->
- <dependencies>
- <dependency>
- <groupId>org.codelutin</groupId>
- <artifactId>lutinutil</artifactId>
- <version>${lutinutil.version}</version>
- </dependency>
- </dependencies>
- </plugin>
-
- <plugin>
- <artifactId>maven-dependency-plugin</artifactId>
- <executions>
- <execution>
- <id>copy-dependencies</id>
- </execution>
- </executions>
- </plugin>
-
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-jar-plugin</artifactId>
- <configuration>
- <archive>
- <manifest>
- <addClasspath>true</addClasspath>
- <classpathPrefix>./lib/</classpathPrefix>
- </manifest>
- </archive>
- </configuration>
- </plugin>
-
- </plugins>
- </build>
-
- <!-- ************************************************************* -->
- <!-- *** Build Environment ************************************** -->
- <!-- ************************************************************* -->
- <scm>
- <connection>scm:svn:svn://anonymous@labs.libre-entreprise.org/svnroot/lutinutil/commandline/tags/1.0/commandline-demo</connection>
- <developerConnection>scm:svn:svn+ssh://tchemit@labs.libre-entreprise.org/svnroot/lutinutil/commandline/tags/1.0/commandline-demo</developerConnection>
- <url>http://labs.libre-entreprise.org/plugins/scmsvn/viewcvs.php/commandline/tag…</url>
- </scm>
-
-</project>
\ No newline at end of file
Copied: commandline/tags/1.0/commandline-demo/pom.xml (from rev 1394, commandline/trunk/commandline-demo/pom.xml)
===================================================================
--- commandline/tags/1.0/commandline-demo/pom.xml (rev 0)
+++ commandline/tags/1.0/commandline-demo/pom.xml 2009-02-20 19:20:21 UTC (rev 1395)
@@ -0,0 +1,190 @@
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+ <modelVersion>4.0.0</modelVersion>
+
+
+ <!-- ************************************************************* -->
+ <!-- *** POM Relationships *************************************** -->
+ <!-- ************************************************************* -->
+
+ <parent>
+ <groupId>org.codelutin</groupId>
+ <artifactId>commandline</artifactId>
+ <version>1.0</version>
+ </parent>
+
+ <groupId>org.codelutin.commandline</groupId>
+ <artifactId>commandline-demo</artifactId>
+
+ <dependencies>
+
+ <!-- sibling dependencies -->
+ <dependency>
+ <groupId>${project.groupId}</groupId>
+ <artifactId>commandline-core</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+
+ <dependency>
+ <groupId>${project.groupId}</groupId>
+ <artifactId>commandline-ui</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+
+ <dependency>
+ <groupId>${project.groupId}</groupId>
+ <artifactId>commandline-ui-action</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+
+ <!-- other dependencies -->
+ <dependency>
+ <groupId>org.codelutin.jaxx</groupId>
+ <artifactId>jaxx-swing-action</artifactId>
+ </dependency>
+
+ <dependency>
+ <groupId>org.codelutin</groupId>
+ <artifactId>lutinwidget</artifactId>
+ </dependency>
+
+ </dependencies>
+
+
+ <!-- ************************************************************* -->
+ <!-- *** Project Information ************************************* -->
+ <!-- ************************************************************* -->
+
+ <name>commandline-demo</name>
+ <description>commandline demo module</description>
+
+ <!-- ************************************************************* -->
+ <!-- *** Build Settings ****************************************** -->
+ <!-- ************************************************************* -->
+
+ <packaging>jar</packaging>
+
+ <properties>
+
+ <!--Main class in JAR -->
+ <maven.jar.main.class>org.codelutin.commandline.demo.DemoMain</maven.jar.main.class>
+
+ </properties>
+
+ <build>
+ <plugins>
+
+ <plugin>
+ <groupId>org.codelutin.jaxx</groupId>
+ <artifactId>maven-jaxx-plugin</artifactId>
+ </plugin>
+
+ <plugin>
+ <groupId>org.codelutin.commandline</groupId>
+ <artifactId>maven-commandline-plugin</artifactId>
+ <version>${project.version}</version>
+ <configuration>
+ <prefix>CommandLineDemo</prefix>
+ <packageName>org.codelutin.commandline.demo</packageName>
+ <source>${maven.src.dir}/main/resources/commandline.properties</source>
+ <outClass>${basedir}/target/classes</outClass>
+ </configuration>
+ <executions>
+ <execution>
+ <id>genJava</id>
+ <goals>
+ <goal>genJava</goal>
+ </goals>
+ <configuration>
+ <out>${maven.gen.dir}/java</out>
+ <concreteConfig>true</concreteConfig>
+ <concreteContextFQN>org.codelutin.commandline.demo.DemoContext</concreteContextFQN>
+ <_projectName>CommandlineDemo</_projectName>
+ <_projectURL>http://commandline.labs.libre-entreprise.org</_projectURL>
+ <_configFileName>.commandlineDemo-1</_configFileName>
+ <_version>${project.version}</_version>
+ <_organisationName>Codelutin</_organisationName>
+ <_organisationURL>http://codelutin.com</_organisationURL>
+ <_copyright>Copyright Codelutin 2008</_copyright>
+ </configuration>
+ </execution>
+ <execution>
+ <id>genRst</id>
+ <goals>
+ <goal>genRst</goal>
+ </goals>
+ <configuration>
+ <bundles>
+ <bundle>fr_FR</bundle>
+ <bundle>en_GB</bundle>
+ </bundles>
+ <rstFilePath>${maven.src.dir}/site/@bundle@/rst/user</rstFilePath>
+ <i18nCP>${maven.src.dir}/main/resources</i18nCP>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+
+ <plugin>
+ <groupId>org.codelutin</groupId>
+ <artifactId>maven-i18n-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>java</id>
+ <configuration>
+ <entries>
+ <entry>
+ <basedir>${maven.gen.dir}/java</basedir>
+ </entry>
+ </entries>
+ </configuration>
+ <goals>
+ <goal>parserJava</goal>
+ <goal>gen</goal>
+ </goals>
+ </execution>
+ </executions>
+ <!-- FIXME : plugin wants to use the LutinLogFactory why ? -->
+ <dependencies>
+ <dependency>
+ <groupId>org.codelutin</groupId>
+ <artifactId>lutinutil</artifactId>
+ <version>${lutinutil.version}</version>
+ </dependency>
+ </dependencies>
+ </plugin>
+
+ <plugin>
+ <artifactId>maven-dependency-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>copy-dependencies</id>
+ </execution>
+ </executions>
+ </plugin>
+
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-jar-plugin</artifactId>
+ <configuration>
+ <archive>
+ <manifest>
+ <addClasspath>true</addClasspath>
+ <classpathPrefix>./lib/</classpathPrefix>
+ </manifest>
+ </archive>
+ </configuration>
+ </plugin>
+
+ </plugins>
+ </build>
+
+ <!-- ************************************************************* -->
+ <!-- *** Build Environment ************************************** -->
+ <!-- ************************************************************* -->
+ <scm>
+ <connection>scm:svn:svn://anonymous@labs.libre-entreprise.org/svnroot/lutinutil/commandline/tags/1.0/commandline-demo</connection>
+ <developerConnection>scm:svn:svn+ssh://tchemit@labs.libre-entreprise.org/svnroot/lutinutil/commandline/tags/1.0/commandline-demo</developerConnection>
+ <url>http://labs.libre-entreprise.org/plugins/scmsvn/viewcvs.php/commandline/tag…</url>
+ </scm>
+
+</project>
\ No newline at end of file
Deleted: commandline/tags/1.0/commandline-ui/pom.xml
===================================================================
--- commandline/trunk/commandline-ui/pom.xml 2009-02-20 19:14:45 UTC (rev 1388)
+++ commandline/tags/1.0/commandline-ui/pom.xml 2009-02-20 19:20:21 UTC (rev 1395)
@@ -1,91 +0,0 @@
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
-
- <modelVersion>4.0.0</modelVersion>
-
- <!-- ************************************************************* -->
- <!-- *** POM Relationships *************************************** -->
- <!-- ************************************************************* -->
-
- <parent>
- <groupId>org.codelutin</groupId>
- <artifactId>commandline</artifactId>
- <version>1.0</version>
- </parent>
-
- <groupId>org.codelutin.commandline</groupId>
- <artifactId>commandline-ui</artifactId>
-
- <dependencies>
-
- <!-- sibling dependencies -->
- <dependency>
- <groupId>${project.groupId}</groupId>
- <artifactId>commandline-core</artifactId>
- <version>${project.version}</version>
- <scope>compile</scope>
- </dependency>
-
- <dependency>
- <groupId>org.codelutin.jaxx</groupId>
- <artifactId>jaxx-runtime-swing</artifactId>
- <scope>compile</scope>
- </dependency>
-
- </dependencies>
-
-
- <!-- ************************************************************* -->
- <!-- *** Project Information ************************************* -->
- <!-- ************************************************************* -->
- <name>commandline-ui</name>
- <description>lutin commandline UI librairy</description>
-
- <!-- ************************************************************* -->
- <!-- *** Build Settings ****************************************** -->
- <!-- ************************************************************* -->
-
- <packaging>jar</packaging>
-
- <build>
-
- <plugins>
-
- <!-- jaxx -->
- <plugin>
- <groupId>org.codelutin.jaxx</groupId>
- <artifactId>maven-jaxx-plugin</artifactId>
- </plugin>
-
- <!-- i18n -->
- <plugin>
- <groupId>org.codelutin</groupId>
- <artifactId>maven-i18n-plugin</artifactId>
- <executions>
- <execution>
- <configuration>
- <entries>
- <entry>
- <basedir>${maven.gen.dir}/java</basedir>
- </entry>
- </entries>
- </configuration>
- <goals>
- <goal>parserJava</goal>
- <goal>gen</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
-
- <!-- ************************************************************* -->
- <!-- *** Build Environment ************************************** -->
- <!-- ************************************************************* -->
- <scm>
- <connection>scm:svn:svn://anonymous@labs.libre-entreprise.org/svnroot/lutinutil/commandline/tags/1.0/commandline-ui</connection>
- <developerConnection>scm:svn:svn+ssh://tchemit@labs.libre-entreprise.org/svnroot/lutinutil/commandline/tags/1.0/commandline-ui</developerConnection>
- <url>http://labs.libre-entreprise.org/plugins/scmsvn/viewcvs.php/commandline/tag…</url>
- </scm>
-
-</project>
\ No newline at end of file
Copied: commandline/tags/1.0/commandline-ui/pom.xml (from rev 1394, commandline/trunk/commandline-ui/pom.xml)
===================================================================
--- commandline/tags/1.0/commandline-ui/pom.xml (rev 0)
+++ commandline/tags/1.0/commandline-ui/pom.xml 2009-02-20 19:20:21 UTC (rev 1395)
@@ -0,0 +1,91 @@
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+
+ <modelVersion>4.0.0</modelVersion>
+
+ <!-- ************************************************************* -->
+ <!-- *** POM Relationships *************************************** -->
+ <!-- ************************************************************* -->
+
+ <parent>
+ <groupId>org.codelutin</groupId>
+ <artifactId>commandline</artifactId>
+ <version>1.0</version>
+ </parent>
+
+ <groupId>org.codelutin.commandline</groupId>
+ <artifactId>commandline-ui</artifactId>
+
+ <dependencies>
+
+ <!-- sibling dependencies -->
+ <dependency>
+ <groupId>${project.groupId}</groupId>
+ <artifactId>commandline-core</artifactId>
+ <version>${project.version}</version>
+ <scope>compile</scope>
+ </dependency>
+
+ <dependency>
+ <groupId>org.codelutin.jaxx</groupId>
+ <artifactId>jaxx-runtime-swing</artifactId>
+ <scope>compile</scope>
+ </dependency>
+
+ </dependencies>
+
+
+ <!-- ************************************************************* -->
+ <!-- *** Project Information ************************************* -->
+ <!-- ************************************************************* -->
+ <name>commandline-ui</name>
+ <description>lutin commandline UI librairy</description>
+
+ <!-- ************************************************************* -->
+ <!-- *** Build Settings ****************************************** -->
+ <!-- ************************************************************* -->
+
+ <packaging>jar</packaging>
+
+ <build>
+
+ <plugins>
+
+ <!-- jaxx -->
+ <plugin>
+ <groupId>org.codelutin.jaxx</groupId>
+ <artifactId>maven-jaxx-plugin</artifactId>
+ </plugin>
+
+ <!-- i18n -->
+ <plugin>
+ <groupId>org.codelutin</groupId>
+ <artifactId>maven-i18n-plugin</artifactId>
+ <executions>
+ <execution>
+ <configuration>
+ <entries>
+ <entry>
+ <basedir>${maven.gen.dir}/java</basedir>
+ </entry>
+ </entries>
+ </configuration>
+ <goals>
+ <goal>parserJava</goal>
+ <goal>gen</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
+
+ <!-- ************************************************************* -->
+ <!-- *** Build Environment ************************************** -->
+ <!-- ************************************************************* -->
+ <scm>
+ <connection>scm:svn:svn://anonymous@labs.libre-entreprise.org/svnroot/lutinutil/commandline/tags/1.0/commandline-ui</connection>
+ <developerConnection>scm:svn:svn+ssh://tchemit@labs.libre-entreprise.org/svnroot/lutinutil/commandline/tags/1.0/commandline-ui</developerConnection>
+ <url>http://labs.libre-entreprise.org/plugins/scmsvn/viewcvs.php/commandline/tag…</url>
+ </scm>
+
+</project>
\ No newline at end of file
Deleted: commandline/tags/1.0/commandline-ui-action/pom.xml
===================================================================
--- commandline/trunk/commandline-ui-action/pom.xml 2009-02-20 19:14:45 UTC (rev 1388)
+++ commandline/tags/1.0/commandline-ui-action/pom.xml 2009-02-20 19:20:21 UTC (rev 1395)
@@ -1,113 +0,0 @@
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
- <modelVersion>4.0.0</modelVersion>
-
- <!-- ************************************************************* -->
- <!-- *** POM Relationships *************************************** -->
- <!-- ************************************************************* -->
-
- <parent>
- <groupId>org.codelutin</groupId>
- <artifactId>commandline</artifactId>
- <version>1.0</version>
- </parent>
-
- <groupId>org.codelutin.commandline</groupId>
- <artifactId>commandline-ui-action</artifactId>
-
- <dependencies>
-
- <!-- sibling dependencies -->
- <dependency>
- <groupId>${project.groupId}</groupId>
- <artifactId>commandline-ui</artifactId>
- <version>${project.version}</version>
- </dependency>
-
- <dependency>
- <groupId>org.codelutin.jaxx</groupId>
- <artifactId>jaxx-swing-action</artifactId>
- </dependency>
-
- </dependencies>
-
- <!-- ************************************************************* -->
- <!-- *** Project Information ************************************* -->
- <!-- ************************************************************* -->
-
- <name>commandine-ui-action</name>
- <description>basic actions implemented using jaxx-swing-action framework</description>
-
- <!-- ************************************************************* -->
- <!-- *** Build Settings ****************************************** -->
- <!-- ************************************************************* -->
-
- <packaging>jar</packaging>
-
- <build>
-
- <plugins>
-
- <!-- jaxx -->
- <plugin>
- <groupId>org.codelutin.jaxx</groupId>
- <artifactId>maven-jaxx-plugin</artifactId>
- </plugin>
-
- <!-- Compile phase -->
- <plugin>
- <groupId>org.codelutin</groupId>
- <artifactId>maven-i18n-plugin</artifactId>
- <configuration>
- </configuration>
- <executions>
- <execution>
- <id>javaActionConfig</id>
- <goals>
- <goal>parserJavaActionConfig</goal>
- </goals>
- <configuration>
- <treateDefaultEntry>false</treateDefaultEntry>
- <entries>
- <entry>
- <basedir>${maven.src.dir}/main/java</basedir>
- <includes>
- <param>org\/codelutin\/option\/ui\/actions\/**\/*Action.java</param>
- </includes>
- <excludes>
- <param>org\/codelutin\/option\/ui\/actions\/**\/*AbstractAction.java</param>
- </excludes>
- </entry>
- </entries>
- </configuration>
- </execution>
- <execution>
- <id>java</id>
- <goals>
- <goal>parserJava</goal>
- <goal>gen</goal>
- </goals>
- <configuration>
- <entries>
- <entry>
- <basedir>${maven.gen.dir}/java</basedir>
- </entry>
- </entries>
- </configuration>
- </execution>
- </executions>
- </plugin>
-
-
- </plugins>
- </build>
-
- <!-- ************************************************************* -->
- <!-- *** Build Environment ************************************** -->
- <!-- ************************************************************* -->
- <scm>
- <connection>scm:svn:svn://anonymous@labs.libre-entreprise.org/svnroot/lutinutil/commandline/tags/1.0/commandline-ui-action</connection>
- <developerConnection>scm:svn:svn+ssh://tchemit@labs.libre-entreprise.org/svnroot/lutinutil/commandline/tags/1.0/commandline-ui-action</developerConnection>
- <url>http://labs.libre-entreprise.org/plugins/scmsvn/viewcvs.php/commandline/tag…</url>
- </scm>
-
-</project>
\ No newline at end of file
Copied: commandline/tags/1.0/commandline-ui-action/pom.xml (from rev 1394, commandline/trunk/commandline-ui-action/pom.xml)
===================================================================
--- commandline/tags/1.0/commandline-ui-action/pom.xml (rev 0)
+++ commandline/tags/1.0/commandline-ui-action/pom.xml 2009-02-20 19:20:21 UTC (rev 1395)
@@ -0,0 +1,113 @@
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+ <modelVersion>4.0.0</modelVersion>
+
+ <!-- ************************************************************* -->
+ <!-- *** POM Relationships *************************************** -->
+ <!-- ************************************************************* -->
+
+ <parent>
+ <groupId>org.codelutin</groupId>
+ <artifactId>commandline</artifactId>
+ <version>1.0</version>
+ </parent>
+
+ <groupId>org.codelutin.commandline</groupId>
+ <artifactId>commandline-ui-action</artifactId>
+
+ <dependencies>
+
+ <!-- sibling dependencies -->
+ <dependency>
+ <groupId>${project.groupId}</groupId>
+ <artifactId>commandline-ui</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+
+ <dependency>
+ <groupId>org.codelutin.jaxx</groupId>
+ <artifactId>jaxx-swing-action</artifactId>
+ </dependency>
+
+ </dependencies>
+
+ <!-- ************************************************************* -->
+ <!-- *** Project Information ************************************* -->
+ <!-- ************************************************************* -->
+
+ <name>commandine-ui-action</name>
+ <description>basic actions implemented using jaxx-swing-action framework</description>
+
+ <!-- ************************************************************* -->
+ <!-- *** Build Settings ****************************************** -->
+ <!-- ************************************************************* -->
+
+ <packaging>jar</packaging>
+
+ <build>
+
+ <plugins>
+
+ <!-- jaxx -->
+ <plugin>
+ <groupId>org.codelutin.jaxx</groupId>
+ <artifactId>maven-jaxx-plugin</artifactId>
+ </plugin>
+
+ <!-- Compile phase -->
+ <plugin>
+ <groupId>org.codelutin</groupId>
+ <artifactId>maven-i18n-plugin</artifactId>
+ <configuration>
+ </configuration>
+ <executions>
+ <execution>
+ <id>javaActionConfig</id>
+ <goals>
+ <goal>parserJavaActionConfig</goal>
+ </goals>
+ <configuration>
+ <treateDefaultEntry>false</treateDefaultEntry>
+ <entries>
+ <entry>
+ <basedir>${maven.src.dir}/main/java</basedir>
+ <includes>
+ <param>org\/codelutin\/option\/ui\/actions\/**\/*Action.java</param>
+ </includes>
+ <excludes>
+ <param>org\/codelutin\/option\/ui\/actions\/**\/*AbstractAction.java</param>
+ </excludes>
+ </entry>
+ </entries>
+ </configuration>
+ </execution>
+ <execution>
+ <id>java</id>
+ <goals>
+ <goal>parserJava</goal>
+ <goal>gen</goal>
+ </goals>
+ <configuration>
+ <entries>
+ <entry>
+ <basedir>${maven.gen.dir}/java</basedir>
+ </entry>
+ </entries>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+
+
+ </plugins>
+ </build>
+
+ <!-- ************************************************************* -->
+ <!-- *** Build Environment ************************************** -->
+ <!-- ************************************************************* -->
+ <scm>
+ <connection>scm:svn:svn://anonymous@labs.libre-entreprise.org/svnroot/lutinutil/commandline/tags/1.0/commandline-ui-action</connection>
+ <developerConnection>scm:svn:svn+ssh://tchemit@labs.libre-entreprise.org/svnroot/lutinutil/commandline/tags/1.0/commandline-ui-action</developerConnection>
+ <url>http://labs.libre-entreprise.org/plugins/scmsvn/viewcvs.php/commandline/tag…</url>
+ </scm>
+
+</project>
\ No newline at end of file
Deleted: commandline/tags/1.0/maven-commandline-plugin/pom.xml
===================================================================
--- commandline/trunk/maven-commandline-plugin/pom.xml 2009-02-20 19:14:45 UTC (rev 1388)
+++ commandline/tags/1.0/maven-commandline-plugin/pom.xml 2009-02-20 19:20:21 UTC (rev 1395)
@@ -1,115 +0,0 @@
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
-
- <modelVersion>4.0.0</modelVersion>
-
- <!-- ************************************************************* -->
- <!-- *** POM Relationships *************************************** -->
- <!-- ************************************************************* -->
-
- <parent>
- <groupId>org.codelutin</groupId>
- <artifactId>commandline</artifactId>
- <version>1.0</version>
- </parent>
-
- <groupId>org.codelutin.commandline</groupId>
- <artifactId>maven-commandline-plugin</artifactId>
-
- <dependencies>
-
- <!-- sibling dependencies -->
- <dependency>
- <groupId>${project.groupId}</groupId>
- <artifactId>commandline-core</artifactId>
- <version>${project.version}</version>
- <scope>compile</scope>
- </dependency>
-
- <dependency>
- <groupId>commons-lang</groupId>
- <artifactId>commons-lang</artifactId>
- <scope>compile</scope>
- </dependency>
-
- <!-- maven plugin project dependencies -->
- <dependency>
- <groupId>org.apache.maven</groupId>
- <artifactId>maven-plugin-api</artifactId>
- <scope>compile</scope>
- </dependency>
-
- <dependency>
- <groupId>org.apache.maven</groupId>
- <artifactId>maven-project</artifactId>
- <scope>compile</scope>
- </dependency>
-
- <dependency>
- <groupId>org.codelutin</groupId>
- <artifactId>lutinpluginutil</artifactId>
- <version>${lutinpluginutil.version}</version>
- <scope>compile</scope>
- </dependency>
-
- </dependencies>
-
- <!-- ************************************************************* -->
- <!-- *** Project Information ************************************* -->
- <!-- ************************************************************* -->
-
- <name>maven-commandline-plugin</name>
-
- <description>
- Plugin maven 2 pour la generation du parser d'options, des
- configurations et du context d'application en se basant sur
- la librairie commandline.
- </description>
-
- <!-- ************************************************************* -->
- <!-- *** Build Settings ****************************************** -->
- <!-- ************************************************************* -->
-
- <packaging>maven-plugin</packaging>
- <build>
- <plugins>
- <!-- i18n -->
- <plugin>
- <groupId>org.codelutin</groupId>
- <artifactId>maven-i18n-plugin</artifactId>
- <executions>
- <execution>
- <goals>
- <goal>parserJava</goal>
- <goal>gen</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
-
- <plugin>
- <artifactId>maven-plugin-plugin</artifactId>
- </plugin>
-
- </plugins>
- </build>
-
- <reports>
- <plugins>
-
- <!--Site report's plugin-->
- <plugin>
- <artifactId>maven-plugin-plugin</artifactId>
- </plugin>
-
- </plugins>
- </reports>
- <!-- ************************************************************* -->
- <!-- *** Build Environment ************************************** -->
- <!-- ************************************************************* -->
- <scm>
- <connection>scm:svn:svn://anonymous@labs.libre-entreprise.org/svnroot/lutinutil/commandline/tags/1.0/maven-commandline-plugin</connection>
- <developerConnection>scm:svn:svn+ssh://tchemit@labs.libre-entreprise.org/svnroot/lutinutil/commandline/tags/1.0/maven-commandline-plugin</developerConnection>
- <url>http://labs.libre-entreprise.org/plugins/scmsvn/viewcvs.php/commandline/tag…</url>
- </scm>
-
-</project>
\ No newline at end of file
Copied: commandline/tags/1.0/maven-commandline-plugin/pom.xml (from rev 1394, commandline/trunk/maven-commandline-plugin/pom.xml)
===================================================================
--- commandline/tags/1.0/maven-commandline-plugin/pom.xml (rev 0)
+++ commandline/tags/1.0/maven-commandline-plugin/pom.xml 2009-02-20 19:20:21 UTC (rev 1395)
@@ -0,0 +1,115 @@
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+
+ <modelVersion>4.0.0</modelVersion>
+
+ <!-- ************************************************************* -->
+ <!-- *** POM Relationships *************************************** -->
+ <!-- ************************************************************* -->
+
+ <parent>
+ <groupId>org.codelutin</groupId>
+ <artifactId>commandline</artifactId>
+ <version>1.0</version>
+ </parent>
+
+ <groupId>org.codelutin.commandline</groupId>
+ <artifactId>maven-commandline-plugin</artifactId>
+
+ <dependencies>
+
+ <!-- sibling dependencies -->
+ <dependency>
+ <groupId>${project.groupId}</groupId>
+ <artifactId>commandline-core</artifactId>
+ <version>${project.version}</version>
+ <scope>compile</scope>
+ </dependency>
+
+ <dependency>
+ <groupId>commons-lang</groupId>
+ <artifactId>commons-lang</artifactId>
+ <scope>compile</scope>
+ </dependency>
+
+ <!-- maven plugin project dependencies -->
+ <dependency>
+ <groupId>org.apache.maven</groupId>
+ <artifactId>maven-plugin-api</artifactId>
+ <scope>compile</scope>
+ </dependency>
+
+ <dependency>
+ <groupId>org.apache.maven</groupId>
+ <artifactId>maven-project</artifactId>
+ <scope>compile</scope>
+ </dependency>
+
+ <dependency>
+ <groupId>org.codelutin</groupId>
+ <artifactId>lutinpluginutil</artifactId>
+ <version>${lutinpluginutil.version}</version>
+ <scope>compile</scope>
+ </dependency>
+
+ </dependencies>
+
+ <!-- ************************************************************* -->
+ <!-- *** Project Information ************************************* -->
+ <!-- ************************************************************* -->
+
+ <name>maven-commandline-plugin</name>
+
+ <description>
+ Plugin maven 2 pour la generation du parser d'options, des
+ configurations et du context d'application en se basant sur
+ la librairie commandline.
+ </description>
+
+ <!-- ************************************************************* -->
+ <!-- *** Build Settings ****************************************** -->
+ <!-- ************************************************************* -->
+
+ <packaging>maven-plugin</packaging>
+ <build>
+ <plugins>
+ <!-- i18n -->
+ <plugin>
+ <groupId>org.codelutin</groupId>
+ <artifactId>maven-i18n-plugin</artifactId>
+ <executions>
+ <execution>
+ <goals>
+ <goal>parserJava</goal>
+ <goal>gen</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+
+ <plugin>
+ <artifactId>maven-plugin-plugin</artifactId>
+ </plugin>
+
+ </plugins>
+ </build>
+
+ <reports>
+ <plugins>
+
+ <!--Site report's plugin-->
+ <plugin>
+ <artifactId>maven-plugin-plugin</artifactId>
+ </plugin>
+
+ </plugins>
+ </reports>
+ <!-- ************************************************************* -->
+ <!-- *** Build Environment ************************************** -->
+ <!-- ************************************************************* -->
+ <scm>
+ <connection>scm:svn:svn://anonymous@labs.libre-entreprise.org/svnroot/lutinutil/commandline/tags/1.0/maven-commandline-plugin</connection>
+ <developerConnection>scm:svn:svn+ssh://tchemit@labs.libre-entreprise.org/svnroot/lutinutil/commandline/tags/1.0/maven-commandline-plugin</developerConnection>
+ <url>http://labs.libre-entreprise.org/plugins/scmsvn/viewcvs.php/commandline/tag…</url>
+ </scm>
+
+</project>
\ No newline at end of file
Deleted: commandline/tags/1.0/pom.xml
===================================================================
--- commandline/trunk/pom.xml 2009-02-20 19:14:45 UTC (rev 1388)
+++ commandline/tags/1.0/pom.xml 2009-02-20 19:20:21 UTC (rev 1395)
@@ -1,238 +0,0 @@
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
-
- <modelVersion>4.0.0</modelVersion>
-
- <!-- ************************************************************* -->
- <!-- *** POM Relationships *************************************** -->
- <!-- ************************************************************* -->
-
- <parent>
- <groupId>org.codelutin</groupId>
- <artifactId>lutinproject</artifactId>
- <version>3.4</version>
- </parent>
-
- <groupId>org.codelutin</groupId>
- <artifactId>commandline</artifactId>
- <version>1.0</version>
-
- <modules>
- <module>commandline-core</module>
- <module>commandline-ui</module>
- <module>commandline-ui-action</module>
- <module>maven-commandline-plugin</module>
- <module>commandline-demo</module>
- </modules>
-
- <dependencyManagement>
- <dependencies>
-
- <dependency>
- <groupId>commons-lang</groupId>
- <artifactId>commons-lang</artifactId>
- <version>2.1</version>
- <scope>compile</scope>
- </dependency>
-
- <dependency>
- <groupId>org.codelutin</groupId>
- <artifactId>lutinutil</artifactId>
- <version>${lutinutil.version}</version>
- </dependency>
-
- <dependency>
- <groupId>org.codelutin</groupId>
- <artifactId>lutinwidget</artifactId>
- <version>${lutinwidget.version}</version>
- <exclusions>
- <exclusion>
- <groupId>javax.mail</groupId>
- <artifactId>mail</artifactId>
- </exclusion>
- <exclusion>
- <groupId>sdoc</groupId>
- <artifactId>sdoc</artifactId>
- </exclusion>
- </exclusions>
- </dependency>
-
- <!-- jaxx library -->
- <dependency>
- <groupId>org.codelutin.jaxx</groupId>
- <artifactId>jaxx-util</artifactId>
- <version>${jaxx.version}</version>
- </dependency>
-
- <dependency>
- <groupId>org.codelutin.jaxx</groupId>
- <artifactId>jaxx-runtime-swing</artifactId>
- <version>${jaxx.version}</version>
- </dependency>
-
- <dependency>
- <groupId>org.codelutin.jaxx</groupId>
- <artifactId>jaxx-swing-action</artifactId>
- <version>${jaxx.version}</version>
- </dependency>
-
- <dependency>
- <groupId>org.apache.maven</groupId>
- <artifactId>maven-plugin-api</artifactId>
- <version>${maven.version}</version>
- </dependency>
-
- <dependency>
- <groupId>org.apache.maven</groupId>
- <artifactId>maven-project</artifactId>
- <version>${maven.version}</version>
- </dependency>
-
- </dependencies>
- </dependencyManagement>
-
- <!-- ************************************************************* -->
- <!-- *** Project Information ************************************* -->
- <!-- ************************************************************* -->
- <name>commandline</name>
- <description>lutincommandline library main pom</description>
- <inceptionYear>2008</inceptionYear>
-
- <!-- ************************************************************* -->
- <!-- *** Build Settings ****************************************** -->
- <!-- ************************************************************* -->
-
- <packaging>pom</packaging>
-
- <properties>
-
- <labs.id>12</labs.id>
-
- <labs.project>lutinutil</labs.project>
-
- <!-- libs version -->
- <jaxx.version>1.1</jaxx.version>
- <i18n.version>0.9</i18n.version>
- <lutinwidget.version>0.13</lutinwidget.version>
- <lutinutil.version>1.0.3</lutinutil.version>
- <lutinpluginutil.version>0.3</lutinpluginutil.version>
- <jrst.version>0.8.4</jrst.version>
- <license-switcher.version>0.6</license-switcher.version>
- <maven.version>2.0.9</maven.version>
- </properties>
-
- <build>
-
- <pluginManagement>
- <plugins>
-
- <!-- plugin i18n -->
- <plugin>
- <groupId>org.codelutin</groupId>
- <artifactId>maven-i18n-plugin</artifactId>
- <version>${i18n.version}</version>
- </plugin>
-
- <!-- plugin jaxx -->
- <plugin>
- <groupId>org.codelutin.jaxx</groupId>
- <artifactId>maven-jaxx-plugin</artifactId>
- <version>${jaxx.version}</version>
- <executions>
- <execution>
- <goals>
- <goal>generate</goal>
- </goals>
- </execution>
- </executions>
- <dependencies>
- <dependency>
- <groupId>org.codelutin</groupId>
- <artifactId>lutinwidget</artifactId>
- <version>${lutinwidget.version}</version>
- </dependency>
- </dependencies>
- </plugin>
-
- </plugins>
- </pluginManagement>
-
- <plugins>
- <!-- Always process jrst files, but only called on pre-site phase -->
- <plugin>
- <groupId>org.codelutin</groupId>
- <artifactId>maven-jrst-plugin</artifactId>
- <version>${jrst.version}</version>
- <configuration>
- <defaultLocale>fr</defaultLocale>
- </configuration>
- <executions>
- <execution>
- <goals>
- <goal>jrst</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- </plugins>
-
- </build>
-
- <!-- ************************************************************* -->
- <!-- *** Build Environment ************************************** -->
- <!-- ************************************************************* -->
- <scm>
- <connection>scm:svn:svn://anonymous@labs.libre-entreprise.org/svnroot/lutinutil/commandline/tags/1.0</connection>
- <developerConnection>scm:svn:svn+ssh://tchemit@labs.libre-entreprise.org/svnroot/lutinutil/commandline/tags/1.0</developerConnection>
- <url>http://labs.libre-entreprise.org/plugins/scmsvn/viewcvs.php/commandline/tag…</url>
- </scm>
-
- <!--Code Lutin Repository-->
- <repositories>
- <repository>
- <id>codelutin-repository</id>
- <name>CodeLutinRepository</name>
- <url>http://lutinbuilder.labs.libre-entreprise.org/maven2</url>
- <snapshots>
- <enabled>true</enabled>
- <checksumPolicy>warn</checksumPolicy>
- </snapshots>
- <releases>
- <enabled>true</enabled>
- <checksumPolicy>warn</checksumPolicy>
- </releases>
- </repository>
- </repositories>
-
- <profiles>
- <!-- perform only on a release stage when using the maven-release-plugin -->
- <profile>
- <id>release-profile</id>
- <activation>
- <property>
- <name>performRelease</name>
- <value>true</value>
- </property>
- </activation>
- <build>
- <plugins>
- <!-- always add license and third-party files to classpath -->
- <plugin>
- <groupId>org.codelutin</groupId>
- <artifactId>maven-license-switcher-plugin</artifactId>
- <version>${license-switcher.version}</version>
- <executions>
- <execution>
- <id>attach-licenses</id>
- <goals>
- <goal>license</goal>
- <goal>third-party</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
- </profile>
- </profiles>
-
-</project>
\ No newline at end of file
Copied: commandline/tags/1.0/pom.xml (from rev 1394, commandline/trunk/pom.xml)
===================================================================
--- commandline/tags/1.0/pom.xml (rev 0)
+++ commandline/tags/1.0/pom.xml 2009-02-20 19:20:21 UTC (rev 1395)
@@ -0,0 +1,238 @@
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+
+ <modelVersion>4.0.0</modelVersion>
+
+ <!-- ************************************************************* -->
+ <!-- *** POM Relationships *************************************** -->
+ <!-- ************************************************************* -->
+
+ <parent>
+ <groupId>org.codelutin</groupId>
+ <artifactId>lutinproject</artifactId>
+ <version>3.4</version>
+ </parent>
+
+ <groupId>org.codelutin</groupId>
+ <artifactId>commandline</artifactId>
+ <version>1.0</version>
+
+ <modules>
+ <module>commandline-core</module>
+ <module>commandline-ui</module>
+ <module>commandline-ui-action</module>
+ <module>maven-commandline-plugin</module>
+ <module>commandline-demo</module>
+ </modules>
+
+ <dependencyManagement>
+ <dependencies>
+
+ <dependency>
+ <groupId>commons-lang</groupId>
+ <artifactId>commons-lang</artifactId>
+ <version>2.1</version>
+ <scope>compile</scope>
+ </dependency>
+
+ <dependency>
+ <groupId>org.codelutin</groupId>
+ <artifactId>lutinutil</artifactId>
+ <version>${lutinutil.version}</version>
+ </dependency>
+
+ <dependency>
+ <groupId>org.codelutin</groupId>
+ <artifactId>lutinwidget</artifactId>
+ <version>${lutinwidget.version}</version>
+ <exclusions>
+ <exclusion>
+ <groupId>javax.mail</groupId>
+ <artifactId>mail</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>sdoc</groupId>
+ <artifactId>sdoc</artifactId>
+ </exclusion>
+ </exclusions>
+ </dependency>
+
+ <!-- jaxx library -->
+ <dependency>
+ <groupId>org.codelutin.jaxx</groupId>
+ <artifactId>jaxx-util</artifactId>
+ <version>${jaxx.version}</version>
+ </dependency>
+
+ <dependency>
+ <groupId>org.codelutin.jaxx</groupId>
+ <artifactId>jaxx-runtime-swing</artifactId>
+ <version>${jaxx.version}</version>
+ </dependency>
+
+ <dependency>
+ <groupId>org.codelutin.jaxx</groupId>
+ <artifactId>jaxx-swing-action</artifactId>
+ <version>${jaxx.version}</version>
+ </dependency>
+
+ <dependency>
+ <groupId>org.apache.maven</groupId>
+ <artifactId>maven-plugin-api</artifactId>
+ <version>${maven.version}</version>
+ </dependency>
+
+ <dependency>
+ <groupId>org.apache.maven</groupId>
+ <artifactId>maven-project</artifactId>
+ <version>${maven.version}</version>
+ </dependency>
+
+ </dependencies>
+ </dependencyManagement>
+
+ <!-- ************************************************************* -->
+ <!-- *** Project Information ************************************* -->
+ <!-- ************************************************************* -->
+ <name>commandline</name>
+ <description>lutincommandline library main pom</description>
+ <inceptionYear>2008</inceptionYear>
+
+ <!-- ************************************************************* -->
+ <!-- *** Build Settings ****************************************** -->
+ <!-- ************************************************************* -->
+
+ <packaging>pom</packaging>
+
+ <properties>
+
+ <labs.id>12</labs.id>
+
+ <labs.project>lutinutil</labs.project>
+
+ <!-- libs version -->
+ <jaxx.version>1.1</jaxx.version>
+ <i18n.version>0.9</i18n.version>
+ <lutinwidget.version>0.13</lutinwidget.version>
+ <lutinutil.version>1.0.3</lutinutil.version>
+ <lutinpluginutil.version>0.3</lutinpluginutil.version>
+ <jrst.version>0.8.4</jrst.version>
+ <license-switcher.version>0.6</license-switcher.version>
+ <maven.version>2.0.9</maven.version>
+ </properties>
+
+ <build>
+
+ <pluginManagement>
+ <plugins>
+
+ <!-- plugin i18n -->
+ <plugin>
+ <groupId>org.codelutin</groupId>
+ <artifactId>maven-i18n-plugin</artifactId>
+ <version>${i18n.version}</version>
+ </plugin>
+
+ <!-- plugin jaxx -->
+ <plugin>
+ <groupId>org.codelutin.jaxx</groupId>
+ <artifactId>maven-jaxx-plugin</artifactId>
+ <version>${jaxx.version}</version>
+ <executions>
+ <execution>
+ <goals>
+ <goal>generate</goal>
+ </goals>
+ </execution>
+ </executions>
+ <dependencies>
+ <dependency>
+ <groupId>org.codelutin</groupId>
+ <artifactId>lutinwidget</artifactId>
+ <version>${lutinwidget.version}</version>
+ </dependency>
+ </dependencies>
+ </plugin>
+
+ </plugins>
+ </pluginManagement>
+
+ <plugins>
+ <!-- Always process jrst files, but only called on pre-site phase -->
+ <plugin>
+ <groupId>org.codelutin</groupId>
+ <artifactId>maven-jrst-plugin</artifactId>
+ <version>${jrst.version}</version>
+ <configuration>
+ <defaultLocale>fr</defaultLocale>
+ </configuration>
+ <executions>
+ <execution>
+ <goals>
+ <goal>jrst</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+
+ </build>
+
+ <!-- ************************************************************* -->
+ <!-- *** Build Environment ************************************** -->
+ <!-- ************************************************************* -->
+ <scm>
+ <connection>scm:svn:svn://anonymous@labs.libre-entreprise.org/svnroot/lutinutil/commandline/tags/1.0</connection>
+ <developerConnection>scm:svn:svn+ssh://tchemit@labs.libre-entreprise.org/svnroot/lutinutil/commandline/tags/1.0</developerConnection>
+ <url>http://labs.libre-entreprise.org/plugins/scmsvn/viewcvs.php/commandline/tag…</url>
+ </scm>
+
+ <!--Code Lutin Repository-->
+ <repositories>
+ <repository>
+ <id>codelutin-repository</id>
+ <name>CodeLutinRepository</name>
+ <url>http://lutinbuilder.labs.libre-entreprise.org/maven2</url>
+ <snapshots>
+ <enabled>true</enabled>
+ <checksumPolicy>warn</checksumPolicy>
+ </snapshots>
+ <releases>
+ <enabled>true</enabled>
+ <checksumPolicy>warn</checksumPolicy>
+ </releases>
+ </repository>
+ </repositories>
+
+ <profiles>
+ <!-- perform only on a release stage when using the maven-release-plugin -->
+ <profile>
+ <id>release-profile</id>
+ <activation>
+ <property>
+ <name>performRelease</name>
+ <value>true</value>
+ </property>
+ </activation>
+ <build>
+ <plugins>
+ <!-- always add license and third-party files to classpath -->
+ <plugin>
+ <groupId>org.codelutin</groupId>
+ <artifactId>maven-license-switcher-plugin</artifactId>
+ <version>${license-switcher.version}</version>
+ <executions>
+ <execution>
+ <id>attach-licenses</id>
+ <goals>
+ <goal>license</goal>
+ <goal>third-party</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
+ </profiles>
+
+</project>
\ No newline at end of file
1
0
[Lutinutil-commits] r1394 - in commandline/trunk: . commandline-core commandline-demo commandline-ui commandline-ui-action maven-commandline-plugin
by tchemit@users.labs.libre-entreprise.org 20 Feb '09
by tchemit@users.labs.libre-entreprise.org 20 Feb '09
20 Feb '09
Author: tchemit
Date: 2009-02-20 19:20:15 +0000 (Fri, 20 Feb 2009)
New Revision: 1394
Modified:
commandline/trunk/commandline-core/pom.xml
commandline/trunk/commandline-demo/pom.xml
commandline/trunk/commandline-ui-action/pom.xml
commandline/trunk/commandline-ui/pom.xml
commandline/trunk/maven-commandline-plugin/pom.xml
commandline/trunk/pom.xml
Log:
[maven-release-plugin] prepare release 1.0
Modified: commandline/trunk/commandline-core/pom.xml
===================================================================
--- commandline/trunk/commandline-core/pom.xml 2009-02-20 19:18:58 UTC (rev 1393)
+++ commandline/trunk/commandline-core/pom.xml 2009-02-20 19:20:15 UTC (rev 1394)
@@ -1,13 +1,12 @@
<?xml version="1.0" encoding="ISO-8859-1"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.codelutin</groupId>
<artifactId>commandline</artifactId>
- <version>1.0-SNAPSHOT</version>
+ <version>1.0</version>
</parent>
<groupId>org.codelutin.commandline</groupId>
@@ -46,9 +45,9 @@
<!-- *** Build Environment ************************************** -->
<!-- ************************************************************* -->
<scm>
- <connection>${maven.scm.connection.child}</connection>
- <developerConnection>${maven.scm.developerConnection.child}</developerConnection>
- <url>${maven.scm.url.child}</url>
+ <connection>scm:svn:svn://anonymous@labs.libre-entreprise.org/svnroot/lutinutil/commandline/tags/1.0/commandline-core</connection>
+ <developerConnection>scm:svn:svn+ssh://tchemit@labs.libre-entreprise.org/svnroot/lutinutil/commandline/tags/1.0/commandline-core</developerConnection>
+ <url>http://labs.libre-entreprise.org/plugins/scmsvn/viewcvs.php/commandline/tag…</url>
</scm>
</project>
Modified: commandline/trunk/commandline-demo/pom.xml
===================================================================
--- commandline/trunk/commandline-demo/pom.xml 2009-02-20 19:18:58 UTC (rev 1393)
+++ commandline/trunk/commandline-demo/pom.xml 2009-02-20 19:20:15 UTC (rev 1394)
@@ -1,7 +1,4 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
@@ -12,7 +9,7 @@
<parent>
<groupId>org.codelutin</groupId>
<artifactId>commandline</artifactId>
- <version>1.0-SNAPSHOT</version>
+ <version>1.0</version>
</parent>
<groupId>org.codelutin.commandline</groupId>
@@ -185,9 +182,9 @@
<!-- *** Build Environment ************************************** -->
<!-- ************************************************************* -->
<scm>
- <connection>${maven.scm.connection.child}</connection>
- <developerConnection>${maven.scm.developerConnection.child}</developerConnection>
- <url>${maven.scm.url.child}</url>
+ <connection>scm:svn:svn://anonymous@labs.libre-entreprise.org/svnroot/lutinutil/commandline/tags/1.0/commandline-demo</connection>
+ <developerConnection>scm:svn:svn+ssh://tchemit@labs.libre-entreprise.org/svnroot/lutinutil/commandline/tags/1.0/commandline-demo</developerConnection>
+ <url>http://labs.libre-entreprise.org/plugins/scmsvn/viewcvs.php/commandline/tag…</url>
</scm>
-</project>
+</project>
\ No newline at end of file
Modified: commandline/trunk/commandline-ui/pom.xml
===================================================================
--- commandline/trunk/commandline-ui/pom.xml 2009-02-20 19:18:58 UTC (rev 1393)
+++ commandline/trunk/commandline-ui/pom.xml 2009-02-20 19:20:15 UTC (rev 1394)
@@ -1,7 +1,4 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
@@ -12,7 +9,7 @@
<parent>
<groupId>org.codelutin</groupId>
<artifactId>commandline</artifactId>
- <version>1.0-SNAPSHOT</version>
+ <version>1.0</version>
</parent>
<groupId>org.codelutin.commandline</groupId>
@@ -86,9 +83,9 @@
<!-- *** Build Environment ************************************** -->
<!-- ************************************************************* -->
<scm>
- <connection>${maven.scm.connection.child}</connection>
- <developerConnection>${maven.scm.developerConnection.child}</developerConnection>
- <url>${maven.scm.url.child}</url>
+ <connection>scm:svn:svn://anonymous@labs.libre-entreprise.org/svnroot/lutinutil/commandline/tags/1.0/commandline-ui</connection>
+ <developerConnection>scm:svn:svn+ssh://tchemit@labs.libre-entreprise.org/svnroot/lutinutil/commandline/tags/1.0/commandline-ui</developerConnection>
+ <url>http://labs.libre-entreprise.org/plugins/scmsvn/viewcvs.php/commandline/tag…</url>
</scm>
-</project>
+</project>
\ No newline at end of file
Modified: commandline/trunk/commandline-ui-action/pom.xml
===================================================================
--- commandline/trunk/commandline-ui-action/pom.xml 2009-02-20 19:18:58 UTC (rev 1393)
+++ commandline/trunk/commandline-ui-action/pom.xml 2009-02-20 19:20:15 UTC (rev 1394)
@@ -1,7 +1,4 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<!-- ************************************************************* -->
@@ -11,7 +8,7 @@
<parent>
<groupId>org.codelutin</groupId>
<artifactId>commandline</artifactId>
- <version>1.0-SNAPSHOT</version>
+ <version>1.0</version>
</parent>
<groupId>org.codelutin.commandline</groupId>
@@ -108,9 +105,9 @@
<!-- *** Build Environment ************************************** -->
<!-- ************************************************************* -->
<scm>
- <connection>${maven.scm.connection.child}</connection>
- <developerConnection>${maven.scm.developerConnection.child}</developerConnection>
- <url>${maven.scm.url.child}</url>
+ <connection>scm:svn:svn://anonymous@labs.libre-entreprise.org/svnroot/lutinutil/commandline/tags/1.0/commandline-ui-action</connection>
+ <developerConnection>scm:svn:svn+ssh://tchemit@labs.libre-entreprise.org/svnroot/lutinutil/commandline/tags/1.0/commandline-ui-action</developerConnection>
+ <url>http://labs.libre-entreprise.org/plugins/scmsvn/viewcvs.php/commandline/tag…</url>
</scm>
-</project>
+</project>
\ No newline at end of file
Modified: commandline/trunk/maven-commandline-plugin/pom.xml
===================================================================
--- commandline/trunk/maven-commandline-plugin/pom.xml 2009-02-20 19:18:58 UTC (rev 1393)
+++ commandline/trunk/maven-commandline-plugin/pom.xml 2009-02-20 19:20:15 UTC (rev 1394)
@@ -1,7 +1,4 @@
-<?xml version="1.0" encoding="ISO-8859-1"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
@@ -12,7 +9,7 @@
<parent>
<groupId>org.codelutin</groupId>
<artifactId>commandline</artifactId>
- <version>1.0-SNAPSHOT</version>
+ <version>1.0</version>
</parent>
<groupId>org.codelutin.commandline</groupId>
@@ -110,9 +107,9 @@
<!-- *** Build Environment ************************************** -->
<!-- ************************************************************* -->
<scm>
- <connection>${maven.scm.connection.child}</connection>
- <developerConnection>${maven.scm.developerConnection.child}</developerConnection>
- <url>${maven.scm.url.child}</url>
+ <connection>scm:svn:svn://anonymous@labs.libre-entreprise.org/svnroot/lutinutil/commandline/tags/1.0/maven-commandline-plugin</connection>
+ <developerConnection>scm:svn:svn+ssh://tchemit@labs.libre-entreprise.org/svnroot/lutinutil/commandline/tags/1.0/maven-commandline-plugin</developerConnection>
+ <url>http://labs.libre-entreprise.org/plugins/scmsvn/viewcvs.php/commandline/tag…</url>
</scm>
-</project>
+</project>
\ No newline at end of file
Modified: commandline/trunk/pom.xml
===================================================================
--- commandline/trunk/pom.xml 2009-02-20 19:18:58 UTC (rev 1393)
+++ commandline/trunk/pom.xml 2009-02-20 19:20:15 UTC (rev 1394)
@@ -1,7 +1,4 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
@@ -17,7 +14,7 @@
<groupId>org.codelutin</groupId>
<artifactId>commandline</artifactId>
- <version>1.0-SNAPSHOT</version>
+ <version>1.0</version>
<modules>
<module>commandline-core</module>
@@ -184,9 +181,9 @@
<!-- *** Build Environment ************************************** -->
<!-- ************************************************************* -->
<scm>
- <connection>${maven.scm.connection}</connection>
- <developerConnection>${maven.scm.developerConnection}</developerConnection>
- <url>${maven.scm.url}</url>
+ <connection>scm:svn:svn://anonymous@labs.libre-entreprise.org/svnroot/lutinutil/commandline/tags/1.0</connection>
+ <developerConnection>scm:svn:svn+ssh://tchemit@labs.libre-entreprise.org/svnroot/lutinutil/commandline/tags/1.0</developerConnection>
+ <url>http://labs.libre-entreprise.org/plugins/scmsvn/viewcvs.php/commandline/tag…</url>
</scm>
<!--Code Lutin Repository-->
@@ -238,4 +235,4 @@
</profile>
</profiles>
-</project>
+</project>
\ No newline at end of file
1
0
20 Feb '09
Author: tchemit
Date: 2009-02-20 19:18:58 +0000 (Fri, 20 Feb 2009)
New Revision: 1393
Added:
commandline/branches/
Log:
1
0
20 Feb '09
Author: tchemit
Date: 2009-02-20 19:18:49 +0000 (Fri, 20 Feb 2009)
New Revision: 1392
Added:
commandline/tags/
Log:
1
0