This is an automated email from the git hooks/post-receive script. New commit to branch develop in repository observe. See http://git.codelutin.com/observe.git commit 8638603181f685262a59fb99a633705567e238ae Author: Tony CHEMIT <chemit@codelutin.com> Date: Mon Apr 20 19:42:46 2015 +0200 refs #6944 creation de la resources sur la partie catographie dans le build --- observe-swing/pom.xml | 22 ++++++++++++++++++++++ observe-swing/src/main/assembly/map.xml | 20 ++++++++++++++++++++ 2 files changed, 42 insertions(+) diff --git a/observe-swing/pom.xml b/observe-swing/pom.xml index d7d6a04..94f8976 100644 --- a/observe-swing/pom.xml +++ b/observe-swing/pom.xml @@ -405,6 +405,28 @@ </executions> </plugin> + <plugin> + <artifactId>maven-assembly-plugin</artifactId> + <configuration> + <descriptors> + <descriptor>src/main/assembly/map.xml</descriptor> + </descriptors> + <attach>false</attach> + <finalName>map</finalName> + <appendAssemblyId>false</appendAssemblyId> + <outputDirectory>${project.build.outputDirectory}</outputDirectory> + </configuration> + <executions> + <execution> + <id>create-assemblies</id> + <phase>process-resources</phase> + <goals> + <goal>single</goal> + </goals> + </execution> + </executions> + </plugin> + </plugins> </build> diff --git a/observe-swing/src/main/assembly/map.xml b/observe-swing/src/main/assembly/map.xml new file mode 100644 index 0000000..f03fb54 --- /dev/null +++ b/observe-swing/src/main/assembly/map.xml @@ -0,0 +1,20 @@ +<assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2 http://maven.apache.org/xsd/assembly-1.1.2.xsd"> + <id>maps</id> + <formats> + <format>zip</format> + </formats> + + <fileSets> + + <fileSet> + <directory>src/main/map</directory> + <outputDirectory/> + <fileMode>0755</fileMode> + <includes> + <include>**/*</include> + </includes> + </fileSet> + + </fileSets> +</assembly> -- To stop receiving notification emails like this one, please contact codelutin.com SCM administrator <admin+scm@list.forge.codelutin.com>.