Files
MXSC/pom.xml
gac-S_Changer eb45f26d1c
2018-06-08 16:27:07 +02:00

73 lines
2.6 KiB
XML

<?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>
<groupId>ch.psi</groupId>
<artifactId>MXSC</artifactId>
<version>1.10.0</version>
<packaging>jar</packaging>
<dependencies>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>pshell</artifactId>
<version>${project.version}</version>
</dependency>
<!-- TODO:
Remove these dependecies when jhdf5 & jcae are in centralized repo.
-->
<dependency>
<groupId>ch.sis</groupId>
<artifactId>ch.sis.jhdf5</artifactId>
<version>14.12.6</version>
</dependency>
<dependency>
<groupId>ch.psi</groupId>
<artifactId>jcae</artifactId>
<version>2.9.5</version>
</dependency>
<dependency>
<groupId>ch.psi</groupId>
<artifactId>bsread</artifactId>
<version>3.4.4</version>
</dependency>
</dependencies>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
</properties>
<repositories>
<repository>
<id>releases</id>
<name>releases</name>
<url>https://artifacts.psi.ch/artifactory/releases</url>
</repository>
<repository>
<id>libs-releases</id>
<name>libs-releases</name>
<url>https://artifacts.psi.ch/artifactory/libs-releases-local</url>
</repository>
<repository>
<id>libs-snapshots</id>
<name>libs-snapshots</name>
<url>http://artifacts.psi.ch/artifactory/libs-snapshots-local</url>
</repository>
</repositories>
<name>MXSC</name>
<build>
<!-- To remove the version numnber from jar
<finalName>${project.name}</finalName>
-->
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.3.1</version>
<configuration>
<outputDirectory>C:\Users\gac-S_Changer\Dev\PShell\home\plugins</outputDirectory>
</configuration>
</plugin>
</plugins>
</build>
</project>