You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
75 lines
2.4 KiB
XML
75 lines
2.4 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">
|
|
<parent>
|
|
<artifactId>mesnac</artifactId>
|
|
<groupId>com.foreverwin.mesnac</groupId>
|
|
<version>1.0-SNAPSHOT</version>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>dataimport</artifactId>
|
|
|
|
<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>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.foreverwin.mesnac</groupId>
|
|
<artifactId>common</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.foreverwin.modular</groupId>
|
|
<artifactId>modular-core</artifactId>
|
|
</dependency>
|
|
|
|
<!--sap mes api lib-->
|
|
<dependency>
|
|
<groupId>com.foreverwin.modular</groupId>
|
|
<artifactId>modular-melib</artifactId>
|
|
</dependency>
|
|
|
|
<!--poi support-->
|
|
<dependency>
|
|
<groupId>org.apache.poi</groupId>
|
|
<artifactId>poi</artifactId>
|
|
<version>3.8</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.apache.poi</groupId>
|
|
<artifactId>poi-ooxml</artifactId>
|
|
<version>3.8</version>
|
|
</dependency>
|
|
|
|
<!--csv support-->
|
|
<dependency>
|
|
<groupId>net.sourceforge.javacsv</groupId>
|
|
<artifactId>javacsv</artifactId>
|
|
<version>2.0</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.apache.commons</groupId>
|
|
<artifactId>commons-lang3</artifactId>
|
|
<version>3.7</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.foreverwin.mesnac</groupId>
|
|
<artifactId>anomaly</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.foreverwin.mesnac</groupId>
|
|
<artifactId>meapi</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.foreverwin.mesnac</groupId>
|
|
<artifactId>dispatch</artifactId>
|
|
</dependency>
|
|
</dependencies>
|
|
</project> |