Select Git revision
-
Stephane Poirier authored
LZ4, BSLZ4, ZLIB compression filters validated
Stephane Poirier authoredLZ4, BSLZ4, ZLIB compression filters validated
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
pom.xml 2.73 KiB
<?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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>fr.soleil</groupId>
<artifactId>super-pom-C-CPP</artifactId>
<version>RELEASE</version>
</parent>
<groupId>fr.soleil.lib</groupId>
<artifactId>datastreamer</artifactId>
<version>1.1.0</version>
<packaging>nar</packaging>
<name>nx_simu</name>
<description>NeXusCPP simulator</description>
<developers>
<developer>
<id>poirier</id>
<name>poirier</name>
<email>stephane.poirier@synchrotron-soleil.fr</email>
<url>http://www.synchrotron-soleil.fr</url>
<organization>Synchrotron Soleil</organization>
<organizationUrl>http://www.synchrotron-soleil.fr</organizationUrl>
<roles>
<role>manager</role>
</roles>
<timezone>1</timezone>
</developer>
</developers>
<scm>
<connection>${scm.connection.svn.tango-cs}/share/nexuscpp/datastreamer</connection>
<developerConnection>${scm.developerConnection.svn.tango-cs}/share/nexuscpp/datastreamer</developerConnection>
<url>${scm.url.svn.tango-cs}/share/nexuscpp/bufgen</url>
</scm>
<dependencies>
<dependency>
<groupId>fr.soleil.lib</groupId>
<artifactId>NexusCPP-${aol}-${library}-${mode}</artifactId>
<!--version>3.3.8-SNAPSHOT</version-->
</dependency>
<dependency>
<groupId>fr.soleil.lib</groupId>
<artifactId>YAT-${aol}-${library}-${mode}</artifactId>
<!--version>${env.YAT_VERSION_DEV}</version-->
</dependency>
<!--dependency>
<groupId>ncsa.uiuc.edu</groupId>
<artifactId>HDF5-${aol}-shared-${mode}</artifactId>
<version>1.8.13</version>
</dependency-->
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.freehep</groupId>
<artifactId>freehep-nar-plugin</artifactId>
<configuration>
<output>${project.name}</output>
<libraries>
<library>
<type>executable</type>
<run>false</run>
</library>
</libraries>
<cpp>
<sourceDirectory>src</sourceDirectory>
<includePaths>
<includePath>${basedir}/src</includePath>
</includePaths>
<defines>
<!--define>NX_DEBUG</define-->
<!--define>WRITER_DEBUG</define-->
<!--define>STATS_DEBUG</define-->
<!--define>NXFILE_DEBUG_SCOPE</define-->
</defines>
</cpp>
</configuration>
</plugin>
</plugins>
</build>
</project>