86 lines
2.9 KiB
XML
86 lines
2.9 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>fda.ui</artifactId>
|
|
<version>4.0.0</version>
|
|
<packaging>pom</packaging>
|
|
|
|
<name>ch.psi.fda.ui.parent</name>
|
|
|
|
<!-- Special NetBeans artifact repository -->
|
|
<repositories>
|
|
<repository>
|
|
<id>netbeans</id>
|
|
<name>NetBeans</name>
|
|
<url>http://bits.netbeans.org/maven2/</url>
|
|
</repository>
|
|
</repositories>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<configuration>
|
|
<encoding>UTF-8</encoding>
|
|
<source>1.7</source>
|
|
<target>1.7</target>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
<pluginManagement>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
<artifactId>nbm-maven-plugin</artifactId>
|
|
<version>3.8.1</version>
|
|
<extensions>true</extensions>
|
|
<configuration>
|
|
<brandingToken>${brandingToken}</brandingToken>
|
|
<cluster>${brandingToken}</cluster>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<!-- NetBeans 6.9+ requires JDK 6 -->
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>2.3.2</version>
|
|
<configuration>
|
|
<source>1.6</source>
|
|
<target>1.6</target>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
<version>2.3.1</version>
|
|
</plugin>
|
|
</plugins>
|
|
</pluginManagement>
|
|
</build>
|
|
|
|
<distributionManagement>
|
|
<snapshotRepository>
|
|
<id>i.snapshots</id>
|
|
<name>Artifactory Snapshots</name>
|
|
<url>http://artifacts.psi.ch/artifactory/libs-snapshots-local</url>
|
|
</snapshotRepository>
|
|
<repository>
|
|
<id>i.releases</id>
|
|
<name>Atrifactory Releases</name>
|
|
<url>http://artifacts.psi.ch/artifactory/libs-releases-local</url>
|
|
</repository>
|
|
</distributionManagement>
|
|
|
|
<modules>
|
|
<module>fda.ui.application</module>
|
|
<module>fda.ui.module</module>
|
|
</modules>
|
|
|
|
<properties>
|
|
<netbeans.version>RELEASE80</netbeans.version>
|
|
<brandingToken>fda</brandingToken>
|
|
</properties>
|
|
</project> |