92 lines
3.5 KiB
XML
92 lines
3.5 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>Scienta</artifactId>
|
|
<version>1.0</version>
|
|
<packaging>jar</packaging>
|
|
<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>artifactory</id>
|
|
<name>artifactory</name>
|
|
<url>https://artifacts.psi.ch/artifactory/releases/</url>
|
|
</repository>
|
|
<repository>
|
|
<id>artifactory_libs</id>
|
|
<name>artifactory_libs</name>
|
|
<url>https://artifacts.psi.ch/artifactory/libs-snapshots-local/</url>
|
|
</repository>
|
|
<repository>
|
|
<id>central</id>
|
|
<name>Default Repository</name>
|
|
<layout>default</layout>
|
|
<url>https://repo.maven.apache.org/maven2/</url>
|
|
</repository>
|
|
|
|
<repository>
|
|
<id>scijava</id>
|
|
<name>scijava</name>
|
|
<layout>default</layout>
|
|
<url>https://maven.scijava.org/</url>
|
|
</repository>
|
|
|
|
<repository>
|
|
<id>scijavapub</id>
|
|
<name>scijavapub</name>
|
|
<layout>default</layout>
|
|
<url>https://maven.scijava.org/content/repositories/public/</url>
|
|
</repository>
|
|
|
|
<repository>
|
|
<id>jediterm</id>
|
|
<name>jediterms</name>
|
|
<url>https://packages.jetbrains.team/maven/p/ij/intellij-dependencies/</url>
|
|
</repository>
|
|
|
|
</repositories>
|
|
<name>Scienta</name>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>${project.groupId}</groupId>
|
|
<artifactId>pshell-workbench</artifactId>
|
|
<version>2.0.0</version>
|
|
</dependency>
|
|
</dependencies>
|
|
<build>
|
|
<plugins>
|
|
<!-- Generate jar with dependencies -->
|
|
<plugin>
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
<configuration>
|
|
<descriptors>
|
|
<descriptor>src/main/assembly/src.xml</descriptor>
|
|
</descriptors>
|
|
<!--
|
|
<descriptorRefs>
|
|
<descriptorRef>jar-with-dependencies</descriptorRef>
|
|
<descriptorRef>jar-with-dependencies</descriptorRef>
|
|
</descriptorRefs>
|
|
-->
|
|
<!-- Copy to PShell folder -->
|
|
<outputDirectory>../../home/extensions</outputDirectory>
|
|
</configuration>
|
|
|
|
<executions>
|
|
<execution>
|
|
<id>make-assembly</id>
|
|
<phase>package</phase>
|
|
<goals>
|
|
<goal>single</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
</project> |