ClusterForwardProvider 接口 demo 插件。
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

91 lines
3.2 KiB

<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.fr.plugin</groupId>
<artifactId>plugin-cluster-req-demo</artifactId>
<version>10.0-RELEASE-SNAPSHOT</version>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<jdk.version>1.8</jdk.version>
<plugin-web-inf-path>
<!--依据插件实际安装位置修改-->
E:\FineCode\bugfix-core-10.0\webroot\WEB-INF\plugins\plugin-com.fr.plugin.cluster.req.demo-1.0.0
</plugin-web-inf-path>
</properties>
<dependencies>
<!--单元测试用开始-->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.easymock</groupId>
<artifactId>easymock</artifactId>
<version>3.5.1</version>
<scope>test</scope>
</dependency>
<!--单元测试用结束-->
<dependency>
<groupId>com.fr.decision</groupId>
<artifactId>decision-feature</artifactId>
<version>10.0</version>
</dependency>
<dependency>
<groupId>com.fr.report</groupId>
<artifactId>engine</artifactId>
<version>10.0</version>
</dependency>
<dependency>
<groupId>com.fr.decision</groupId>
<artifactId>decision-report-feature</artifactId>
<version>10.0</version>
</dependency>
<dependency>
<groupId>com.fr.webui</groupId>
<artifactId>fine-webui</artifactId>
<version>10.0-RELEASE-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.7.7</version>
</dependency>
<dependency>
<groupId>com.fr.third</groupId>
<artifactId>fine-third</artifactId>
<version>10.0-RELEASE-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>com.fr.third.server</groupId>
<artifactId>servlet-api</artifactId>
<version>3.0</version>
</dependency>
<dependency>
<groupId>com.fr.third.driver</groupId>
<artifactId>ojdbc</artifactId>
<version>14</version>
</dependency>
</dependencies>
<build>
<outputDirectory>${plugin-web-inf-path}/classes</outputDirectory>
<testOutputDirectory>${plugin-web-inf-path}/test-classes</testOutputDirectory>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
<proc>none</proc>
</configuration>
</plugin>
</plugins>
</build>
</project>