Skip to content
Snippets Groups Projects
Commit afe1ee2a authored by Patrick MADELA's avatar Patrick MADELA
Browse files

Add maven build definition for device servers package

parent c7780432
No related branches found
No related tags found
1 merge request!1Build
Pipeline #856 failed
target
\ No newline at end of file
<assembly xmlns="http://maven.apache.org/ASSEMBLY/2.1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/ASSEMBLY/2.1.0 http://maven.apache.org/xsd/assembly-2.1.0.xsd">
<id>package</id>
<formats>
<format>zip</format>
</formats>
<includeBaseDirectory>false</includeBaseDirectory>
<fileSets>
<fileSet>
<directory>src</directory>
<outputDirectory>.</outputDirectory>
<includes>
<include>*.py</include>
</includes>
</fileSet>
</fileSets>
</assembly>
pom.xml 0 → 100644
<?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>
<parent>
<groupId>fr.soleil.maven.parent</groupId>
<artifactId>java-updated-versions</artifactId>
<version>0-SNAPSHOT</version>
</parent>
<groupId>fr.soleil.deviceservers</groupId>
<artifactId>PeaksSearch</artifactId>
<version>1.0.0-SNAPSHOT</version>
<packaging>pom</packaging>
<properties>
<tango.site>Soleil</tango.site>
<tango.platform>All</tango.platform>
<tango.family>SoftwareSystem</tango.family>
<tango.bus>NA</tango.bus>
</properties>
<scm>
<connection>git@gitlab.synchrotron-soleil.fr:software-control-system/tango-devices/calculation/peakssearch.git</connection>
<developerConnection>git@gitlab.synchrotron-soleil.fr:software-control-system/tango-devices/calculation/peakssearch.git</developerConnection>
<url>https://gitlab.synchrotron-soleil.fr/software-control-system/tango-devices/calculation/peakssearch</url>
</scm>
<licenses>
<license>
<name>LGPL-3</name>
</license>
</licenses>
<organization>
<name>Synchrotron Soleil</name>
<url>http://www.synchrotron-soleil.fr</url>
</organization>
<developers>
<developer>
<name>Xavier Elattaoui</name>
<email>xavier.elattaoui@synchrotron-soleil.fr</email>
<organization>Synchrotron Soleil</organization>
<organizationUrl>http://www.synchrotron-soleil.fr</organizationUrl>
<roles>
<role>developer</role>
</roles>
</developer>
</developers>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<executions>
<execution>
<id>assembly</id>
<goals>
<goal>single</goal>
</goals>
<phase>package</phase>
<configuration>
<finalName>${project.name}-${project.version}</finalName>
<appendAssemblyId>false</appendAssemblyId>
<descriptors>
<descriptor>assembly.xml</descriptor>
</descriptors>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment