This is an automated email from the git hooks/post-receive script. New commit to branch develop in repository scmwebeditor. See http://git.nuiton.org/scmwebeditor.git commit 2b66e5b8a21e27dc00f923fdbfca63b16b2a250f Author: Tony CHEMIT <chemit@codelutin.com> Date: Sun Oct 26 19:22:12 2014 +0100 fixes #3558: Migrates to git (some dependencies are not on central + tidy pom) --- LICENSE.txt | 5 +- pom.xml | 269 ++++++++++++++++++++++++++++++------------------------------ 2 files changed, 138 insertions(+), 136 deletions(-) diff --git a/LICENSE.txt b/LICENSE.txt index 3f7b8b1..cca7fc2 100644 --- a/LICENSE.txt +++ b/LICENSE.txt @@ -10,7 +10,7 @@ the terms and conditions of version 3 of the GNU General Public License, supplemented by the additional permissions listed below. - 0. Additional Definitions. + 0. Additional Definitions. As used herein, "this License" refers to version 3 of the GNU Lesser General Public License, and the "GNU GPL" refers to version 3 of the GNU @@ -111,7 +111,7 @@ the following: a copy of the Library already present on the user's computer system, and (b) will operate properly with a modified version of the Library that is interface-compatible with the Linked - Version. + Version. e) Provide Installation Information, but only if you would otherwise be required to provide such information under section 6 of the @@ -163,4 +163,3 @@ whether future versions of the GNU Lesser General Public License shall apply, that proxy's public statement of acceptance of any version is permanent authorization for you to choose that version for the Library. - diff --git a/pom.xml b/pom.xml index a2e13ac..b671d10 100644 --- a/pom.xml +++ b/pom.xml @@ -1,7 +1,6 @@ <?xml version="1.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> <parent> @@ -12,6 +11,126 @@ <artifactId>scmwebeditor</artifactId> <version>0.4-SNAPSHOT</version> + <packaging>war</packaging> + + <name>ScmWebEditor</name> + <description>ScmWebEditor is a web based sources editor.</description> + <url>https://scmwebeditor.nuiton.org</url> + <inceptionYear>2009</inceptionYear> + + <developers> + <developer> + <name>Tony Chemit</name> + <id>tchemit</id> + <email>chemit@codelutin.com</email> + <organization>CodeLutin</organization> + <organizationUrl>https://www.codelutin.com</organizationUrl> + <timezone>Europe/Paris</timezone> + <roles> + <role>Developer</role> + </roles> + </developer> + <developer> + <name>Yannick Martel</name> + <id>ymartel</id> + <email>martel@codelutin.com</email> + <organization>CodeLutin</organization> + <organizationUrl>https://www.codelutin.com</organizationUrl> + <timezone>Europe/Paris</timezone> + <roles> + <role>Developer</role> + </roles> + </developer> + <developer> + <name>Geoffroy Lorieux</name> + <id>glorieux</id> + <timezone>Europe/Paris</timezone> + <roles> + <role>Developer</role> + </roles> + </developer> + <developer> + <name>Kevin Cardineaud</name> + <id>kcardineaud</id> + <timezone>Europe/Paris</timezone> + <roles> + <role>Developer</role> + </roles> + </developer> + </developers> + + <scm> + <connection>scm:git:http://git.nuiton.org/scmwebeditor.git</connection> + <developerConnection>scm:git:https://git.nuiton.org/scmwebeditor.git</developerConnection> + <url>https://gitweb.nuiton.org/scmwebeditor.git</url> + </scm> + <distributionManagement> + <site> + <id>${site.server}</id> + <url>${site.url}</url> + </site> + </distributionManagement> + + <properties> + + <!-- redmine project Id --> + <projectId>scmwebeditor</projectId> + + <!--Multilanguage maven-site --> + <siteLocales>fr,en</siteLocales> + + <struts2Version>2.3.4.1</struts2Version> + <struts2jqueryVersion>3.4.0</struts2jqueryVersion> + <nuitonI18nVersion>2.5</nuitonI18nVersion> + <nuitonUtilsVersion>2.6.3</nuitonUtilsVersion> + <nuitonWebVersion>1.12-beta-1</nuitonWebVersion> + + <!-- <scmwebeditorUrl>http://localhost:8080/scmwebeditor/checkout.action</scmwebeditorUrl> --> + + <i18n.bundles>fr_FR,en_GB</i18n.bundles> + <i18n.silent>true</i18n.silent> + + + <i18n.bundleOutputName>scmwebeditor-i18n</i18n.bundleOutputName> + + <!-- extra files to include in release --> + <redmine.releaseFiles> + target/${project.artifactId}-${project.version}.war + </redmine.releaseFiles> + + <!-- Post Release configuration --> + <skipPostRelease>false</skipPostRelease> + + </properties> + + <repositories> + <repository> + <id>scmwebeditor-public-group</id> + <url>http://nexus.nuiton.org/nexus/content/groups/scmwebeditor</url> + <snapshots> + <enabled>true</enabled> + <checksumPolicy>fail</checksumPolicy> + </snapshots> + <releases> + <enabled>true</enabled> + <checksumPolicy>fail</checksumPolicy> + </releases> + </repository> + </repositories> + <pluginRepositories> + <pluginRepository> + <id>scmwebeditor-public-group</id> + <url>http://nexus.nuiton.org/nexus/content/groups/scmwebeditor</url> + <snapshots> + <enabled>true</enabled> + <checksumPolicy>fail</checksumPolicy> + </snapshots> + <releases> + <enabled>true</enabled> + <checksumPolicy>fail</checksumPolicy> + </releases> + </pluginRepository> + </pluginRepositories> <dependencies> @@ -155,94 +274,7 @@ </dependencies> - <name>ScmWebEditor</name> - <description>ScmWebEditor is a web based sources editor.</description> - <inceptionYear>2009</inceptionYear> - <url>https://scmwebeditor.nuiton.org</url> - - <developers> - <developer> - <name>Tony Chemit</name> - <id>tchemit</id> - <email>chemit@codelutin.com</email> - <organization>CodeLutin</organization> - <organizationUrl>https://www.codelutin.com</organizationUrl> - <timezone>Europe/Paris</timezone> - <roles> - <role>Developer</role> - </roles> - </developer> - <developer> - <name>Yannick Martel</name> - <id>ymartel</id> - <email>martel@codelutin.com</email> - <organization>CodeLutin</organization> - <organizationUrl>https://www.codelutin.com</organizationUrl> - <timezone>Europe/Paris</timezone> - <roles> - <role>Developer</role> - </roles> - </developer> - <developer> - <name>Geoffroy Lorieux</name> - <id>glorieux</id> - <timezone>Europe/Paris</timezone> - <roles> - <role>Developer</role> - </roles> - </developer> - <developer> - <name>Kevin Cardineaud</name> - <id>kcardineaud</id> - <timezone>Europe/Paris</timezone> - <roles> - <role>Developer</role> - </roles> - </developer> - </developers> - - <organization> - <name>CodeLutin</name> - <url>http://www.codelutin.com/</url> - </organization> - - <packaging>war</packaging> - - <properties> - - <!-- redmine project Id --> - <projectId>scmwebeditor</projectId> - - <!--Multilanguage maven-site --> - <siteLocales>fr,en</siteLocales> - - <struts2Version>2.3.4.1</struts2Version> - <struts2jqueryVersion>3.4.0</struts2jqueryVersion> - <nuitonI18nVersion>2.5</nuitonI18nVersion> - <nuitonUtilsVersion>2.6.3</nuitonUtilsVersion> - <nuitonWebVersion>1.12-beta-1</nuitonWebVersion> - - <!-- <scmwebeditorUrl>http://localhost:8080/scmwebeditor/checkout.action</scmwebeditorUrl> --> - - <i18n.bundles>fr_FR,en_GB</i18n.bundles> - <i18n.silent>true</i18n.silent> - - - <i18n.bundleOutputName>scmwebeditor-i18n</i18n.bundleOutputName> - - <!-- extra files to include in release --> - <redmine.releaseFiles> - target/${project.artifactId}-${project.version}.war - </redmine.releaseFiles> - - <!-- Post Release configuration --> - <skipPostRelease>false</skipPostRelease> - - </properties> - - <build> - <resources> <resource> <directory>src/main/resources</directory> @@ -252,7 +284,6 @@ <filtering>true</filtering> </resource> </resources> - <pluginManagement> <plugins> @@ -276,7 +307,6 @@ </plugins> </pluginManagement> - <plugins> <plugin> @@ -307,49 +337,22 @@ </plugins> - </build> - <scm> - <connection>scm:git:http://git.nuiton.org/scmwebeditor.git</connection> - <developerConnection>scm:git:https://git.nuiton.org/scmwebeditor.git</developerConnection> - <url>https://gitweb.nuiton.org/scmwebeditor.git</url> - </scm> - - <distributionManagement> - <site> - <id>${site.server}</id> - <url>${site.url}</url> - </site> - </distributionManagement> - - <repositories> - <repository> - <id>scmwebeditor-public-group</id> - <url>http://nexus.nuiton.org/nexus/content/groups/scmwebeditor</url> - <snapshots> - <enabled>true</enabled> - <checksumPolicy>fail</checksumPolicy> - </snapshots> - <releases> - <enabled>true</enabled> - <checksumPolicy>fail</checksumPolicy> - </releases> - </repository> - </repositories> - <pluginRepositories> - <pluginRepository> - <id>scmwebeditor-public-group</id> - <url>http://nexus.nuiton.org/nexus/content/groups/scmwebeditor</url> - <snapshots> - <enabled>true</enabled> - <checksumPolicy>fail</checksumPolicy> - </snapshots> - <releases> - <enabled>true</enabled> - <checksumPolicy>fail</checksumPolicy> - </releases> - </pluginRepository> - </pluginRepositories> - + <profiles> + + <profile> + <id>release-quality-profile</id> + <activation> + <property> + <name>performRelease</name> + <value>true</value> + </property> + </activation> + <properties> + <helper.skipCheckAutocontainer>true</helper.skipCheckAutocontainer> + </properties> + </profile> + + </profiles> </project> -- To stop receiving notification emails like this one, please contact nuiton.org SCM administrator <admin+scm@nuiton.org>.