forked from fanruan/finekit
richie
4 years ago
1 changed files with 199 additions and 0 deletions
@ -0,0 +1,199 @@ |
|||||||
|
<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.fanruan.api</groupId> |
||||||
|
<artifactId>finekit</artifactId> |
||||||
|
<version>10.0</version> |
||||||
|
<packaging>jar</packaging> |
||||||
|
<properties> |
||||||
|
<common-version>10.0-FEATURE-SNAPSHOT</common-version> |
||||||
|
<maven.build.timestamp.format>yyyyMMdd</maven.build.timestamp.format> |
||||||
|
<build-version>${project.version}</build-version> |
||||||
|
<build-no>${maven.build.timestamp}</build-no> |
||||||
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
||||||
|
</properties> |
||||||
|
<dependencies> |
||||||
|
<!-- core包 --> |
||||||
|
<dependency> |
||||||
|
<groupId>com.fr.third</groupId> |
||||||
|
<artifactId>fine-third</artifactId> |
||||||
|
<version>${common-version}</version> |
||||||
|
</dependency> |
||||||
|
<dependency> |
||||||
|
<groupId>com.fr.activator</groupId> |
||||||
|
<artifactId>fine-activator</artifactId> |
||||||
|
<version>${common-version}</version> |
||||||
|
<scope>compile</scope> |
||||||
|
</dependency> |
||||||
|
<dependency> |
||||||
|
<groupId>com.fr.core</groupId> |
||||||
|
<artifactId>fine-core</artifactId> |
||||||
|
<version>${common-version}</version> |
||||||
|
<scope>compile</scope> |
||||||
|
</dependency> |
||||||
|
<dependency> |
||||||
|
<groupId>com.fr.webui</groupId> |
||||||
|
<artifactId>fine-webui</artifactId> |
||||||
|
<version>${common-version}</version> |
||||||
|
<scope>compile</scope> |
||||||
|
</dependency> |
||||||
|
<!-- 数据源包 --> |
||||||
|
<dependency> |
||||||
|
<groupId>com.fr.datasource</groupId> |
||||||
|
<artifactId>fine-datasource</artifactId> |
||||||
|
<version>${common-version}</version> |
||||||
|
<scope>compile</scope> |
||||||
|
</dependency> |
||||||
|
<!-- 决策平台包 --> |
||||||
|
<dependency> |
||||||
|
<groupId>com.fr.decision</groupId> |
||||||
|
<artifactId>fine-decision</artifactId> |
||||||
|
<version>${common-version}</version> |
||||||
|
<scope>compile</scope> |
||||||
|
</dependency> |
||||||
|
<dependency> |
||||||
|
<groupId>com.fr.decision</groupId> |
||||||
|
<artifactId>fine-decision-report</artifactId> |
||||||
|
<version>${common-version}</version> |
||||||
|
<scope>compile</scope> |
||||||
|
</dependency> |
||||||
|
<!-- 定时调度包 --> |
||||||
|
<dependency> |
||||||
|
<groupId>com.fr.schedule</groupId> |
||||||
|
<artifactId>fine-schedule</artifactId> |
||||||
|
<version>${common-version}</version> |
||||||
|
<scope>compile</scope> |
||||||
|
</dependency> |
||||||
|
<dependency> |
||||||
|
<groupId>com.fr.schedule</groupId> |
||||||
|
<artifactId>fine-schedule-report</artifactId> |
||||||
|
<version>${common-version}</version> |
||||||
|
<scope>compile</scope> |
||||||
|
</dependency> |
||||||
|
|
||||||
|
<!-- 智能日志包 --> |
||||||
|
<dependency> |
||||||
|
<groupId>com.fr.intelligence</groupId> |
||||||
|
<artifactId>fine-swift</artifactId> |
||||||
|
<version>${common-version}</version> |
||||||
|
<scope>compile</scope> |
||||||
|
</dependency> |
||||||
|
<dependency> |
||||||
|
<groupId>com.fr.intelligence</groupId> |
||||||
|
<artifactId>fine-accumulator</artifactId> |
||||||
|
<version>${common-version}</version> |
||||||
|
<scope>compile</scope> |
||||||
|
</dependency> |
||||||
|
<!-- 报表引擎包 --> |
||||||
|
<dependency> |
||||||
|
<groupId>com.fr.report</groupId> |
||||||
|
<artifactId>fine-report-engine</artifactId> |
||||||
|
<version>${common-version}</version> |
||||||
|
<scope>compile</scope> |
||||||
|
</dependency> |
||||||
|
<!-- 报表设计器包 --> |
||||||
|
<dependency> |
||||||
|
<groupId>com.fr.report</groupId> |
||||||
|
<artifactId>fine-report-designer</artifactId> |
||||||
|
<version>${common-version}</version> |
||||||
|
<scope>compile</scope> |
||||||
|
</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> |
||||||
|
<dependency> |
||||||
|
<groupId>org.powermock</groupId> |
||||||
|
<artifactId>powermock-api-easymock</artifactId> |
||||||
|
<version>1.7.1</version> |
||||||
|
<scope>test</scope> |
||||||
|
</dependency> |
||||||
|
<dependency> |
||||||
|
<groupId>org.powermock</groupId> |
||||||
|
<artifactId>powermock-module-junit4</artifactId> |
||||||
|
<version>1.7.1</version> |
||||||
|
<scope>test</scope> |
||||||
|
</dependency> |
||||||
|
<dependency> |
||||||
|
<groupId>com.squareup.okhttp3</groupId> |
||||||
|
<artifactId>mockwebserver</artifactId> |
||||||
|
<version>4.0.1</version> |
||||||
|
<scope>test</scope> |
||||||
|
</dependency> |
||||||
|
</dependencies> |
||||||
|
<build> |
||||||
|
<finalName>${project.artifactId}-${project.version}-${maven.build.timestamp}</finalName> |
||||||
|
<plugins> |
||||||
|
<plugin> |
||||||
|
<groupId>org.apache.maven.plugins</groupId> |
||||||
|
<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-jar-plugin</artifactId> |
||||||
|
<version>3.1.2</version> |
||||||
|
<configuration> |
||||||
|
<archive> |
||||||
|
<manifest> |
||||||
|
<addClasspath>false</addClasspath> |
||||||
|
</manifest> |
||||||
|
</archive> |
||||||
|
</configuration> |
||||||
|
</plugin> |
||||||
|
<plugin> |
||||||
|
<groupId>org.apache.maven.plugins</groupId> |
||||||
|
<artifactId>maven-javadoc-plugin</artifactId> |
||||||
|
<version>2.9.1</version> |
||||||
|
<configuration> |
||||||
|
<reportOutputDirectory>target</reportOutputDirectory> |
||||||
|
<destDir>javadocs</destDir> |
||||||
|
</configuration> |
||||||
|
</plugin> |
||||||
|
</plugins> |
||||||
|
<resources> |
||||||
|
<resource> |
||||||
|
<directory>src/main/resources</directory> |
||||||
|
<filtering>true</filtering> |
||||||
|
</resource> |
||||||
|
</resources> |
||||||
|
</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> |
Loading…
Reference in new issue