65 lines
1.9 KiB
XML
65 lines
1.9 KiB
XML
<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.mx.soc</groupId>
|
|
<artifactId>ch.psi.mx.soc</artifactId>
|
|
<version>0.1</version>
|
|
<name>Sphere Of Confusion Measurement</name>
|
|
<build>
|
|
<sourceDirectory>src</sourceDirectory>
|
|
<!-- Added by A. Isenegger for building an executable jar file. -->
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<configuration>
|
|
<source>1.7</source>
|
|
<target>1.7</target>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
<version>2.5.4</version>
|
|
<configuration>
|
|
<archive>
|
|
<manifest>
|
|
<mainClass>ch.psi.mx.soc.SocMain</mainClass>
|
|
</manifest>
|
|
</archive>
|
|
<appendAssemblyId>false</appendAssemblyId>
|
|
<descriptorRefs>
|
|
<descriptorRef>jar-with-dependencies</descriptorRef>
|
|
</descriptorRefs>
|
|
<finalName>soc${pom.version}</finalName>
|
|
</configuration>
|
|
<executions>
|
|
<execution>
|
|
<id>make-assembly</id> <!-- this is used for inheritance merges -->
|
|
<phase>package</phase> <!-- bind to the packaging phase -->
|
|
<goals>
|
|
<goal>single</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
<repositories>
|
|
<repository>
|
|
<id>psi releases</id>
|
|
<url>http://slsyoke4.psi.ch:8081/artifactory/libs-releases</url>
|
|
</repository>
|
|
<repository>
|
|
<id>psi snapshots</id>
|
|
<url>http://slsyoke4.psi.ch:8081/artifactory/libs-snapshots</url>
|
|
</repository>
|
|
</repositories>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>ch.psi</groupId>
|
|
<artifactId>jcae</artifactId>
|
|
<version>2.0.15</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</project>
|