2014-12-04 16:58:13 +08:00
|
|
|
<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>com.freud.opc</groupId>
|
2014-12-04 18:10:20 +08:00
|
|
|
<artifactId>OPC_Client_Utgard_Performance</artifactId>
|
2014-12-04 16:58:13 +08:00
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
|
|
<build>
|
|
|
|
<sourceDirectory>src</sourceDirectory>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<version>3.0</version>
|
|
|
|
<configuration>
|
|
|
|
<source>1.6</source>
|
|
|
|
<target>1.6</target>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
<dependencies>
|
2014-12-04 22:48:17 +08:00
|
|
|
<!--
|
2014-12-04 16:58:13 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>log4j</groupId>
|
|
|
|
<artifactId>log4j</artifactId>
|
|
|
|
<version>1.2.16</version>
|
|
|
|
</dependency>
|
2014-12-04 22:48:17 +08:00
|
|
|
-->
|
2014-12-04 16:58:13 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-log4j12</artifactId>
|
|
|
|
<version>1.7.2</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>commons-logging</groupId>
|
|
|
|
<artifactId>commons-logging</artifactId>
|
|
|
|
<version>1.2</version>
|
|
|
|
</dependency>
|
2014-12-04 18:10:20 +08:00
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.kohsuke.jinterop</groupId>
|
|
|
|
<artifactId>j-interop</artifactId>
|
|
|
|
<version>2.0.5</version>
|
|
|
|
</dependency>
|
2014-12-04 16:58:13 +08:00
|
|
|
</dependencies>
|
2014-12-04 18:10:20 +08:00
|
|
|
|
2014-12-04 16:58:13 +08:00
|
|
|
</project>
|