forked from fanruan/bi-starter-latest
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.
201 lines
7.3 KiB
201 lines
7.3 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>starter</artifactId> |
|
<!-- 这里的版本用依赖的SDK版本来表示,不表示产品本身的版本 --> |
|
<version>10.0</version> |
|
<packaging>pom</packaging> |
|
<properties> |
|
<univeral-framework-version>10.0.2020.06.08</univeral-framework-version> |
|
<specific-framework-version>5.1.2020.06.15</specific-framework-version> |
|
<web-inf-bucket>${project.basedir}/webroot/WEB-INF</web-inf-bucket> |
|
</properties> |
|
<modules> |
|
<module>plugin-demo</module> |
|
</modules> |
|
<dependencies> |
|
<!-- core包 --> |
|
<dependency> |
|
<groupId>com.fr.third</groupId> |
|
<artifactId>fine-third</artifactId> |
|
<version>${univeral-framework-version}</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>com.fr.activator</groupId> |
|
<artifactId>fine-activator</artifactId> |
|
<version>${univeral-framework-version}</version> |
|
<scope>compile</scope> |
|
</dependency> |
|
<dependency> |
|
<groupId>com.fr.core</groupId> |
|
<artifactId>fine-core</artifactId> |
|
<version>${univeral-framework-version}</version> |
|
<scope>compile</scope> |
|
</dependency> |
|
<dependency> |
|
<groupId>com.fr.webui</groupId> |
|
<artifactId>fine-webui</artifactId> |
|
<version>${univeral-framework-version}</version> |
|
<scope>compile</scope> |
|
</dependency> |
|
<!-- 数据源包 --> |
|
<dependency> |
|
<groupId>com.fr.datasource</groupId> |
|
<artifactId>fine-datasource</artifactId> |
|
<version>${univeral-framework-version}</version> |
|
<scope>compile</scope> |
|
</dependency> |
|
<!-- 决策平台包 --> |
|
<dependency> |
|
<groupId>com.fr.decision</groupId> |
|
<artifactId>fine-decision</artifactId> |
|
<version>${univeral-framework-version}</version> |
|
<scope>compile</scope> |
|
</dependency> |
|
<!-- 定时调度包 --> |
|
<dependency> |
|
<groupId>com.fr.schedule</groupId> |
|
<artifactId>fine-schedule</artifactId> |
|
<version>${univeral-framework-version}</version> |
|
<scope>compile</scope> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>com.finebi</groupId> |
|
<artifactId>fine-bi-engine-third</artifactId> |
|
<version>${specific-framework-version}</version> |
|
<scope>compile</scope> |
|
</dependency> |
|
<dependency> |
|
<groupId>com.finebi</groupId> |
|
<artifactId>fine-bi-adapter</artifactId> |
|
<version>${specific-framework-version}</version> |
|
<scope>compile</scope> |
|
</dependency> |
|
<dependency> |
|
<groupId>com.finebi</groupId> |
|
<artifactId>fine-bi-engine-spider</artifactId> |
|
<version>${specific-framework-version}</version> |
|
<scope>compile</scope> |
|
</dependency> |
|
<dependency> |
|
<groupId>com.finebi</groupId> |
|
<artifactId>fine-bi-foundation</artifactId> |
|
<version>${specific-framework-version}</version> |
|
<scope>compile</scope> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>com.finebi</groupId> |
|
<artifactId>fine-decision-bi</artifactId> |
|
<version>${specific-framework-version}</version> |
|
<scope>compile</scope> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>com.finebi</groupId> |
|
<artifactId>fine-schedule-bi</artifactId> |
|
<version>${specific-framework-version}</version> |
|
<scope>compile</scope> |
|
</dependency> |
|
|
|
<!-- 智能日志包 --> |
|
<dependency> |
|
<groupId>com.fr.intelligence</groupId> |
|
<artifactId>fine-swift</artifactId> |
|
<version>${univeral-framework-version}</version> |
|
<scope>compile</scope> |
|
</dependency> |
|
<dependency> |
|
<groupId>com.fr.intelligence</groupId> |
|
<artifactId>fine-accumulator</artifactId> |
|
<version>${univeral-framework-version}</version> |
|
<scope>compile</scope> |
|
</dependency> |
|
<!-- tomcat包 --> |
|
<dependency> |
|
<groupId>org.apache.tomcat</groupId> |
|
<artifactId>tomcat-catalina</artifactId> |
|
<version>8.5.32</version> |
|
</dependency> |
|
|
|
<!-- mysql驱动 --> |
|
<dependency> |
|
<groupId>mysql</groupId> |
|
<artifactId>mysql-connector-java</artifactId> |
|
<version>5.1.44</version> |
|
</dependency> |
|
|
|
<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> |
|
|
|
</dependencies> |
|
<build> |
|
<outputDirectory>${web-inf-bucket}/classes</outputDirectory> |
|
<plugins> |
|
<plugin> |
|
<artifactId>maven-compiler-plugin</artifactId> |
|
<version>3.1</version> |
|
<configuration> |
|
<source>1.8</source> |
|
<target>1.8</target> |
|
<!--不生成target/generated-sources/annotations--> |
|
<proc>none</proc> |
|
</configuration> |
|
</plugin> |
|
<plugin> |
|
<groupId>org.apache.maven.plugins</groupId> |
|
<artifactId>maven-dependency-plugin</artifactId> |
|
<executions> |
|
<execution> |
|
<id>copy</id> |
|
<phase>package</phase> |
|
<goals> |
|
<goal>copy-dependencies</goal> |
|
</goals> |
|
<configuration> |
|
<outputDirectory> |
|
${project.basedir}/webroot/WEB-INF/lib |
|
</outputDirectory> |
|
</configuration> |
|
</execution> |
|
</executions> |
|
</plugin> |
|
</plugins> |
|
</build> |
|
<repositories> |
|
<repository> |
|
<id>fanruan</id> |
|
<name>fanruan</name> |
|
<url>http://mvn.finedevelop.com/repository/maven-public/</url> |
|
<snapshots> |
|
<enabled>true</enabled> |
|
<updatePolicy>always</updatePolicy> |
|
<checksumPolicy>warn</checksumPolicy> |
|
</snapshots> |
|
</repository> |
|
</repositories> |
|
<pluginRepositories> |
|
<pluginRepository> |
|
<id>fanruan</id> |
|
<name>fanruan</name> |
|
<url>http://mvn.finedevelop.com/repository/maven-public/</url> |
|
<snapshots> |
|
<enabled>true</enabled> |
|
<updatePolicy>always</updatePolicy> |
|
<checksumPolicy>warn</checksumPolicy> |
|
</snapshots> |
|
</pluginRepository> |
|
</pluginRepositories> |
|
</project> |