This is an automated email from the git hooks/post-receive script. New commit to branch develop in repository observe. See https://gitlab.nuiton.org/codelutin/observe.git commit 63c87997657792e3f65724a5ec66f8d772975425 Author: Tony CHEMIT <chemit@codelutin.com> Date: Fri Sep 2 14:46:37 2016 +0200 clean pom --- pom.xml | 136 ++++++++++++++++++++++++++-------------------------------------- 1 file changed, 54 insertions(+), 82 deletions(-) diff --git a/pom.xml b/pom.xml index f1cd2d0..d1c3c2d 100644 --- a/pom.xml +++ b/pom.xml @@ -22,7 +22,8 @@ <http://www.gnu.org/licenses/lgpl-3.0.html>. #L% --> -<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"> +<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> <parent> @@ -201,7 +202,7 @@ <observe.model.version>4.904</observe.model.version> <jrstPluginVersion>2.1</jrstPluginVersion> - + </properties> <repositories> @@ -919,74 +920,6 @@ </executions> </plugin> - <plugin> - - <artifactId>maven-antrun-plugin</artifactId> - <inherited>false</inherited> - <executions> - - <!-- on recopie le changelog.txt vers le site pour faire la release note --> - <execution> - <id>copy model to site</id> - <phase>pre-site</phase> - <configuration> - <!-- TODO chemit 2011-02-24 Change to 'target' when using ant-run 1.6 in mavenpom4labs... --> - <target> - <echo message="Copy model to site" /> - <copy verbose="true" failonerror="false" overwrite="true" todir="${project.reporting.outputDirectory}/model"> - <fileset dir="doc/modelisation"> - <include name="**/*.pdf" /> - </fileset> - <fileset dir="entities/src/main/xmi"> - <include name="**/*.zargo" /> - </fileset> - </copy> - </target> - <!--tasks> - <echo message="Copy model to site" /> - <copy verbose="true" failonerror="false" overwrite="true" todir="${project.reporting.outputDirectory}/model"> - <fileset dir="doc/modelisation"> - <include name="**/*.pdf" /> - </fileset> - <fileset dir="entities/src/main/xmi"> - <include name="**/*.zargo" /> - </fileset> - </copy> - </tasks--> - </configuration> - <goals> - <goal>run</goal> - </goals> - </execution> - <!-- on recopie les fichiers de validations dans le site --> - <execution> - <id>ValidatorToSite</id> - <phase>pre-site</phase> - <configuration> - <tasks> - <copy todir="${project.reporting.outputDirectory}/validation/service" verbose="true" failonerror="false" overwrite="false"> - <fileset dir="services-topia-validation/src/main/java"> - <include name="**/*-validation.xml" /> - </fileset> - </copy> - <copy todir="${project.reporting.outputDirectory}/validation/ui" verbose="true" failonerror="false" overwrite="false"> - <fileset dir="application-swing-validation/src/main/java"> - <include name="**/*-validation.xml" /> - </fileset> - </copy> - <copy todir="${project.reporting.outputDirectory}/validation" verbose="true" failonerror="false" overwrite="false"> - <fileset dir="application-swing/src/main/resources"> - <include name="validators.xml" /> - </fileset> - </copy> - </tasks> - </configuration> - <goals> - <goal>run</goal> - </goals> - </execution> - </executions> - </plugin> </plugins> </build> </profile> @@ -1023,19 +956,58 @@ </plugins> </reporting> - </profile> + <build> + + <plugins> + + <plugin> + + <artifactId>maven-antrun-plugin</artifactId> + <inherited>false</inherited> + <executions> + <execution> + <id>Copy files to site</id> + <phase>pre-site</phase> + <configuration> + <target> + <copy failonerror="true" overwrite="true" todir="${project.reporting.outputDirectory}/model"> + <fileset dir="doc/modelisation"> + <include name="**/*.pdf"/> + </fileset> + <fileset dir="entities/src/main/xmi"> + <include name="**/*.zargo"/> + </fileset> + </copy> + <copy todir="${project.reporting.outputDirectory}/validation/service" failonerror="true" + overwrite="true"> + <fileset dir="services-topia-validation/src/main/resources"> + <include name="**/*-validation.xml"/> + </fileset> + </copy> + <copy todir="${project.reporting.outputDirectory}/validation/ui" failonerror="true" + overwrite="true"> + <fileset dir="application-swing-validation/src/main/resources"> + <include name="**/*-validation.xml"/> + </fileset> + </copy> + <copy todir="${project.reporting.outputDirectory}/validation" failonerror="true" overwrite="true"> + <fileset dir="application-swing-configuration/src/main/resources"> + <include name="validators.xml"/> + </fileset> + </copy> + </target> + </configuration> + <goals> + <goal>run</goal> + </goals> + </execution> + </executions> + </plugin> + + </plugins> + + </build> - <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> -- To stop receiving notification emails like this one, please contact codelutin.com SCM administrator <admin+scm@codelutin.com>.