Select Git revision
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
pom.xml 3.02 KiB
<?xml version="1.0" encoding="UTF-8"?>
<project
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<parent>
<artifactId>java-updated-versions</artifactId>
<groupId>fr.soleil.maven.parent</groupId>
<version>0-SNAPSHOT</version>
</parent>
<groupId>fr.soleil.deviceservers</groupId>
<artifactId>TangoParser</artifactId>
<version>3.3.11</version>
<name>TangoParser</name>
<description>TangoParser Device</description>
<developers>
<developer>
<id>abeille</id>
<name>Gwenaelle Abeille</name>
<email>gwenaelle.abeille@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>
</developers>
<scm>
<connection>scm:git:git@gitlab.synchrotron-soleil.fr:software-control-system/tango-devices/calculation/tangoparser.git</connection>
<developerConnection>scm:git:git@gitlab.synchrotron-soleil.fr:software-control-system/tango-devices/calculation/tangoparser.git</developerConnection>
<url>https://gitlab.synchrotron-soleil.fr/software-control-system/tango-devices/calculation/tangoparser</url>
</scm>
<build>
<plugins>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<includes>
<include>**/Test*.java</include>
<include>**/*Test.java</include>
<include>**/*TestCase.java</include>
<include>**/*Test*.java</include>
</includes>
<systemProperties>
<property>
<name>TANGO_HOST</name>
<value>${env.TANGO_HOST}</value>
</property>
<property>
<name>org.tango.server.checkalarms</name>
<value>false</value>
</property>
</systemProperties>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.scijava</groupId>
<artifactId>jep</artifactId>
<exclusions>
<exclusion>
<artifactId>jama</artifactId>
<groupId>jama</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>gov.nist.math</groupId>
<artifactId>jama</artifactId>
</dependency>
<dependency>
<groupId>org.tango-controls</groupId>
<artifactId>JTangoClientLang</artifactId>
</dependency>
<dependency>
<groupId>org.tango-controls</groupId>
<artifactId>JTangoServer</artifactId>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-math3</artifactId>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-all</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>