commit ea5ba3f1811f6fe9c3e7f594ca1c40fb4beeaeee Author: richie Date: Tue Jul 31 17:13:22 2018 +0800 10.0开发工程 diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..9094724 --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +*.iml +.idea/ +/target/ \ No newline at end of file diff --git a/pom.xml b/pom.xml new file mode 100644 index 0000000..ae29149 --- /dev/null +++ b/pom.xml @@ -0,0 +1,161 @@ + + 4.0.0 + com.fr.plugin + starter + 1.0 + pom + + 10.0-RELEASE-SNAPSHOT + + + + + com.fr.third + fine-third + ${common-version} + + + com.fr.activator + fine-activator + ${common-version} + compile + + + com.fr.core + fine-core + ${common-version} + compile + + + com.fr.webui + fine-webui + ${common-version} + compile + + + + com.fr.datasource + fine-datasource + ${common-version} + compile + + + + com.fr.decision + fine-decision + ${common-version} + compile + + + + com.fr.schedule + fine-schedule + ${common-version} + compile + + + + + com.fr.intelligence + fine-swift + ${common-version} + compile + + + com.fr.intelligence + fine-accumulator + ${common-version} + compile + + + + com.fr.report + fine-report-engine + ${common-version} + compile + + + + com.fr.report + fine-report-designer + ${common-version} + compile + + + + + io.socket + socket.io-client + 0.7.0 + compile + + + + + org.aspectj + aspectjrt + 1.6.9 + compile + + + + + org.swingexplorer + swexpl + 1.0 + + + org.swingexplorer + swag + 1.0 + + + + + + + org.apache.maven.plugins + maven-dependency-plugin + + + copy + package + + copy-dependencies + + + + ${project.basedir}/webroot/WEB-INF/lib + + + + + + + + + + fanruan + fanruan + http://mvn.finedevelop.com/repository/maven-public/ + + true + always + warn + + + + + + fanruan + fanruan + http://mvn.finedevelop.com/repository/maven-public/ + + true + always + warn + + + + \ No newline at end of file diff --git a/readme.md b/readme.md new file mode 100644 index 0000000..a3a64cc --- /dev/null +++ b/readme.md @@ -0,0 +1,13 @@ +# 工程配置指南 + +直接使用IntelliJ IDEA打开这个目录即可。 + +如果需要复制jar包到webroot/WEB-INF/lib下,可以执行命令:```mvn install``` + +## 启动设计器 + +使用com.fr.learn.Leaner启动设计器。 + +## 修改依赖的jar版本 + +只需要更改pom.xml中的common-version属性即可。 \ No newline at end of file diff --git a/src/main/java/com/fr/learn/Leaner.java b/src/main/java/com/fr/learn/Leaner.java new file mode 100644 index 0000000..2f81552 --- /dev/null +++ b/src/main/java/com/fr/learn/Leaner.java @@ -0,0 +1,10 @@ +package com.fr.learn; + +import com.fr.start.Designer; + +public class Leaner extends Designer { + + public Leaner(String[] strings) { + super(strings); + } +}