126 lines
4.5 KiB
XML
126 lines
4.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/maven-v4_0_0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<groupId>com.itac.interface.interfaces</groupId>
|
|
<artifactId>data-interface-remote-gui</artifactId>
|
|
<packaging>jar</packaging>
|
|
<name>data-interface-remote-gui</name>
|
|
<version>${mes.interface.version}</version>
|
|
<parent>
|
|
<groupId>com.itac.interface</groupId>
|
|
<artifactId>data-interface</artifactId>
|
|
<version>${mes.interface.version}</version>
|
|
</parent>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.itac.product</groupId>
|
|
<artifactId>artes-client</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.itac.product</groupId>
|
|
<artifactId>resource-common</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.itac.interface</groupId>
|
|
<artifactId>imsinterfaces-resources-export</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.itac.interface.interfaces</groupId>
|
|
<artifactId>data-interface-basic</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.itac.interface.interfaces</groupId>
|
|
<artifactId>data-interface-mesutil</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.jgoodies</groupId>
|
|
<artifactId>jgoodies-forms</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.jgoodies</groupId>
|
|
<artifactId>jgoodies-looks</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.itac.interface.interfaces</groupId>
|
|
<artifactId>data-interface-core</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.itac.interface.interfaces</groupId>
|
|
<artifactId>data-interface-remote-gui-definition</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.itac.interface.interfaces</groupId>
|
|
<artifactId>data-interface-fuji</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.itac.interface.interfaces</groupId>
|
|
<artifactId>data-interface-fuji-definition</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.itac.interface.interfaces</groupId>
|
|
<artifactId>data-interface-cogiscan-interface</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.itac.interface.interfaces</groupId>
|
|
<artifactId>imsinterfaces-commonsmt-interface</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.itac.interface.interfaces</groupId>
|
|
<artifactId>data-interface-asm-interface</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.itac.interface.interfaces</groupId>
|
|
<artifactId>data-interface-panasonic</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.itac.interface.interfaces</groupId>
|
|
<artifactId>data-interface-yamaha-interface</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.itac.interface.interfaces</groupId>
|
|
<artifactId>data-interface-line-dashboard-interface</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.itac.interface.interfaces</groupId>
|
|
<artifactId>data-interface-machine</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.itac.interface.interfaces</groupId>
|
|
<artifactId>imsinterfaces-samsung</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.itac.interface.interfaces</groupId>
|
|
<artifactId>imsinterfaces-molding</artifactId>
|
|
</dependency>
|
|
</dependencies>
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>com.itac.tools</groupId>
|
|
<artifactId>webstart-plugin</artifactId>
|
|
<executions>
|
|
<execution>
|
|
<phase>generate-sources</phase>
|
|
<goals>
|
|
<goal>itacWebstartClient</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
<configuration>
|
|
<applicationName>DataInterface.jnlp</applicationName>
|
|
<title>iTAC.MES.DataInterface without GUI</title>
|
|
<description>iTAC.MES.DataInterface</description>
|
|
<category>standard</category>
|
|
<mainClass>com.itac.mes.datainterface.DataInterface</mainClass>
|
|
<offlineAllowed>true</offlineAllowed>
|
|
<!-- optional params -->
|
|
<shortdescription>iTAC.MES.Suite without Gui</shortdescription>
|
|
<tooltip>iTAC.MES.DataInterface</tooltip>
|
|
<icon>com/itac/resource/binaries/companyIcon.png</icon>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project>
|