Select Git revision
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
pom.xml 3.60 KiB
<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>HDFDataSlicer</artifactId>
<version>0.0.6</version>
<name>HDFDataSlicer</name>
<description>Produces Slices from 3D image stacks</description>
<developers>
<developer>
<id>leroul</id>
<name>Tassadit LEROUL</name>
<email>Tassadit.LEROUL@synchrotron-soleil.fr</email>
<organization>Synchrotron Soleil</organization>
<organizationUrl>http://www.synchrotron-soleil.fr</organizationUrl>
<roles>
<role>Java Developer</role>
</roles>
<timezone>1</timezone>
</developer>
<developer>
<id>viguier</id>
<name>Gregory Viguier</name>
<email>gregory.viguier@synchrotron-soleil.fr</email>
<organization>Synchrotron Soleil</organization>
<organizationUrl>http://www.synchrotron-soleil.fr</organizationUrl>
<roles>
<role>Manager</role>
<role>Java Developer</role>
</roles>
<timezone>1</timezone>
</developer>
</developers>
<scm>
<connection>scm:git:git@gitlab.synchrotron-soleil.fr:software-control-system/tango-devices/calculation/hdfdataslicer.git</connection>
<developerConnection>scm:git:git@gitlab.synchrotron-soleil.fr:software-control-system/tango-devices/calculation/hdfdataslicer.git</developerConnection>
<url>https://gitlab.synchrotron-soleil.fr/software-control-system/tango-devices/calculation/hdfdataslicer</url>
</scm>
<!-- <build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.0.0</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<transformers>
<transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
<mainClass>org.sonatype.haven.HavenCli</mainClass>
</transformer>
</transformers>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build> -->
<dependencies>
<dependency>
<groupId>fr.soleil.lib</groupId>
<artifactId>BasicUtilities</artifactId>
</dependency>
<dependency>
<groupId>org.tango-controls</groupId>
<artifactId>JTangoServer</artifactId>
</dependency>
<!-- Use hdf engine instead of hdf-swmr, to keep compatibility with 32bits systems -->
<dependency>
<groupId>org.cdma.plugin</groupId>
<artifactId>nexus-soleil</artifactId>
<exclusions>
<exclusion>
<groupId>org.cdma.engine</groupId>
<artifactId>hdf-swmr</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.cdma.engine</groupId>
<artifactId>hdf</artifactId>
</dependency>
<dependency>
<groupId>org.cdma</groupId>
<artifactId>core</artifactId>
</dependency>
<dependency>
<groupId>org.cdma</groupId>
<artifactId>utilities</artifactId>
</dependency>
</dependencies>
</project>