Topia-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
- July
- June
- May
April 2009
- 5 participants
- 33 discussions
r1441 - topia/trunk/topia-persistence/src/main/java/org/codelutin/topia/generator
by thimel@users.labs.libre-entreprise.org 30 Apr '09
by thimel@users.labs.libre-entreprise.org 30 Apr '09
30 Apr '09
Author: thimel
Date: 2009-04-30 14:06:48 +0000 (Thu, 30 Apr 2009)
New Revision: 1441
Modified:
topia/trunk/topia-persistence/src/main/java/org/codelutin/topia/generator/TopiaGeneratorUtil.java
Log:
Set deprecated on methods moved to eugene
Modified: topia/trunk/topia-persistence/src/main/java/org/codelutin/topia/generator/TopiaGeneratorUtil.java
===================================================================
--- topia/trunk/topia-persistence/src/main/java/org/codelutin/topia/generator/TopiaGeneratorUtil.java 2009-04-29 15:25:52 UTC (rev 1440)
+++ topia/trunk/topia-persistence/src/main/java/org/codelutin/topia/generator/TopiaGeneratorUtil.java 2009-04-30 14:06:48 UTC (rev 1441)
@@ -29,28 +29,28 @@
package org.codelutin.topia.generator;
+import java.util.ArrayList;
+import java.util.Arrays;
+import java.util.Collection;
+import java.util.HashSet;
+import java.util.Iterator;
+import java.util.LinkedList;
+import java.util.List;
+import java.util.Set;
+
import org.apache.commons.lang.StringUtils;
import org.codelutin.generator.Generator;
import org.codelutin.generator.GeneratorUtil;
import org.codelutin.generator.models.Model;
import org.codelutin.generator.models.object.ObjectModel;
+import org.codelutin.generator.models.object.ObjectModelAssociationClass;
import org.codelutin.generator.models.object.ObjectModelAttribute;
import org.codelutin.generator.models.object.ObjectModelClass;
import org.codelutin.generator.models.object.ObjectModelElement;
import org.codelutin.generator.models.object.ObjectModelInterface;
import org.codelutin.generator.models.object.ObjectModelOperation;
-import org.codelutin.generator.models.object.ObjectModelAssociationClass;
import org.codelutin.generator.models.object.ObjectModelParameter;
-import java.util.ArrayList;
-import java.util.Collection;
-import java.util.HashSet;
-import java.util.Iterator;
-import java.util.LinkedList;
-import java.util.List;
-import java.util.Set;
-import java.util.Arrays;
-
/** Classe regroupant divers méthodes utiles pour la génération des entités */
public class TopiaGeneratorUtil extends GeneratorUtil {
@@ -176,21 +176,17 @@
}
/**
- * Indique si l'élément spécifié dispose de documentation
- *
- * @param element l'élément à tester
- * @return true s'il y a documentation, false sinon
+ * @see GeneratorUtil#hasDocumentation
*/
+ @Deprecated
public static boolean hasDocumentation(ObjectModelElement element) {
return notEmpty(element.getDocumentation());
}
/**
- * Indique si la chaine de caratère n'est pas vide (null ou "")
- *
- * @param s la chaine de caractères à tester
- * @return true si <code>s</code> n'est pas vide
+ * @see GeneratorUtil#notEmpty
*/
+ @Deprecated
public static boolean notEmpty(String s) {
return (s != null && !"".equals(s));
}
@@ -375,14 +371,9 @@
}
/**
- * Cherches et renvoie la valeur du tagvalue indique sur cet element,
- * sinon sur le model.
- *
- * @param tagName le nom du tag
- * @param element l'élément à tester
- * @param model le modele utilisé
- * @return la valeur du tagValue ou null
+ * @see GeneratorUtil#findTagValue
*/
+ @Deprecated
public static String findTagValue(String tagName,
ObjectModelElement element, Model model) {
if (element == null) {
1
0
r1440 - topia/trunk/topia-persistence/src/main/java/org/codelutin/topia
by fdesbois@users.labs.libre-entreprise.org 29 Apr '09
by fdesbois@users.labs.libre-entreprise.org 29 Apr '09
29 Apr '09
Author: fdesbois
Date: 2009-04-29 15:25:52 +0000 (Wed, 29 Apr 2009)
New Revision: 1440
Modified:
topia/trunk/topia-persistence/src/main/java/org/codelutin/topia/ContextUtil.java
Log:
Changement signature methode loadProperties
Modified: topia/trunk/topia-persistence/src/main/java/org/codelutin/topia/ContextUtil.java
===================================================================
--- topia/trunk/topia-persistence/src/main/java/org/codelutin/topia/ContextUtil.java 2009-04-29 15:09:16 UTC (rev 1439)
+++ topia/trunk/topia-persistence/src/main/java/org/codelutin/topia/ContextUtil.java 2009-04-29 15:25:52 UTC (rev 1440)
@@ -142,9 +142,8 @@
if (log.isInfoEnabled()) {
log.info("Initialize of TopiaContext...");
}
- Properties conf = new Properties();
try {
- conf = loadProperties(conf);
+ Properties conf = loadProperties();
this.globalContext = TopiaContextFactory.getContext(conf);
this.init = true;
@@ -172,7 +171,7 @@
* @throws java.io.IOException
* @throws java.net.URISyntaxException
*/
- protected abstract Properties loadProperties(Properties props) throws IOException, URISyntaxException;
+ protected abstract Properties loadProperties() throws IOException, URISyntaxException;
/**
* Chargement d'un fichier de propriété
1
0
r1439 - topia/trunk/topia-persistence/src/main/java/org/codelutin/topia
by fdesbois@users.labs.libre-entreprise.org 29 Apr '09
by fdesbois@users.labs.libre-entreprise.org 29 Apr '09
29 Apr '09
Author: fdesbois
Date: 2009-04-29 15:09:16 +0000 (Wed, 29 Apr 2009)
New Revision: 1439
Modified:
topia/trunk/topia-persistence/src/main/java/org/codelutin/topia/ContextUtil.java
Log:
Ajout retour a la methode loadProperties
Modified: topia/trunk/topia-persistence/src/main/java/org/codelutin/topia/ContextUtil.java
===================================================================
--- topia/trunk/topia-persistence/src/main/java/org/codelutin/topia/ContextUtil.java 2009-04-28 16:28:49 UTC (rev 1438)
+++ topia/trunk/topia-persistence/src/main/java/org/codelutin/topia/ContextUtil.java 2009-04-29 15:09:16 UTC (rev 1439)
@@ -144,7 +144,7 @@
}
Properties conf = new Properties();
try {
- loadProperties(conf);
+ conf = loadProperties(conf);
this.globalContext = TopiaContextFactory.getContext(conf);
this.init = true;
@@ -172,7 +172,7 @@
* @throws java.io.IOException
* @throws java.net.URISyntaxException
*/
- protected abstract void loadProperties(Properties props) throws IOException, URISyntaxException;
+ protected abstract Properties loadProperties(Properties props) throws IOException, URISyntaxException;
/**
* Chargement d'un fichier de propriété
1
0
r1438 - topia/trunk/topia-persistence/src/main/java/org/codelutin/topia
by fdesbois@users.labs.libre-entreprise.org 28 Apr '09
by fdesbois@users.labs.libre-entreprise.org 28 Apr '09
28 Apr '09
Author: fdesbois
Date: 2009-04-28 16:28:49 +0000 (Tue, 28 Apr 2009)
New Revision: 1438
Added:
topia/trunk/topia-persistence/src/main/java/org/codelutin/topia/ContextUtil.java
Log:
Outil pour faciliter la manipulation des transactions Topia ainsi que le chargement des propri?\195?\169t?\195?\169s
Added: topia/trunk/topia-persistence/src/main/java/org/codelutin/topia/ContextUtil.java
===================================================================
--- topia/trunk/topia-persistence/src/main/java/org/codelutin/topia/ContextUtil.java (rev 0)
+++ topia/trunk/topia-persistence/src/main/java/org/codelutin/topia/ContextUtil.java 2009-04-28 16:28:49 UTC (rev 1438)
@@ -0,0 +1,261 @@
+/* *##% ToPIA - Tools for Portable and Independent Architecture
+ * Copyright (C) 2004 - 2008 CodeLutin
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation, either version 3 of the
+ * License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Lesser Public License for more details.
+ *
+ * You should have received a copy of the GNU General Lesser Public
+ * License along with this program. If not, see
+ * <http://www.gnu.org/licenses/lgpl-3.0.html>. ##%*/
+
+package org.codelutin.topia;
+
+import java.io.IOException;
+import java.net.URISyntaxException;
+import java.net.URL;
+import java.util.Properties;
+
+import org.apache.commons.logging.Log;
+import org.apache.commons.logging.LogFactory;
+import org.codelutin.util.Resource;
+
+ /**
+ * ContextUtil.java
+ *
+ * Created: 17 avril 2009
+ *
+ * @author fdesbois <fdesbois(a)codelutin.com>
+ * @version $Revision: 1334 $
+ *
+ * Outil pour la manipulation de la base de données et des contextes Topia
+ * Utilisation recommandé (Patron Singleton) :
+ * -------------------------------------------
+ *
+ * public ContextUtilProject extends ContextUtil {
+ *
+ * private static ContextUtil instance = null;
+ *
+ * public static ContextUtil getInstance() {
+ * if(instance == null) {
+ * instance = new ContextUtilProject();
+ * }
+ * return instance;
+ * }
+ *
+ * private ContextUtilProject() {
+ * super(ContextUtilProject.class);
+ * }
+ *
+ * @Override
+ * public void loadProperties(Properties props) throws IOException, URISyntaxException {
+ * loadFileProperties("TopiaContextImpl.properties",props);
+ * props.setProperty("topia.persistence.classes", ProjectModelDAOHelper.getImplementationClassesAsString());
+ * }
+ *
+ * @Override // Initialisation BD à chaque création du contexte global
+ * protected void initDB() throws TopiaException {
+ *
+ * }
+ *
+ * }
+ *
+ * Utilisation de la transaction courante :
+ * ----------------------------------------
+ *
+ * // Déclaration du contexte
+ * ContextUtil context = ContextUtilProject.getInstance();
+ *
+ * // Récupération du dao avec transaction courante
+ * ObjectDAO dao = ProjectModelDAOHelper.getObjectDAO(context.transaction());
+ *
+ * ... // traitement avec dao
+ *
+ * context.commit();
+ *
+ * ... // traitement avec dao
+ *
+ * context.commit();
+ *
+ * context.close();
+ *
+ * Utilisation dans les tests unitaires :
+ * ------------------------------------
+ *
+ * @BeforeClass
+ * public static void setUpClass() throws Exception {
+ * ContextUtilProject.getInstance().init();
+ * }
+ *
+ * @AfterClass
+ * public static void tearDownClass() throws Exception {
+ * ContextUtilProject.getInstance().disconnect();
+ * }
+ */
+public abstract class ContextUtil {
+
+ /**
+ * Vérifie l'initialisation
+ */
+ private boolean init;
+
+ private static Log log = LogFactory.getLog(ContextUtil.class);
+
+ /**
+ * Contexte global
+ */
+ private TopiaContext globalContext;
+
+ /**
+ * Transaction courante
+ */
+ private TopiaContext currTransaction;
+
+ /**
+ * Constructeur avec Class correspondant à la sous-classe qui hérite de ContextUtil
+ * @param current
+ */
+ protected ContextUtil(Class current) {
+ ContextUtil.log = LogFactory.getLog(current);
+ init();
+ }
+
+ protected ContextUtil() {
+ init();
+ }
+
+ /**
+ * Initialisation du TopiaContext global
+ * loadProperties est définit par les sous-classes pour
+ * charger le fichier de configuration et les classes pour Hibernate
+ * Une initialisation de la base de données est possible via la méthode
+ * initDB() à redéfinir par les sous-classes
+ */
+ public void init() {
+ if (!this.init) {
+ if (log.isInfoEnabled()) {
+ log.info("Initialize of TopiaContext...");
+ }
+ Properties conf = new Properties();
+ try {
+ loadProperties(conf);
+
+ this.globalContext = TopiaContextFactory.getContext(conf);
+ this.init = true;
+ if (log.isInfoEnabled()) {
+ log.info("Context Ready ! Initialize DB if needed...");
+ }
+ this.initDB();
+ } catch (Exception ex) {
+ log.error("Initialize error !!",ex);
+ }
+ }
+ }
+
+ /**
+ * Initialisation de la base de données à redéfinir
+ * @throws org.codelutin.topia.TopiaException
+ */
+ protected void initDB() throws TopiaException {
+
+ }
+
+ /**
+ * Chargement du ou des fichiers de propriétés nécessaires à Topia
+ * @param props
+ * @throws java.io.IOException
+ * @throws java.net.URISyntaxException
+ */
+ protected abstract void loadProperties(Properties props) throws IOException, URISyntaxException;
+
+ /**
+ * Chargement d'un fichier de propriété
+ * @param filename nom du fichier
+ * @param props propriétés à charger
+ * @throws java.net.URISyntaxException
+ * @throws java.io.IOException
+ */
+ protected void loadFileProperties(String filename, Properties props)
+ throws URISyntaxException, IOException {
+ URL url = Resource.getURL(filename);
+ if (log.isDebugEnabled()) {
+ log.debug(url);
+ }
+ props.load(url.openStream());
+ }
+
+ public boolean isInit() {
+ return this.init;
+ }
+
+ /**
+ * Retourne le contexte global pour créer les transactions
+ * @return Le contexte global
+ */
+ public TopiaContext getContext() {
+ if (!this.init) {
+ this.init();
+ }
+ return this.globalContext;
+ }
+
+ /**
+ * Fermeture de la connexion à la BD
+ */
+ public void disconnect() {
+ try {
+ if (this.init) {
+ this.globalContext.closeContext();
+ if (log.isInfoEnabled()) {
+ log.info("Context closed");
+ }
+ this.init = false;
+ }
+ } catch (TopiaException ex) {
+ log.error("Disconnect error !!",ex);
+ }
+ }
+
+ /**
+ * Récupération transaction courante (ou création)
+ * @return
+ * @throws org.codelutin.topia.TopiaException
+ */
+ public TopiaContext transaction() throws TopiaException {
+ if (!this.init) {
+ this.init();
+ }
+ if (this.currTransaction == null || this.currTransaction.isClosed()) {
+ this.currTransaction = this.globalContext.beginTransaction();
+ }
+ return this.currTransaction;
+ }
+
+ /**
+ * Commit de la transaction courante
+ * @throws org.codelutin.topia.TopiaException
+ */
+ public void commit() throws TopiaException {
+ this.transaction().commitTransaction();
+ }
+
+ public void rollback() throws TopiaException {
+ this.transaction().rollbackTransaction();
+ }
+
+ /**
+ * Fermeture de la transaction courante
+ * @throws org.codelutin.topia.TopiaException
+ */
+ public void close() throws TopiaException {
+ if (this.init && this.currTransaction != null) {
+ this.currTransaction.closeContext();
+ }
+ }
+}
1
0
r1437 - topia/trunk/topia-persistence/src/main/java/org/codelutin/topia/generator
by tchemit@users.labs.libre-entreprise.org 21 Apr '09
by tchemit@users.labs.libre-entreprise.org 21 Apr '09
21 Apr '09
Author: tchemit
Date: 2009-04-21 09:15:55 +0000 (Tue, 21 Apr 2009)
New Revision: 1437
Modified:
topia/trunk/topia-persistence/src/main/java/org/codelutin/topia/generator/BeanGenerator.java
Log:
ajout commentaires
Modified: topia/trunk/topia-persistence/src/main/java/org/codelutin/topia/generator/BeanGenerator.java
===================================================================
--- topia/trunk/topia-persistence/src/main/java/org/codelutin/topia/generator/BeanGenerator.java 2009-04-20 14:39:09 UTC (rev 1436)
+++ topia/trunk/topia-persistence/src/main/java/org/codelutin/topia/generator/BeanGenerator.java 2009-04-21 09:15:55 UTC (rev 1437)
@@ -77,6 +77,9 @@
if (!clazz.hasStereotype(TopiaGeneratorUtil.STEREOTYPE_BEAN)) {
return;
}
+ //
+ // première phase : calcul des variables
+ //
String copyright = TopiaGeneratorUtil.getCopyright(model);
String clazzName = clazz.getName();
String abstractStr = isAbstract(clazz)?"abstract ":" ";
@@ -154,6 +157,11 @@
java.util.Collections.sort(attributes,comp);
java.util.Collections.sort(multipleAttr,comp);
}
+
+ //
+ // seconde phase : génération
+ //
+
if (TopiaGeneratorUtil.notEmpty(copyright)) {
/*{<%=copyright%>
}*/
1
0
r1436 - in topia/trunk: . topia-persistence topia-soa topia-ui
by tchemit@users.labs.libre-entreprise.org 20 Apr '09
by tchemit@users.labs.libre-entreprise.org 20 Apr '09
20 Apr '09
Author: tchemit
Date: 2009-04-20 14:39:09 +0000 (Mon, 20 Apr 2009)
New Revision: 1436
Modified:
topia/trunk/pom.xml
topia/trunk/topia-persistence/pom.xml
topia/trunk/topia-soa/pom.xml
topia/trunk/topia-ui/pom.xml
Log:
push back generic scm values
Modified: topia/trunk/pom.xml
===================================================================
--- topia/trunk/pom.xml 2009-04-20 14:19:29 UTC (rev 1435)
+++ topia/trunk/pom.xml 2009-04-20 14:39:09 UTC (rev 1436)
@@ -247,9 +247,9 @@
<!-- *** Build Environment ************************************** -->
<!-- ************************************************************* -->
<scm>
- <connection>scm:svn:svn://anonymous@labs.libre-entreprise.org/svnroot/topia/topia/trunk</connection>
- <developerConnection>scm:svn:svn+ssh://tchemit@labs.libre-entreprise.org/svnroot/topia/topia/trunk</developerConnection>
- <url>http://labs.libre-entreprise.org/plugins/scmsvn/viewcvs.php/topia/trunk/?ro…</url>
+ <connection>${maven.scm.connection}</connection>
+ <developerConnection>${maven.scm.developerConnection}</developerConnection>
+ <url>${maven.scm.url}</url>
</scm>
<!--Code Lutin Repository-->
Modified: topia/trunk/topia-persistence/pom.xml
===================================================================
--- topia/trunk/topia-persistence/pom.xml 2009-04-20 14:19:29 UTC (rev 1435)
+++ topia/trunk/topia-persistence/pom.xml 2009-04-20 14:39:09 UTC (rev 1436)
@@ -130,9 +130,9 @@
<!-- *** Build Environment ************************************** -->
<!-- ************************************************************* -->
<scm>
- <url>http://labs.libre-entreprise.org/plugins/scmsvn/viewcvs.php/topia/trunk/top…</url>
- <connection>scm:svn:svn://anonymous@labs.libre-entreprise.org/svnroot/topia/topia/trunk/topia-persistence</connection>
- <developerConnection>scm:svn:svn+ssh://tchemit@labs.libre-entreprise.org/svnroot/topia/topia/trunk/topia-persistence</developerConnection>
+ <connection>${maven.scm.connection.child}</connection>
+ <developerConnection>${maven.scm.developerConnection.child}</developerConnection>
+ <url>${maven.scm.url.child}</url>
</scm>
Modified: topia/trunk/topia-soa/pom.xml
===================================================================
--- topia/trunk/topia-soa/pom.xml 2009-04-20 14:19:29 UTC (rev 1435)
+++ topia/trunk/topia-soa/pom.xml 2009-04-20 14:39:09 UTC (rev 1436)
@@ -134,9 +134,9 @@
<!-- *** Build Environment ************************************** -->
<!-- ************************************************************* -->
<scm>
- <url>http://labs.libre-entreprise.org/plugins/scmsvn/viewcvs.php/topia/trunk/top…</url>
- <connection>scm:svn:svn://anonymous@labs.libre-entreprise.org/svnroot/topia/topia/trunk/topia-soa</connection>
- <developerConnection>scm:svn:svn+ssh://tchemit@labs.libre-entreprise.org/svnroot/topia/topia/trunk/topia-soa</developerConnection>
+ <connection>${maven.scm.connection.child}</connection>
+ <developerConnection>${maven.scm.developerConnection.child}</developerConnection>
+ <url>${maven.scm.url.child}</url>
</scm>
</project>
Modified: topia/trunk/topia-ui/pom.xml
===================================================================
--- topia/trunk/topia-ui/pom.xml 2009-04-20 14:19:29 UTC (rev 1435)
+++ topia/trunk/topia-ui/pom.xml 2009-04-20 14:39:09 UTC (rev 1436)
@@ -107,9 +107,9 @@
<!-- *** Build Environment ************************************** -->
<!-- ************************************************************* -->
<scm>
- <url>http://labs.libre-entreprise.org/plugins/scmsvn/viewcvs.php/topia/trunk/top…</url>
- <connection>scm:svn:svn://anonymous@labs.libre-entreprise.org/svnroot/topia/topia/trunk/topia-ui</connection>
- <developerConnection>scm:svn:svn+ssh://tchemit@labs.libre-entreprise.org/svnroot/topia/topia/trunk/topia-ui</developerConnection>
+ <connection>${maven.scm.connection.child}</connection>
+ <developerConnection>${maven.scm.developerConnection.child}</developerConnection>
+ <url>${maven.scm.url.child}</url>
</scm>
</project>
1
0
r1435 - in topia/trunk: . topia-persistence topia-soa topia-ui
by tchemit@users.labs.libre-entreprise.org 20 Apr '09
by tchemit@users.labs.libre-entreprise.org 20 Apr '09
20 Apr '09
Author: tchemit
Date: 2009-04-20 14:19:29 +0000 (Mon, 20 Apr 2009)
New Revision: 1435
Modified:
topia/trunk/pom.xml
topia/trunk/topia-persistence/pom.xml
topia/trunk/topia-soa/pom.xml
topia/trunk/topia-ui/pom.xml
Log:
[maven-release-plugin] prepare for next development iteration
Modified: topia/trunk/pom.xml
===================================================================
--- topia/trunk/pom.xml 2009-04-20 14:19:26 UTC (rev 1434)
+++ topia/trunk/pom.xml 2009-04-20 14:19:29 UTC (rev 1435)
@@ -13,7 +13,7 @@
</parent>
<artifactId>topia</artifactId>
- <version>2.1.5</version>
+ <version>2.1.6-SNAPSHOT</version>
<modules>
<module>topia-persistence</module>
@@ -247,9 +247,9 @@
<!-- *** Build Environment ************************************** -->
<!-- ************************************************************* -->
<scm>
- <connection>scm:svn:svn://anonymous@labs.libre-entreprise.org/svnroot/topia/topia/tags/2.1.5</connection>
- <developerConnection>scm:svn:svn+ssh://tchemit@labs.libre-entreprise.org/svnroot/topia/topia/tags/2.1.5</developerConnection>
- <url>http://labs.libre-entreprise.org/plugins/scmsvn/viewcvs.php/topia/tags/2.1.…</url>
+ <connection>scm:svn:svn://anonymous@labs.libre-entreprise.org/svnroot/topia/topia/trunk</connection>
+ <developerConnection>scm:svn:svn+ssh://tchemit@labs.libre-entreprise.org/svnroot/topia/topia/trunk</developerConnection>
+ <url>http://labs.libre-entreprise.org/plugins/scmsvn/viewcvs.php/topia/trunk/?ro…</url>
</scm>
<!--Code Lutin Repository-->
Modified: topia/trunk/topia-persistence/pom.xml
===================================================================
--- topia/trunk/topia-persistence/pom.xml 2009-04-20 14:19:26 UTC (rev 1434)
+++ topia/trunk/topia-persistence/pom.xml 2009-04-20 14:19:29 UTC (rev 1435)
@@ -10,7 +10,7 @@
<parent>
<groupId>org.codelutin</groupId>
<artifactId>topia</artifactId>
- <version>2.1.5</version>
+ <version>2.1.6-SNAPSHOT</version>
</parent>
<groupId>org.codelutin.topia</groupId>
@@ -130,9 +130,9 @@
<!-- *** Build Environment ************************************** -->
<!-- ************************************************************* -->
<scm>
- <url>http://labs.libre-entreprise.org/plugins/scmsvn/viewcvs.php/topia/tags/2.1.…</url>
- <connection>scm:svn:svn://anonymous@labs.libre-entreprise.org/svnroot/topia/topia/tags/2.1.5/topia-persistence</connection>
- <developerConnection>scm:svn:svn+ssh://tchemit@labs.libre-entreprise.org/svnroot/topia/topia/tags/2.1.5/topia-persistence</developerConnection>
+ <url>http://labs.libre-entreprise.org/plugins/scmsvn/viewcvs.php/topia/trunk/top…</url>
+ <connection>scm:svn:svn://anonymous@labs.libre-entreprise.org/svnroot/topia/topia/trunk/topia-persistence</connection>
+ <developerConnection>scm:svn:svn+ssh://tchemit@labs.libre-entreprise.org/svnroot/topia/topia/trunk/topia-persistence</developerConnection>
</scm>
Modified: topia/trunk/topia-soa/pom.xml
===================================================================
--- topia/trunk/topia-soa/pom.xml 2009-04-20 14:19:26 UTC (rev 1434)
+++ topia/trunk/topia-soa/pom.xml 2009-04-20 14:19:29 UTC (rev 1435)
@@ -10,7 +10,7 @@
<parent>
<groupId>org.codelutin</groupId>
<artifactId>topia</artifactId>
- <version>2.1.5</version>
+ <version>2.1.6-SNAPSHOT</version>
</parent>
<groupId>org.codelutin.topia</groupId>
@@ -134,9 +134,9 @@
<!-- *** Build Environment ************************************** -->
<!-- ************************************************************* -->
<scm>
- <url>http://labs.libre-entreprise.org/plugins/scmsvn/viewcvs.php/topia/tags/2.1.…</url>
- <connection>scm:svn:svn://anonymous@labs.libre-entreprise.org/svnroot/topia/topia/tags/2.1.5/topia-soa</connection>
- <developerConnection>scm:svn:svn+ssh://tchemit@labs.libre-entreprise.org/svnroot/topia/topia/tags/2.1.5/topia-soa</developerConnection>
+ <url>http://labs.libre-entreprise.org/plugins/scmsvn/viewcvs.php/topia/trunk/top…</url>
+ <connection>scm:svn:svn://anonymous@labs.libre-entreprise.org/svnroot/topia/topia/trunk/topia-soa</connection>
+ <developerConnection>scm:svn:svn+ssh://tchemit@labs.libre-entreprise.org/svnroot/topia/topia/trunk/topia-soa</developerConnection>
</scm>
</project>
Modified: topia/trunk/topia-ui/pom.xml
===================================================================
--- topia/trunk/topia-ui/pom.xml 2009-04-20 14:19:26 UTC (rev 1434)
+++ topia/trunk/topia-ui/pom.xml 2009-04-20 14:19:29 UTC (rev 1435)
@@ -10,7 +10,7 @@
<parent>
<groupId>org.codelutin</groupId>
<artifactId>topia</artifactId>
- <version>2.1.5</version>
+ <version>2.1.6-SNAPSHOT</version>
</parent>
<groupId>org.codelutin.topia</groupId>
@@ -107,9 +107,9 @@
<!-- *** Build Environment ************************************** -->
<!-- ************************************************************* -->
<scm>
- <url>http://labs.libre-entreprise.org/plugins/scmsvn/viewcvs.php/topia/tags/2.1.…</url>
- <connection>scm:svn:svn://anonymous@labs.libre-entreprise.org/svnroot/topia/topia/tags/2.1.5/topia-ui</connection>
- <developerConnection>scm:svn:svn+ssh://tchemit@labs.libre-entreprise.org/svnroot/topia/topia/tags/2.1.5/topia-ui</developerConnection>
+ <url>http://labs.libre-entreprise.org/plugins/scmsvn/viewcvs.php/topia/trunk/top…</url>
+ <connection>scm:svn:svn://anonymous@labs.libre-entreprise.org/svnroot/topia/topia/trunk/topia-ui</connection>
+ <developerConnection>scm:svn:svn+ssh://tchemit@labs.libre-entreprise.org/svnroot/topia/topia/trunk/topia-ui</developerConnection>
</scm>
</project>
1
0
r1434 - in topia/tags: . 2.1.5 2.1.5/topia-persistence 2.1.5/topia-soa 2.1.5/topia-ui
by tchemit@users.labs.libre-entreprise.org 20 Apr '09
by tchemit@users.labs.libre-entreprise.org 20 Apr '09
20 Apr '09
Author: tchemit
Date: 2009-04-20 14:19:26 +0000 (Mon, 20 Apr 2009)
New Revision: 1434
Added:
topia/tags/2.1.5/
topia/tags/2.1.5/pom.xml
topia/tags/2.1.5/topia-persistence/pom.xml
topia/tags/2.1.5/topia-soa/pom.xml
topia/tags/2.1.5/topia-ui/pom.xml
Removed:
topia/tags/2.1.5/pom.xml
topia/tags/2.1.5/topia-persistence/pom.xml
topia/tags/2.1.5/topia-soa/pom.xml
topia/tags/2.1.5/topia-ui/pom.xml
Log:
[maven-release-plugin] copy for tag 2.1.5
Copied: topia/tags/2.1.5 (from rev 1432, topia/trunk)
Deleted: topia/tags/2.1.5/pom.xml
===================================================================
--- topia/trunk/pom.xml 2009-04-20 14:16:36 UTC (rev 1432)
+++ topia/tags/2.1.5/pom.xml 2009-04-20 14:19:26 UTC (rev 1434)
@@ -1,304 +0,0 @@
-<?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/xsd/maven-4.0.0.xsd">
-
- <modelVersion>4.0.0</modelVersion>
-
- <!-- ************************************************************* -->
- <!-- *** POM Relationships *************************************** -->
- <!-- ************************************************************* -->
- <parent>
- <groupId>org.codelutin</groupId>
- <artifactId>lutinproject</artifactId>
- <version>3.5.3</version>
- </parent>
-
- <artifactId>topia</artifactId>
- <version>2.1.5-SNAPSHOT</version>
-
- <modules>
- <module>topia-persistence</module>
- <module>topia-soa</module>
- <module>topia-ui</module>
- </modules>
-
- <dependencyManagement>
- <dependencies>
-
- <dependency>
- <groupId>org.codelutin</groupId>
- <artifactId>lutingenerator</artifactId>
- <version>${generator.version}</version>
- <scope>provided</scope>
- </dependency>
-
- <dependency>
- <groupId>org.codelutin</groupId>
- <artifactId>lutinutil</artifactId>
- <version>${lutinutil.version}</version>
- <scope>compile</scope>
- </dependency>
-
- <dependency>
- <groupId>org.apache.xmlrpc</groupId>
- <artifactId>xmlrpc-server</artifactId>
- <version>${xmlrpc.version}</version>
- <scope>compile</scope>
-
- </dependency>
- <dependency>
- <groupId>org.apache.xmlrpc</groupId>
- <artifactId>xmlrpc-client</artifactId>
- <version>${xmlrpc.version}</version>
- <scope>compile</scope>
- </dependency>
-
- <dependency>
- <groupId>commons-collections</groupId>
- <artifactId>commons-collections</artifactId>
- <version>3.2.1</version>
- <scope>compile</scope>
- </dependency>
-
- <dependency>
- <groupId>org.hibernate</groupId>
- <artifactId>hibernate-core</artifactId>
- <version>${hibernate.version}</version>
- <scope>compile</scope>
- </dependency>
-
- <dependency>
- <groupId>org.apache.tapestry</groupId>
- <artifactId>tapestry-core</artifactId>
- <version>5.0.18</version>
- <scope>compile</scope>
- </dependency>
-
- <!-- Dependencies for class generation -->
- <dependency>
- <groupId>asm</groupId>
- <artifactId>asm</artifactId>
- <version>1.5.3</version>
- <scope>compile</scope>
- </dependency>
- <dependency>
- <groupId>xom</groupId>
- <artifactId>xom</artifactId>
- <version>1.1</version>
- </dependency>
- <dependency>
- <groupId>org.codehaus.xfire</groupId>
- <artifactId>xfire-java5</artifactId>
- <version>1.2.6</version>
- <scope>compile</scope>
- <exclusions>
- <!-- Fix org.apache.ant conflict) -->
- <exclusion>
- <groupId>ant</groupId>
- <artifactId>ant</artifactId>
- </exclusion>
- </exclusions>
- </dependency>
-
- <dependency>
- <groupId>commons-httpclient</groupId>
- <artifactId>commons-httpclient</artifactId>
- <version>3.1</version>
- <scope>runtime</scope>
- </dependency>
-
- <dependency>
- <groupId>org.hibernate</groupId>
- <artifactId>hibernate-ehcache</artifactId>
- <version>${hibernate.version}</version>
- <scope>runtime</scope>
- </dependency>
-
- <dependency>
- <groupId>javassist</groupId>
- <artifactId>javassist</artifactId>
- <version>3.4.GA</version>
- <scope>runtime</scope>
- </dependency>
-
- <!-- hibernate-core only include api, need core -->
- <dependency>
- <groupId>org.slf4j</groupId>
- <artifactId>slf4j-log4j12</artifactId>
- <version>1.5.2</version>
- <scope>runtime</scope>
- </dependency>
-
- <!-- BD H2 for testing -->
- <dependency>
- <groupId>com.h2database</groupId>
- <artifactId>h2</artifactId>
- <version>1.1.111</version>
- <scope>test</scope>
- </dependency>
-
- <!-- branch 5.1 : ne fonctionne pas en 6+ -->
- <dependency>
- <groupId>jetty</groupId>
- <artifactId>jetty</artifactId>
- <version>5.1.10</version>
- <scope>test</scope>
- </dependency>
-
- </dependencies>
- </dependencyManagement>
-
- <!-- ************************************************************* -->
- <!-- *** Project Information ************************************* -->
- <!-- ************************************************************* -->
- <name>ToPIA - Tools for Portable and Independent Architecture</name>
- <description>Framework de persistance et de distribution d'application.</description>
- <inceptionYear>2004</inceptionYear>
-
- <!-- ************************************************************* -->
- <!-- *** Build Settings ****************************************** -->
- <!-- ************************************************************* -->
-
- <packaging>pom</packaging>
-
- <properties>
- <!-- id du projet du labs -->
- <labs.id>21</labs.id>
-
- <!-- nom du projet sur le labs -->
- <labs.project>topia</labs.project>
-
- <!-- libs version -->
- <generator.version>0.64</generator.version>
- <processor.version>0.17</processor.version>
- <lutinutil.version>1.0.4</lutinutil.version>
- <license-switcher.version>0.7</license-switcher.version>
- <topia.version>${project.version}</topia.version>
-
- <xmlrpc.version>3.1</xmlrpc.version>
- <hibernate.version>3.3.1.GA</hibernate.version>
- </properties>
-
- <build>
-
- <defaultGoal>install</defaultGoal>
-
- <pluginManagement>
- <plugins>
-
- <plugin>
- <groupId>org.codelutin</groupId>
- <artifactId>maven-processor-plugin</artifactId>
- <version>${processor.version}</version>
- <executions>
- <execution>
- <phase>generate-sources</phase>
- <goals>
- <goal>process</goal>
- </goals>
- </execution>
- </executions>
- <configuration>
- <addCompileDirectory>true</addCompileDirectory>
- <includes>
- <include>**/*.java</include>
- </includes>
- <filters>
- org.codelutin.processor.filters.GeneratorTemplatesFilter,
- org.codelutin.processor.filters.ActiveLogsCodeFilter
- </filters>
- <verbose>${maven.verbose}</verbose>
- </configuration>
- </plugin>
-
- <plugin>
- <groupId>org.codelutin</groupId>
- <artifactId>maven-generator-plugin</artifactId>
- <version>${generator.version}</version>
- <inherited>true</inherited>
- <configuration>
- <srcDirZuml>${maven.src.dir}/test/xmi</srcDirZuml>
- <srcXmiDest>${maven.test.gen.dir}/xmi</srcXmiDest>
- <srcGenDest>${maven.test.gen.dir}/models</srcGenDest>
- <destDirGen>${maven.test.gen.dir}/java</destDirGen>
- </configuration>
- </plugin>
-
- <plugin>
- <artifactId>maven-site-plugin</artifactId>
- <configuration>
- <locales>fr</locales>
- <siteDirectory>src/site</siteDirectory>
- </configuration>
- <dependencies>
- <dependency>
- <groupId>org.codelutin</groupId>
- <artifactId>doxia-module-jrst</artifactId>
- <version>1.0.0</version>
- </dependency>
- </dependencies>
- </plugin>
-
- </plugins>
- </pluginManagement>
-
- </build>
-
- <!-- ************************************************************* -->
- <!-- *** Build Environment ************************************** -->
- <!-- ************************************************************* -->
- <scm>
- <connection>${maven.scm.connection}</connection>
- <developerConnection>${maven.scm.developerConnection}</developerConnection>
- <url>${maven.scm.url}</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>
Copied: topia/tags/2.1.5/pom.xml (from rev 1433, topia/trunk/pom.xml)
===================================================================
--- topia/tags/2.1.5/pom.xml (rev 0)
+++ topia/tags/2.1.5/pom.xml 2009-04-20 14:19:26 UTC (rev 1434)
@@ -0,0 +1,304 @@
+<?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/xsd/maven-4.0.0.xsd">
+
+ <modelVersion>4.0.0</modelVersion>
+
+ <!-- ************************************************************* -->
+ <!-- *** POM Relationships *************************************** -->
+ <!-- ************************************************************* -->
+ <parent>
+ <groupId>org.codelutin</groupId>
+ <artifactId>lutinproject</artifactId>
+ <version>3.5.3</version>
+ </parent>
+
+ <artifactId>topia</artifactId>
+ <version>2.1.5</version>
+
+ <modules>
+ <module>topia-persistence</module>
+ <module>topia-soa</module>
+ <module>topia-ui</module>
+ </modules>
+
+ <dependencyManagement>
+ <dependencies>
+
+ <dependency>
+ <groupId>org.codelutin</groupId>
+ <artifactId>lutingenerator</artifactId>
+ <version>${generator.version}</version>
+ <scope>provided</scope>
+ </dependency>
+
+ <dependency>
+ <groupId>org.codelutin</groupId>
+ <artifactId>lutinutil</artifactId>
+ <version>${lutinutil.version}</version>
+ <scope>compile</scope>
+ </dependency>
+
+ <dependency>
+ <groupId>org.apache.xmlrpc</groupId>
+ <artifactId>xmlrpc-server</artifactId>
+ <version>${xmlrpc.version}</version>
+ <scope>compile</scope>
+
+ </dependency>
+ <dependency>
+ <groupId>org.apache.xmlrpc</groupId>
+ <artifactId>xmlrpc-client</artifactId>
+ <version>${xmlrpc.version}</version>
+ <scope>compile</scope>
+ </dependency>
+
+ <dependency>
+ <groupId>commons-collections</groupId>
+ <artifactId>commons-collections</artifactId>
+ <version>3.2.1</version>
+ <scope>compile</scope>
+ </dependency>
+
+ <dependency>
+ <groupId>org.hibernate</groupId>
+ <artifactId>hibernate-core</artifactId>
+ <version>${hibernate.version}</version>
+ <scope>compile</scope>
+ </dependency>
+
+ <dependency>
+ <groupId>org.apache.tapestry</groupId>
+ <artifactId>tapestry-core</artifactId>
+ <version>5.0.18</version>
+ <scope>compile</scope>
+ </dependency>
+
+ <!-- Dependencies for class generation -->
+ <dependency>
+ <groupId>asm</groupId>
+ <artifactId>asm</artifactId>
+ <version>1.5.3</version>
+ <scope>compile</scope>
+ </dependency>
+ <dependency>
+ <groupId>xom</groupId>
+ <artifactId>xom</artifactId>
+ <version>1.1</version>
+ </dependency>
+ <dependency>
+ <groupId>org.codehaus.xfire</groupId>
+ <artifactId>xfire-java5</artifactId>
+ <version>1.2.6</version>
+ <scope>compile</scope>
+ <exclusions>
+ <!-- Fix org.apache.ant conflict) -->
+ <exclusion>
+ <groupId>ant</groupId>
+ <artifactId>ant</artifactId>
+ </exclusion>
+ </exclusions>
+ </dependency>
+
+ <dependency>
+ <groupId>commons-httpclient</groupId>
+ <artifactId>commons-httpclient</artifactId>
+ <version>3.1</version>
+ <scope>runtime</scope>
+ </dependency>
+
+ <dependency>
+ <groupId>org.hibernate</groupId>
+ <artifactId>hibernate-ehcache</artifactId>
+ <version>${hibernate.version}</version>
+ <scope>runtime</scope>
+ </dependency>
+
+ <dependency>
+ <groupId>javassist</groupId>
+ <artifactId>javassist</artifactId>
+ <version>3.4.GA</version>
+ <scope>runtime</scope>
+ </dependency>
+
+ <!-- hibernate-core only include api, need core -->
+ <dependency>
+ <groupId>org.slf4j</groupId>
+ <artifactId>slf4j-log4j12</artifactId>
+ <version>1.5.2</version>
+ <scope>runtime</scope>
+ </dependency>
+
+ <!-- BD H2 for testing -->
+ <dependency>
+ <groupId>com.h2database</groupId>
+ <artifactId>h2</artifactId>
+ <version>1.1.111</version>
+ <scope>test</scope>
+ </dependency>
+
+ <!-- branch 5.1 : ne fonctionne pas en 6+ -->
+ <dependency>
+ <groupId>jetty</groupId>
+ <artifactId>jetty</artifactId>
+ <version>5.1.10</version>
+ <scope>test</scope>
+ </dependency>
+
+ </dependencies>
+ </dependencyManagement>
+
+ <!-- ************************************************************* -->
+ <!-- *** Project Information ************************************* -->
+ <!-- ************************************************************* -->
+ <name>ToPIA - Tools for Portable and Independent Architecture</name>
+ <description>Framework de persistance et de distribution d'application.</description>
+ <inceptionYear>2004</inceptionYear>
+
+ <!-- ************************************************************* -->
+ <!-- *** Build Settings ****************************************** -->
+ <!-- ************************************************************* -->
+
+ <packaging>pom</packaging>
+
+ <properties>
+ <!-- id du projet du labs -->
+ <labs.id>21</labs.id>
+
+ <!-- nom du projet sur le labs -->
+ <labs.project>topia</labs.project>
+
+ <!-- libs version -->
+ <generator.version>0.64</generator.version>
+ <processor.version>0.17</processor.version>
+ <lutinutil.version>1.0.4</lutinutil.version>
+ <license-switcher.version>0.7</license-switcher.version>
+ <topia.version>${project.version}</topia.version>
+
+ <xmlrpc.version>3.1</xmlrpc.version>
+ <hibernate.version>3.3.1.GA</hibernate.version>
+ </properties>
+
+ <build>
+
+ <defaultGoal>install</defaultGoal>
+
+ <pluginManagement>
+ <plugins>
+
+ <plugin>
+ <groupId>org.codelutin</groupId>
+ <artifactId>maven-processor-plugin</artifactId>
+ <version>${processor.version}</version>
+ <executions>
+ <execution>
+ <phase>generate-sources</phase>
+ <goals>
+ <goal>process</goal>
+ </goals>
+ </execution>
+ </executions>
+ <configuration>
+ <addCompileDirectory>true</addCompileDirectory>
+ <includes>
+ <include>**/*.java</include>
+ </includes>
+ <filters>
+ org.codelutin.processor.filters.GeneratorTemplatesFilter,
+ org.codelutin.processor.filters.ActiveLogsCodeFilter
+ </filters>
+ <verbose>${maven.verbose}</verbose>
+ </configuration>
+ </plugin>
+
+ <plugin>
+ <groupId>org.codelutin</groupId>
+ <artifactId>maven-generator-plugin</artifactId>
+ <version>${generator.version}</version>
+ <inherited>true</inherited>
+ <configuration>
+ <srcDirZuml>${maven.src.dir}/test/xmi</srcDirZuml>
+ <srcXmiDest>${maven.test.gen.dir}/xmi</srcXmiDest>
+ <srcGenDest>${maven.test.gen.dir}/models</srcGenDest>
+ <destDirGen>${maven.test.gen.dir}/java</destDirGen>
+ </configuration>
+ </plugin>
+
+ <plugin>
+ <artifactId>maven-site-plugin</artifactId>
+ <configuration>
+ <locales>fr</locales>
+ <siteDirectory>src/site</siteDirectory>
+ </configuration>
+ <dependencies>
+ <dependency>
+ <groupId>org.codelutin</groupId>
+ <artifactId>doxia-module-jrst</artifactId>
+ <version>1.0.0</version>
+ </dependency>
+ </dependencies>
+ </plugin>
+
+ </plugins>
+ </pluginManagement>
+
+ </build>
+
+ <!-- ************************************************************* -->
+ <!-- *** Build Environment ************************************** -->
+ <!-- ************************************************************* -->
+ <scm>
+ <connection>scm:svn:svn://anonymous@labs.libre-entreprise.org/svnroot/topia/topia/tags/2.1.5</connection>
+ <developerConnection>scm:svn:svn+ssh://tchemit@labs.libre-entreprise.org/svnroot/topia/topia/tags/2.1.5</developerConnection>
+ <url>http://labs.libre-entreprise.org/plugins/scmsvn/viewcvs.php/topia/tags/2.1.…</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>
Deleted: topia/tags/2.1.5/topia-persistence/pom.xml
===================================================================
--- topia/trunk/topia-persistence/pom.xml 2009-04-20 14:16:36 UTC (rev 1432)
+++ topia/tags/2.1.5/topia-persistence/pom.xml 2009-04-20 14:19:26 UTC (rev 1434)
@@ -1,139 +0,0 @@
-<?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/xsd/maven-4.0.0.xsd">
-
- <modelVersion>4.0.0</modelVersion>
-
- <!-- ************************************************************* -->
- <!-- *** POM Relationships *************************************** -->
- <!-- ************************************************************* -->
-
- <parent>
- <groupId>org.codelutin</groupId>
- <artifactId>topia</artifactId>
- <version>2.1.5-SNAPSHOT</version>
- </parent>
-
- <groupId>org.codelutin.topia</groupId>
- <artifactId>topia-persistence</artifactId>
-
- <dependencies>
-
- <dependency>
- <groupId>org.codelutin</groupId>
- <artifactId>lutinutil</artifactId>
- </dependency>
-
- <dependency>
- <groupId>org.codelutin</groupId>
- <artifactId>lutingenerator</artifactId>
- </dependency>
-
- <dependency>
- <groupId>commons-collections</groupId>
- <artifactId>commons-collections</artifactId>
- </dependency>
-
- <dependency>
- <groupId>org.hibernate</groupId>
- <artifactId>hibernate-core</artifactId>
- </dependency>
- <dependency>
- <groupId>org.hibernate</groupId>
- <artifactId>hibernate-ehcache</artifactId>
- </dependency>
-
- <dependency>
- <groupId>javassist</groupId>
- <artifactId>javassist</artifactId>
- </dependency>
-
- <dependency>
- <groupId>org.slf4j</groupId>
- <artifactId>slf4j-log4j12</artifactId>
- </dependency>
-
- <!-- BD H2 for testing -->
- <dependency>
- <groupId>com.h2database</groupId>
- <artifactId>h2</artifactId>
- </dependency>
- </dependencies>
-
- <!-- ************************************************************* -->
- <!-- *** Project Information ************************************* -->
- <!-- ************************************************************* -->
-
- <name>ToPIA - Persistence</name>
- <description>Hibernate based persistence module</description>
-
- <!-- ************************************************************* -->
- <!-- *** Build Settings ****************************************** -->
- <!-- ************************************************************* -->
-
- <packaging>jar</packaging>
-
- <build>
-
- <testResources>
-
- <testResource>
- <directory>${maven.test.gen.dir}/java</directory>
- <includes>
- <include>**/*.hbm.xml</include>
- </includes>
- </testResource>
-
- <testResource>
- <directory>${maven.test.gen.dir}/java</directory>
- <includes>
- <include>**/*.hbm.xml</include>
- </includes>
- </testResource>
-
- </testResources>
-
- <plugins>
-
- <plugin>
- <groupId>org.codelutin</groupId>
- <artifactId>maven-processor-plugin</artifactId>
- </plugin>
-
- <plugin>
- <groupId>org.codelutin</groupId>
- <artifactId>maven-generator-plugin</artifactId>
- <executions>
- <execution>
- <id>Test Generator</id>
- <phase>generate-test-sources</phase>
- <configuration>
- <testPhase>true</testPhase>
- <includes>**/*.objectmodel</includes>
- <templates>org.codelutin.topia.generator.TopiaMetaGenerator</templates>
- <fullPackagePath>org.codelutin.topia</fullPackagePath>
- <extractedPackages>org.codelutin.topia</extractedPackages>
- <defaultPackage>org.codelutin.topia</defaultPackage>
- <extraClassPathDirectory>target/classes</extraClassPathDirectory>
- </configuration>
- <goals>
- <goal>zargo2xmi</goal>
- <goal>xmi2objectmodel</goal>
- <goal>generate</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
-
- <!-- ************************************************************* -->
- <!-- *** Build Environment ************************************** -->
- <!-- ************************************************************* -->
- <scm>
- <url>${maven.scm.url.child}</url>
- <connection>${maven.scm.connection.child}</connection>
- <developerConnection>${maven.scm.developerConnection.child}</developerConnection>
- </scm>
-
-
-</project>
Copied: topia/tags/2.1.5/topia-persistence/pom.xml (from rev 1433, topia/trunk/topia-persistence/pom.xml)
===================================================================
--- topia/tags/2.1.5/topia-persistence/pom.xml (rev 0)
+++ topia/tags/2.1.5/topia-persistence/pom.xml 2009-04-20 14:19:26 UTC (rev 1434)
@@ -0,0 +1,139 @@
+<?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/xsd/maven-4.0.0.xsd">
+
+ <modelVersion>4.0.0</modelVersion>
+
+ <!-- ************************************************************* -->
+ <!-- *** POM Relationships *************************************** -->
+ <!-- ************************************************************* -->
+
+ <parent>
+ <groupId>org.codelutin</groupId>
+ <artifactId>topia</artifactId>
+ <version>2.1.5</version>
+ </parent>
+
+ <groupId>org.codelutin.topia</groupId>
+ <artifactId>topia-persistence</artifactId>
+
+ <dependencies>
+
+ <dependency>
+ <groupId>org.codelutin</groupId>
+ <artifactId>lutinutil</artifactId>
+ </dependency>
+
+ <dependency>
+ <groupId>org.codelutin</groupId>
+ <artifactId>lutingenerator</artifactId>
+ </dependency>
+
+ <dependency>
+ <groupId>commons-collections</groupId>
+ <artifactId>commons-collections</artifactId>
+ </dependency>
+
+ <dependency>
+ <groupId>org.hibernate</groupId>
+ <artifactId>hibernate-core</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.hibernate</groupId>
+ <artifactId>hibernate-ehcache</artifactId>
+ </dependency>
+
+ <dependency>
+ <groupId>javassist</groupId>
+ <artifactId>javassist</artifactId>
+ </dependency>
+
+ <dependency>
+ <groupId>org.slf4j</groupId>
+ <artifactId>slf4j-log4j12</artifactId>
+ </dependency>
+
+ <!-- BD H2 for testing -->
+ <dependency>
+ <groupId>com.h2database</groupId>
+ <artifactId>h2</artifactId>
+ </dependency>
+ </dependencies>
+
+ <!-- ************************************************************* -->
+ <!-- *** Project Information ************************************* -->
+ <!-- ************************************************************* -->
+
+ <name>ToPIA - Persistence</name>
+ <description>Hibernate based persistence module</description>
+
+ <!-- ************************************************************* -->
+ <!-- *** Build Settings ****************************************** -->
+ <!-- ************************************************************* -->
+
+ <packaging>jar</packaging>
+
+ <build>
+
+ <testResources>
+
+ <testResource>
+ <directory>${maven.test.gen.dir}/java</directory>
+ <includes>
+ <include>**/*.hbm.xml</include>
+ </includes>
+ </testResource>
+
+ <testResource>
+ <directory>${maven.test.gen.dir}/java</directory>
+ <includes>
+ <include>**/*.hbm.xml</include>
+ </includes>
+ </testResource>
+
+ </testResources>
+
+ <plugins>
+
+ <plugin>
+ <groupId>org.codelutin</groupId>
+ <artifactId>maven-processor-plugin</artifactId>
+ </plugin>
+
+ <plugin>
+ <groupId>org.codelutin</groupId>
+ <artifactId>maven-generator-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>Test Generator</id>
+ <phase>generate-test-sources</phase>
+ <configuration>
+ <testPhase>true</testPhase>
+ <includes>**/*.objectmodel</includes>
+ <templates>org.codelutin.topia.generator.TopiaMetaGenerator</templates>
+ <fullPackagePath>org.codelutin.topia</fullPackagePath>
+ <extractedPackages>org.codelutin.topia</extractedPackages>
+ <defaultPackage>org.codelutin.topia</defaultPackage>
+ <extraClassPathDirectory>target/classes</extraClassPathDirectory>
+ </configuration>
+ <goals>
+ <goal>zargo2xmi</goal>
+ <goal>xmi2objectmodel</goal>
+ <goal>generate</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
+
+ <!-- ************************************************************* -->
+ <!-- *** Build Environment ************************************** -->
+ <!-- ************************************************************* -->
+ <scm>
+ <url>http://labs.libre-entreprise.org/plugins/scmsvn/viewcvs.php/topia/tags/2.1.…</url>
+ <connection>scm:svn:svn://anonymous@labs.libre-entreprise.org/svnroot/topia/topia/tags/2.1.5/topia-persistence</connection>
+ <developerConnection>scm:svn:svn+ssh://tchemit@labs.libre-entreprise.org/svnroot/topia/topia/tags/2.1.5/topia-persistence</developerConnection>
+ </scm>
+
+
+</project>
Deleted: topia/tags/2.1.5/topia-soa/pom.xml
===================================================================
--- topia/trunk/topia-soa/pom.xml 2009-04-20 14:16:36 UTC (rev 1432)
+++ topia/tags/2.1.5/topia-soa/pom.xml 2009-04-20 14:19:26 UTC (rev 1434)
@@ -1,142 +0,0 @@
-<?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/xsd/maven-4.0.0.xsd">
-
- <modelVersion>4.0.0</modelVersion>
-
- <!-- ************************************************************* -->
- <!-- *** POM Relationships *************************************** -->
- <!-- ************************************************************* -->
-
- <parent>
- <groupId>org.codelutin</groupId>
- <artifactId>topia</artifactId>
- <version>2.1.5-SNAPSHOT</version>
- </parent>
-
- <groupId>org.codelutin.topia</groupId>
- <artifactId>topia-soa</artifactId>
-
- <dependencies>
-
- <!-- Sibling Dependencies -->
-
- <dependency>
- <groupId>${project.groupId}</groupId>
- <artifactId>topia-persistence</artifactId>
- <version>${project.version}</version>
- </dependency>
-
- <!-- lutin Dependencies -->
-
- <dependency>
- <groupId>org.codelutin</groupId>
- <artifactId>lutinutil</artifactId>
- </dependency>
-
- <dependency>
- <groupId>org.codelutin</groupId>
- <artifactId>lutingenerator</artifactId>
- </dependency>
-
- <!-- Dependencies for services -->
- <dependency>
- <groupId>org.apache.xmlrpc</groupId>
- <artifactId>xmlrpc-server</artifactId>
- </dependency>
-
- <dependency>
- <groupId>org.apache.xmlrpc</groupId>
- <artifactId>xmlrpc-client</artifactId>
- </dependency>
-
- <dependency>
- <groupId>commons-httpclient</groupId>
- <artifactId>commons-httpclient</artifactId>
- </dependency>
-
- <dependency>
- <groupId>org.codehaus.xfire</groupId>
- <artifactId>xfire-java5</artifactId>
- </dependency>
-
- <!-- Dependencies for tests -->
- <dependency>
- <groupId>jetty</groupId>
- <artifactId>jetty</artifactId>
- </dependency>
-
- <!-- Dependencies for class generation -->
- <dependency>
- <groupId>asm</groupId>
- <artifactId>asm</artifactId>
- </dependency>
-
- </dependencies>
-
- <!-- ************************************************************* -->
- <!-- *** Project Information ************************************* -->
- <!-- ************************************************************* -->
-
- <name>ToPIA - SOA</name>
- <description>Service Oriented Architecture module</description>
-
- <!-- ************************************************************* -->
- <!-- *** Build Settings ****************************************** -->
- <!-- ************************************************************* -->
-
- <packaging>jar</packaging>
-
- <build>
-
- <plugins>
-
- <plugin>
- <groupId>org.codelutin</groupId>
- <artifactId>maven-processor-plugin</artifactId>
- </plugin>
-
- <plugin>
- <groupId>org.codelutin</groupId>
- <artifactId>maven-generator-plugin</artifactId>
- <executions>
- <execution>
- <id>generate-objectmodel</id>
- <phase>generate-test-sources</phase>
- <configuration>
- <testPhase>true</testPhase>
- <fullPackagePath>org.codelutin.soatest</fullPackagePath>
- <extractedPackages>org.codelutin.soatest</extractedPackages>
- <defaultPackage>org.codelutin.soatest</defaultPackage>
- <includes>**/*.objectmodel</includes>
- <templates>org.codelutin.topia.generator.TopiaApplicationServiceMetaGenerator</templates>
- <extraClassPathDirectory>target/classes</extraClassPathDirectory>
- </configuration>
- <goals>
- <goal>zargo2xmi</goal>
- <goal>xmi2objectmodel</goal>
- <goal>generate</goal>
- </goals>
- </execution>
- </executions>
- <dependencies>
- <dependency>
- <groupId>${project.groupId}</groupId>
- <artifactId>topia-persistence</artifactId>
- <version>${project.version}</version>
- <scope>compile</scope>
- </dependency>
- </dependencies>
- </plugin>
- </plugins>
- </build>
-
- <!-- ************************************************************* -->
- <!-- *** Build Environment ************************************** -->
- <!-- ************************************************************* -->
- <scm>
- <url>${maven.scm.url.child}</url>
- <connection>${maven.scm.connection.child}</connection>
- <developerConnection>${maven.scm.developerConnection.child}</developerConnection>
- </scm>
-
-</project>
Copied: topia/tags/2.1.5/topia-soa/pom.xml (from rev 1433, topia/trunk/topia-soa/pom.xml)
===================================================================
--- topia/tags/2.1.5/topia-soa/pom.xml (rev 0)
+++ topia/tags/2.1.5/topia-soa/pom.xml 2009-04-20 14:19:26 UTC (rev 1434)
@@ -0,0 +1,142 @@
+<?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/xsd/maven-4.0.0.xsd">
+
+ <modelVersion>4.0.0</modelVersion>
+
+ <!-- ************************************************************* -->
+ <!-- *** POM Relationships *************************************** -->
+ <!-- ************************************************************* -->
+
+ <parent>
+ <groupId>org.codelutin</groupId>
+ <artifactId>topia</artifactId>
+ <version>2.1.5</version>
+ </parent>
+
+ <groupId>org.codelutin.topia</groupId>
+ <artifactId>topia-soa</artifactId>
+
+ <dependencies>
+
+ <!-- Sibling Dependencies -->
+
+ <dependency>
+ <groupId>${project.groupId}</groupId>
+ <artifactId>topia-persistence</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+
+ <!-- lutin Dependencies -->
+
+ <dependency>
+ <groupId>org.codelutin</groupId>
+ <artifactId>lutinutil</artifactId>
+ </dependency>
+
+ <dependency>
+ <groupId>org.codelutin</groupId>
+ <artifactId>lutingenerator</artifactId>
+ </dependency>
+
+ <!-- Dependencies for services -->
+ <dependency>
+ <groupId>org.apache.xmlrpc</groupId>
+ <artifactId>xmlrpc-server</artifactId>
+ </dependency>
+
+ <dependency>
+ <groupId>org.apache.xmlrpc</groupId>
+ <artifactId>xmlrpc-client</artifactId>
+ </dependency>
+
+ <dependency>
+ <groupId>commons-httpclient</groupId>
+ <artifactId>commons-httpclient</artifactId>
+ </dependency>
+
+ <dependency>
+ <groupId>org.codehaus.xfire</groupId>
+ <artifactId>xfire-java5</artifactId>
+ </dependency>
+
+ <!-- Dependencies for tests -->
+ <dependency>
+ <groupId>jetty</groupId>
+ <artifactId>jetty</artifactId>
+ </dependency>
+
+ <!-- Dependencies for class generation -->
+ <dependency>
+ <groupId>asm</groupId>
+ <artifactId>asm</artifactId>
+ </dependency>
+
+ </dependencies>
+
+ <!-- ************************************************************* -->
+ <!-- *** Project Information ************************************* -->
+ <!-- ************************************************************* -->
+
+ <name>ToPIA - SOA</name>
+ <description>Service Oriented Architecture module</description>
+
+ <!-- ************************************************************* -->
+ <!-- *** Build Settings ****************************************** -->
+ <!-- ************************************************************* -->
+
+ <packaging>jar</packaging>
+
+ <build>
+
+ <plugins>
+
+ <plugin>
+ <groupId>org.codelutin</groupId>
+ <artifactId>maven-processor-plugin</artifactId>
+ </plugin>
+
+ <plugin>
+ <groupId>org.codelutin</groupId>
+ <artifactId>maven-generator-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>generate-objectmodel</id>
+ <phase>generate-test-sources</phase>
+ <configuration>
+ <testPhase>true</testPhase>
+ <fullPackagePath>org.codelutin.soatest</fullPackagePath>
+ <extractedPackages>org.codelutin.soatest</extractedPackages>
+ <defaultPackage>org.codelutin.soatest</defaultPackage>
+ <includes>**/*.objectmodel</includes>
+ <templates>org.codelutin.topia.generator.TopiaApplicationServiceMetaGenerator</templates>
+ <extraClassPathDirectory>target/classes</extraClassPathDirectory>
+ </configuration>
+ <goals>
+ <goal>zargo2xmi</goal>
+ <goal>xmi2objectmodel</goal>
+ <goal>generate</goal>
+ </goals>
+ </execution>
+ </executions>
+ <dependencies>
+ <dependency>
+ <groupId>${project.groupId}</groupId>
+ <artifactId>topia-persistence</artifactId>
+ <version>${project.version}</version>
+ <scope>compile</scope>
+ </dependency>
+ </dependencies>
+ </plugin>
+ </plugins>
+ </build>
+
+ <!-- ************************************************************* -->
+ <!-- *** Build Environment ************************************** -->
+ <!-- ************************************************************* -->
+ <scm>
+ <url>http://labs.libre-entreprise.org/plugins/scmsvn/viewcvs.php/topia/tags/2.1.…</url>
+ <connection>scm:svn:svn://anonymous@labs.libre-entreprise.org/svnroot/topia/topia/tags/2.1.5/topia-soa</connection>
+ <developerConnection>scm:svn:svn+ssh://tchemit@labs.libre-entreprise.org/svnroot/topia/topia/tags/2.1.5/topia-soa</developerConnection>
+ </scm>
+
+</project>
Deleted: topia/tags/2.1.5/topia-ui/pom.xml
===================================================================
--- topia/trunk/topia-ui/pom.xml 2009-04-20 14:16:36 UTC (rev 1432)
+++ topia/tags/2.1.5/topia-ui/pom.xml 2009-04-20 14:19:26 UTC (rev 1434)
@@ -1,115 +0,0 @@
-<?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/xsd/maven-4.0.0.xsd">
-
- <modelVersion>4.0.0</modelVersion>
-
- <!-- ************************************************************* -->
- <!-- *** POM Relationships *************************************** -->
- <!-- ************************************************************* -->
-
- <parent>
- <groupId>org.codelutin</groupId>
- <artifactId>topia</artifactId>
- <version>2.1.5-SNAPSHOT</version>
- </parent>
-
- <groupId>org.codelutin.topia</groupId>
- <artifactId>topia-ui</artifactId>
-
- <dependencies>
-
- <dependency>
- <groupId>org.codelutin</groupId>
- <artifactId>lutinutil</artifactId>
- </dependency>
-
- <dependency>
- <groupId>org.codelutin</groupId>
- <artifactId>lutingenerator</artifactId>
- </dependency>
-
- <dependency>
- <groupId>org.apache.tapestry</groupId>
- <artifactId>tapestry-core</artifactId>
- </dependency>
-
- <dependency>
- <groupId>org.hibernate</groupId>
- <artifactId>hibernate-core</artifactId>
- <scope>test</scope>
- </dependency>
-
- <dependency>
- <groupId>org.hibernate</groupId>
- <artifactId>hibernate-ehcache</artifactId>
- <scope>test</scope>
- </dependency>
-
- <dependency>
- <groupId>javassist</groupId>
- <artifactId>javassist</artifactId>
- <scope>test</scope>
- </dependency>
- </dependencies>
-
- <!-- ************************************************************* -->
- <!-- *** Project Information ************************************* -->
- <!-- ************************************************************* -->
-
- <name>ToPIA - UI</name>
- <description>User interface module</description>
-
- <!-- ************************************************************* -->
- <!-- *** Build Settings ****************************************** -->
- <!-- ************************************************************* -->
-
- <packaging>jar</packaging>
-
- <build>
-
- <plugins>
-
- <plugin>
- <groupId>org.codelutin</groupId>
- <artifactId>maven-processor-plugin</artifactId>
- </plugin>
-
- <plugin>
- <groupId>org.codelutin</groupId>
- <artifactId>maven-generator-plugin</artifactId>
- <executions>
-
- <execution>
- <id>generate-statemodel</id>
- <phase>generate-test-sources</phase>
- <configuration>
- <testPhase>true</testPhase>
- <fullPackagePath>org.codelutin.topiauitest</fullPackagePath>
- <extractedPackages>org.codelutin.topiauitest</extractedPackages>
- <includes>**/*.statemodel</includes>
- <templates>org.codelutin.topia.generator.TapestryWebGenerator</templates>
- <extraClassPathDirectory>target/classes</extraClassPathDirectory>
- </configuration>
- <goals>
- <goal>zargo2xmi</goal>
- <goal>xmi2statemodel</goal>
- <goal>generate</goal>
- </goals>
- </execution>
- </executions>
-
- </plugin>
-
- </plugins>
- </build>
-
- <!-- ************************************************************* -->
- <!-- *** Build Environment ************************************** -->
- <!-- ************************************************************* -->
- <scm>
- <url>${maven.scm.url.child}</url>
- <connection>${maven.scm.connection.child}</connection>
- <developerConnection>${maven.scm.developerConnection.child}</developerConnection>
- </scm>
-
-</project>
Copied: topia/tags/2.1.5/topia-ui/pom.xml (from rev 1433, topia/trunk/topia-ui/pom.xml)
===================================================================
--- topia/tags/2.1.5/topia-ui/pom.xml (rev 0)
+++ topia/tags/2.1.5/topia-ui/pom.xml 2009-04-20 14:19:26 UTC (rev 1434)
@@ -0,0 +1,115 @@
+<?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/xsd/maven-4.0.0.xsd">
+
+ <modelVersion>4.0.0</modelVersion>
+
+ <!-- ************************************************************* -->
+ <!-- *** POM Relationships *************************************** -->
+ <!-- ************************************************************* -->
+
+ <parent>
+ <groupId>org.codelutin</groupId>
+ <artifactId>topia</artifactId>
+ <version>2.1.5</version>
+ </parent>
+
+ <groupId>org.codelutin.topia</groupId>
+ <artifactId>topia-ui</artifactId>
+
+ <dependencies>
+
+ <dependency>
+ <groupId>org.codelutin</groupId>
+ <artifactId>lutinutil</artifactId>
+ </dependency>
+
+ <dependency>
+ <groupId>org.codelutin</groupId>
+ <artifactId>lutingenerator</artifactId>
+ </dependency>
+
+ <dependency>
+ <groupId>org.apache.tapestry</groupId>
+ <artifactId>tapestry-core</artifactId>
+ </dependency>
+
+ <dependency>
+ <groupId>org.hibernate</groupId>
+ <artifactId>hibernate-core</artifactId>
+ <scope>test</scope>
+ </dependency>
+
+ <dependency>
+ <groupId>org.hibernate</groupId>
+ <artifactId>hibernate-ehcache</artifactId>
+ <scope>test</scope>
+ </dependency>
+
+ <dependency>
+ <groupId>javassist</groupId>
+ <artifactId>javassist</artifactId>
+ <scope>test</scope>
+ </dependency>
+ </dependencies>
+
+ <!-- ************************************************************* -->
+ <!-- *** Project Information ************************************* -->
+ <!-- ************************************************************* -->
+
+ <name>ToPIA - UI</name>
+ <description>User interface module</description>
+
+ <!-- ************************************************************* -->
+ <!-- *** Build Settings ****************************************** -->
+ <!-- ************************************************************* -->
+
+ <packaging>jar</packaging>
+
+ <build>
+
+ <plugins>
+
+ <plugin>
+ <groupId>org.codelutin</groupId>
+ <artifactId>maven-processor-plugin</artifactId>
+ </plugin>
+
+ <plugin>
+ <groupId>org.codelutin</groupId>
+ <artifactId>maven-generator-plugin</artifactId>
+ <executions>
+
+ <execution>
+ <id>generate-statemodel</id>
+ <phase>generate-test-sources</phase>
+ <configuration>
+ <testPhase>true</testPhase>
+ <fullPackagePath>org.codelutin.topiauitest</fullPackagePath>
+ <extractedPackages>org.codelutin.topiauitest</extractedPackages>
+ <includes>**/*.statemodel</includes>
+ <templates>org.codelutin.topia.generator.TapestryWebGenerator</templates>
+ <extraClassPathDirectory>target/classes</extraClassPathDirectory>
+ </configuration>
+ <goals>
+ <goal>zargo2xmi</goal>
+ <goal>xmi2statemodel</goal>
+ <goal>generate</goal>
+ </goals>
+ </execution>
+ </executions>
+
+ </plugin>
+
+ </plugins>
+ </build>
+
+ <!-- ************************************************************* -->
+ <!-- *** Build Environment ************************************** -->
+ <!-- ************************************************************* -->
+ <scm>
+ <url>http://labs.libre-entreprise.org/plugins/scmsvn/viewcvs.php/topia/tags/2.1.…</url>
+ <connection>scm:svn:svn://anonymous@labs.libre-entreprise.org/svnroot/topia/topia/tags/2.1.5/topia-ui</connection>
+ <developerConnection>scm:svn:svn+ssh://tchemit@labs.libre-entreprise.org/svnroot/topia/topia/tags/2.1.5/topia-ui</developerConnection>
+ </scm>
+
+</project>
1
0
r1433 - in topia/trunk: . topia-persistence topia-soa topia-ui
by tchemit@users.labs.libre-entreprise.org 20 Apr '09
by tchemit@users.labs.libre-entreprise.org 20 Apr '09
20 Apr '09
Author: tchemit
Date: 2009-04-20 14:19:22 +0000 (Mon, 20 Apr 2009)
New Revision: 1433
Modified:
topia/trunk/pom.xml
topia/trunk/topia-persistence/pom.xml
topia/trunk/topia-soa/pom.xml
topia/trunk/topia-ui/pom.xml
Log:
[maven-release-plugin] prepare release 2.1.5
Modified: topia/trunk/pom.xml
===================================================================
--- topia/trunk/pom.xml 2009-04-20 14:16:36 UTC (rev 1432)
+++ topia/trunk/pom.xml 2009-04-20 14:19:22 UTC (rev 1433)
@@ -13,7 +13,7 @@
</parent>
<artifactId>topia</artifactId>
- <version>2.1.5-SNAPSHOT</version>
+ <version>2.1.5</version>
<modules>
<module>topia-persistence</module>
@@ -247,9 +247,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/topia/topia/tags/2.1.5</connection>
+ <developerConnection>scm:svn:svn+ssh://tchemit@labs.libre-entreprise.org/svnroot/topia/topia/tags/2.1.5</developerConnection>
+ <url>http://labs.libre-entreprise.org/plugins/scmsvn/viewcvs.php/topia/tags/2.1.…</url>
</scm>
<!--Code Lutin Repository-->
Modified: topia/trunk/topia-persistence/pom.xml
===================================================================
--- topia/trunk/topia-persistence/pom.xml 2009-04-20 14:16:36 UTC (rev 1432)
+++ topia/trunk/topia-persistence/pom.xml 2009-04-20 14:19:22 UTC (rev 1433)
@@ -10,7 +10,7 @@
<parent>
<groupId>org.codelutin</groupId>
<artifactId>topia</artifactId>
- <version>2.1.5-SNAPSHOT</version>
+ <version>2.1.5</version>
</parent>
<groupId>org.codelutin.topia</groupId>
@@ -130,9 +130,9 @@
<!-- *** Build Environment ************************************** -->
<!-- ************************************************************* -->
<scm>
- <url>${maven.scm.url.child}</url>
- <connection>${maven.scm.connection.child}</connection>
- <developerConnection>${maven.scm.developerConnection.child}</developerConnection>
+ <url>http://labs.libre-entreprise.org/plugins/scmsvn/viewcvs.php/topia/tags/2.1.…</url>
+ <connection>scm:svn:svn://anonymous@labs.libre-entreprise.org/svnroot/topia/topia/tags/2.1.5/topia-persistence</connection>
+ <developerConnection>scm:svn:svn+ssh://tchemit@labs.libre-entreprise.org/svnroot/topia/topia/tags/2.1.5/topia-persistence</developerConnection>
</scm>
Modified: topia/trunk/topia-soa/pom.xml
===================================================================
--- topia/trunk/topia-soa/pom.xml 2009-04-20 14:16:36 UTC (rev 1432)
+++ topia/trunk/topia-soa/pom.xml 2009-04-20 14:19:22 UTC (rev 1433)
@@ -10,7 +10,7 @@
<parent>
<groupId>org.codelutin</groupId>
<artifactId>topia</artifactId>
- <version>2.1.5-SNAPSHOT</version>
+ <version>2.1.5</version>
</parent>
<groupId>org.codelutin.topia</groupId>
@@ -134,9 +134,9 @@
<!-- *** Build Environment ************************************** -->
<!-- ************************************************************* -->
<scm>
- <url>${maven.scm.url.child}</url>
- <connection>${maven.scm.connection.child}</connection>
- <developerConnection>${maven.scm.developerConnection.child}</developerConnection>
+ <url>http://labs.libre-entreprise.org/plugins/scmsvn/viewcvs.php/topia/tags/2.1.…</url>
+ <connection>scm:svn:svn://anonymous@labs.libre-entreprise.org/svnroot/topia/topia/tags/2.1.5/topia-soa</connection>
+ <developerConnection>scm:svn:svn+ssh://tchemit@labs.libre-entreprise.org/svnroot/topia/topia/tags/2.1.5/topia-soa</developerConnection>
</scm>
</project>
Modified: topia/trunk/topia-ui/pom.xml
===================================================================
--- topia/trunk/topia-ui/pom.xml 2009-04-20 14:16:36 UTC (rev 1432)
+++ topia/trunk/topia-ui/pom.xml 2009-04-20 14:19:22 UTC (rev 1433)
@@ -10,7 +10,7 @@
<parent>
<groupId>org.codelutin</groupId>
<artifactId>topia</artifactId>
- <version>2.1.5-SNAPSHOT</version>
+ <version>2.1.5</version>
</parent>
<groupId>org.codelutin.topia</groupId>
@@ -107,9 +107,9 @@
<!-- *** Build Environment ************************************** -->
<!-- ************************************************************* -->
<scm>
- <url>${maven.scm.url.child}</url>
- <connection>${maven.scm.connection.child}</connection>
- <developerConnection>${maven.scm.developerConnection.child}</developerConnection>
+ <url>http://labs.libre-entreprise.org/plugins/scmsvn/viewcvs.php/topia/tags/2.1.…</url>
+ <connection>scm:svn:svn://anonymous@labs.libre-entreprise.org/svnroot/topia/topia/tags/2.1.5/topia-ui</connection>
+ <developerConnection>scm:svn:svn+ssh://tchemit@labs.libre-entreprise.org/svnroot/topia/topia/tags/2.1.5/topia-ui</developerConnection>
</scm>
</project>
1
0
Author: tchemit
Date: 2009-04-20 14:16:36 +0000 (Mon, 20 Apr 2009)
New Revision: 1432
Modified:
topia/trunk/pom.xml
Log:
bump versions
use doxia-mudle-jrst instead of maven-jrst-plugin
Modified: topia/trunk/pom.xml
===================================================================
--- topia/trunk/pom.xml 2009-04-20 14:15:30 UTC (rev 1431)
+++ topia/trunk/pom.xml 2009-04-20 14:16:36 UTC (rev 1432)
@@ -241,25 +241,6 @@
</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>
<!-- ************************************************************* -->
1
0