关注JEECG发展历程 关注最新动态和版本, 记录JEECG成长点滴 更新日志 - 技术支持 - 招聘英才

JEECG最新版本下载 JEECG智能开发平台 - 显著提高开发效率 常见问题 - 入门视频 - 参与开源团队

商务QQ: 69893005、3102411850 商务热线(5*8小时): 010-64808099 官方邮箱: jeecgos@163.com

查看: 34598|回复: 13

JEECG 3.4.3 Eclipse(Kepler) 环境搭建说明书以及整合环境下载

[复制链接]
发表于 2014-2-20 17:29:02 | 显示全部楼层 |阅读模式
本帖最后由 凌云 于 2014-4-2 20:15 编辑

1)文档内容
JEECG 3.4.3 Eclipse(Kepler) 环境搭建.doc
说明.txt

2)整合开发环境(64位)
配置好环境变量,修改连接数据库的配置文件,直接使用。

http://pan.baidu.com/s/1dDtHX2h

发表于 2014-2-20 20:26:11 | 显示全部楼层
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2.         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  3.         <modelVersion>4.0.0</modelVersion>
  4.         <groupId>org.jeecgframework</groupId>
  5.         <artifactId>jeecg</artifactId>
  6.         <version>3.4.3-GA</version>
  7.         <packaging>war</packaging>
  8.         <properties>
  9.                 <!-- 主要依赖库的版本定义 -->
  10.                 <spring.version>3.1.1.RELEASE</spring.version>
  11.                 <hibernate.version>4.1.0.Final</hibernate.version>

  12.                 <!-- 工作流 -->
  13.                 <activiti.version>5.11</activiti.version>
  14.                 <mybatis.version>3.1.1</mybatis.version>

  15.                 <!-- 辅助依赖包 -->
  16.                 <cglib.version>2.2</cglib.version>
  17.                 <aspectj.version>1.6.9</aspectj.version>
  18.                 <jodd.version>3.3.7</jodd.version>
  19.                 <javassist.version>3.15.0-GA</javassist.version>
  20.                 <ant.version>1.6.5</ant.version>
  21.                 <spring-jpa.versoin>2.0.8</spring-jpa.versoin>
  22.                 <mybatis-spring.version>1.1.1</mybatis-spring.version>

  23.                 <!-- 工具包 -->
  24.                 <jackson.version>1.8.4</jackson.version>
  25.                 <jackson2.version>2.1.2</jackson2.version>
  26.                 <json-lib.version>2.1</json-lib.version>
  27.                 <fastjson-lib.version>1.1.37</fastjson-lib.version>
  28.                 <dom4j.version>1.6.1</dom4j.version>
  29.                 <slf4j.version>1.6.1</slf4j.version>
  30.                 <log4j.version>1.2.16</log4j.version>
  31.                 <classmate.version>0.5.4</classmate.version>
  32.                 <commons-beanutils.version>1.7.0</commons-beanutils.version>
  33.                 <commons-collections.version>3.2.1</commons-collections.version>
  34.                 <commons-chain.version>1.2</commons-chain.version>
  35.                 <commons-codec.version>1.3</commons-codec.version>
  36.                 <commons-digester.version>2.0</commons-digester.version>
  37.                 <commons-io.version>1.3.2</commons-io.version>
  38.                 <commons-fileupload.version>1.2.1</commons-fileupload.version>
  39.                 <commons-lang.version>2.6</commons-lang.version>
  40.                 <commons-lang3.version>3.1</commons-lang3.version>
  41.                 <commons-logging.version>1.0.4</commons-logging.version>
  42.                 <commons-logging-api.version>1.1</commons-logging-api.version>
  43.                 <commons-validator.version>1.3.1</commons-validator.version>
  44.                 <commons-email.version>1.2</commons-email.version>
  45.                 <ehcache.version>2.4.3</ehcache.version>
  46.                 <freemarker.version>2.3.19</freemarker.version>
  47.                 <hamcrest.version>1.3</hamcrest.version>
  48.                 <hibernate-validator.version>4.2.0.Final</hibernate-validator.version>
  49.                 <poi.version>3.9</poi.version>
  50.                 <antlr.version>3.3</antlr.version>
  51.                 <juh.version>3.2.1</juh.version>
  52.                 <unoil.version>3.2.1</unoil.version>
  53.                 <xwork-core.version>2.1.6</xwork-core.version>
  54.                 <jurt.version>3.2.1</jurt.version>
  55.                 <jacksonframework.version>1.84</jacksonframework.version>

  56.                 <!-- 数据库组件包 -->
  57.                 <commons-pool.version>1.6</commons-pool.version>
  58.                 <commons-dbcp.version>1.4</commons-dbcp.version>
  59.                 <druid.version>0.2.9</druid.version>
  60.                 <!-- oracle -->
  61.                 <ojdbc.version>10.2.0.1.0</ojdbc.version>
  62.                 <!-- mysql -->
  63.                 <mysql.version>5.1.27</mysql.version>
  64.                 <!-- sqlserver2005 -->
  65.                 <sqlserver.version>1.0.0</sqlserver.version>
  66.                 <!-- h2 -->
  67.                 <h2.version>1.3.170</h2.version>
  68.                 <!-- jtds for mssql/db2 -->
  69.                 <jtds.version>1.2.4</jtds.version>
  70.                 <!-- postgresql -->
  71.                 <postgresql.version>9.1-903.jdbc4</postgresql.version>

  72.                 <!-- 测试依赖包 -->
  73.                 <junit.version>4.7</junit.version>
  74.                 <mockito.version>1.9.5</mockito.version>
  75.                 <powermock.version>1.5</powermock.version>
  76.                 <selenium.version>2.28.0</selenium.version>
  77.                 <jetty.version>7.6.8.v20121106</jetty.version>
  78.                 <poi-ooxml-schemas.version>3.9</poi-ooxml-schemas.version>
  79.                 <poi-ooxml.version>3.9</poi-ooxml.version>
  80.                 <poi-scratchpad.version>3.9</poi-scratchpad.version>
  81.                 <!-- Plugin的属性定义 -->
  82.                 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  83.                 <jdk.version>1.6</jdk.version>
  84.                 <codegenerate.version>3.4.3</codegenerate.version>
  85.                 <minidao.version>1.3.3</minidao.version>
  86.                 <CKFinder.version>2.4</CKFinder.version>
  87.                 <jodconverter.version>3.0-beta-4</jodconverter.version>
  88.                 <pinyin4j.version>2.5.0</pinyin4j.version>
  89.                 <ojdbc14.version>10.2.0.4.0</ojdbc14.version>
  90.                 <org.quartz.version>1.6.2</org.quartz.version>
  91.                 <activation.version>1.1.1</activation.version>
  92.                 <aopalliance.version>1.0</aopalliance.version>
  93.                 <xstream.version>1.4.4</xstream.version>
  94.                 <guava.version>16.0.1</guava.version>
  95.         </properties>

  96.         <repositories>
  97.                 <repository>
  98.                         <id>central</id>
  99.                         <name>Central Repository</name>
  100.                         <url>http://repo.maven.apache.org/maven2</url>
  101.                         <snapshots>
  102.                                 <enabled>false</enabled>
  103.                         </snapshots>
  104.                 </repository>
  105.                 <repository>
  106.                         <id>spy</id>
  107.                         <name>Spy Repository</name>
  108.                         <url>http://files.couchbase.com/maven2/</url>
  109.                         <snapshots>
  110.                                 <enabled>false</enabled>
  111.                         </snapshots>
  112.                 </repository>
  113.                 <repository>
  114.                         <id>xerces</id>
  115.                         <name>xerces</name>
  116.                         <url>https://xerces.apache.org/xerces2-j/</url>
  117.                         <snapshots>
  118.                                 <enabled>false</enabled>
  119.                         </snapshots>
  120.                 </repository>
  121.                 <repository>
  122.                         <id>proxool</id>
  123.                         <name>proxool</name>
  124.                         <url>http://proxool.cvs.sourceforge.net/viewvc/proxool/</url>
  125.                         <snapshots>
  126.                                 <enabled>false</enabled>
  127.                         </snapshots>
  128.                 </repository>
  129.                 <repository>
  130.                         <id>oschinaMavenThirdparty</id>
  131.                         <name>oschinaMavenThirdparty</name>
  132.                         <url>http://maven.oschina.net/content/repositories/thirdparty/</url>
  133.                         <snapshots>
  134.                                 <enabled>false</enabled>
  135.                         </snapshots>
  136.                 </repository>
  137.                 <repository>
  138.                         <id>osc</id>
  139.                         <name>oschina</name>
  140.                         <url>http://maven.oschina.net/content/groups/public/</url>
  141.                         <snapshots>
  142.                                 <enabled>false</enabled>
  143.                         </snapshots>
  144.                 </repository>
  145.         </repositories>

  146.         <dependencies>
  147.                 <!-- activation -->
  148.                 <dependency>
  149.                         <groupId>javax.activation</groupId>
  150.                         <artifactId>activation</artifactId>
  151.                         <version>${activation.version}</version>
  152.                 </dependency>
  153.                 <!-- aopalliance -->
  154.                 <dependency>
  155.                         <groupId>aopalliance</groupId>
  156.                         <artifactId>aopalliance</artifactId>
  157.                         <version>${aopalliance.version}</version>
  158.                 </dependency>

  159.                 <!-- 自定义的依赖包 -->
  160.                 <dependency>
  161.                         <groupId>org.jeecgframework</groupId>
  162.                         <artifactId>codegenerate</artifactId>
  163.                         <version>${codegenerate.version}</version>
  164.                 </dependency>
  165.                 <dependency>
  166.                         <groupId>org.jeecgframework</groupId>
  167.                         <artifactId>minidao</artifactId>
  168.                         <version>${minidao.version}</version>
  169.                 </dependency>
  170.                 <!-- ckfinder -->
  171.                 <dependency>
  172.                         <groupId>com.ckfinder</groupId>
  173.                         <artifactId>CKFinder-updateByAlexander</artifactId>
  174.                         <version>${CKFinder.version}</version>
  175.                 </dependency>
  176.                 <dependency>
  177.                         <groupId>com.ckfinder</groupId>
  178.                         <artifactId>CKFinderPlugin-FileEditor</artifactId>
  179.                         <version>${CKFinder.version}</version>
  180.                 </dependency>
  181.                 <dependency>
  182.                         <groupId>com.ckfinder</groupId>
  183.                         <artifactId>CKFinderPlugin-ImageResize</artifactId>
  184.                         <version>${CKFinder.version}</version>
  185.                 </dependency>
  186.                 <dependency>
  187.                         <groupId>com.ckfinder</groupId>
  188.                         <artifactId>CKFinderPlugin-Watermark</artifactId>
  189.                         <version>${CKFinder.version}</version>
  190.                 </dependency>
  191.                 <dependency>
  192.                         <groupId>net.coobird</groupId>
  193.                         <artifactId>thumbnailator</artifactId>
  194.                         <version>0.4.6</version>
  195.                 </dependency>
  196.                 <dependency>
  197.                         <groupId>org.jboss</groupId>
  198.                         <artifactId>jboss-vfs</artifactId>
  199.                         <version>3.1.0.Final</version>
  200.                 </dependency>

  201.                 <dependency>
  202.                         <groupId>org.artofsolving</groupId>
  203.                         <artifactId>jodconverter</artifactId>
  204.                         <version>${jodconverter.version}</version>
  205.                 </dependency>
  206.                 <dependency>
  207.                         <groupId>pinyin4j</groupId>
  208.                         <artifactId>pinyin4j</artifactId>
  209.                         <version>${pinyin4j.version}</version>
  210.                 </dependency>
  211.                 <dependency>
  212.                         <groupId>com.oracle</groupId>
  213.                         <artifactId>ojdbc14</artifactId>
  214.                         <version>${ojdbc14.version}</version>
  215.                 </dependency>

  216.                 <dependency>
  217.                         <groupId>org.jeecgframework</groupId>
  218.                         <artifactId>postgresql</artifactId>
  219.                         <version>${postgresql.version}</version>
  220.                 </dependency>
  221.                 <dependency>
  222.                         <groupId>com.springsource</groupId>
  223.                         <artifactId>org.quartz</artifactId>
  224.                         <version>${org.quartz.version}</version>
  225.                 </dependency>
  226.                 <dependency>
  227.                         <groupId>org.springframework</groupId>
  228.                         <artifactId>org.springframework.transaction</artifactId>
  229.                         <version>${spring.version}</version>
  230.                 </dependency>
  231.                 <!-- SPRING 依赖包 -->
  232.                 <dependency>
  233.                         <groupId>org.springframework</groupId>
  234.                         <artifactId>spring-core</artifactId>
  235.                         <version>${spring.version}</version>
  236.                 </dependency>
  237.                 <dependency>
  238.                         <groupId>org.springframework</groupId>
  239.                         <artifactId>spring-beans</artifactId>
  240.                         <version>${spring.version}</version>
  241.                 </dependency>
  242.                 <dependency>
  243.                         <groupId>org.springframework</groupId>
  244.                         <artifactId>spring-context</artifactId>
  245.                         <version>${spring.version}</version>
  246.                 </dependency>
  247.                 <dependency>
  248.                         <groupId>org.springframework</groupId>
  249.                         <artifactId>spring-aop</artifactId>
  250.                         <version>${spring.version}</version>
  251.                 </dependency>
  252.                 <dependency>
  253.                         <groupId>org.springframework</groupId>
  254.                         <artifactId>spring-tx</artifactId>
  255.                         <version>${spring.version}</version>
  256.                 </dependency>

  257.                 <dependency>
  258.                         <groupId>org.springframework</groupId>
  259.                         <artifactId>spring-expression</artifactId>
  260.                         <version>${spring.version}</version>
  261.                 </dependency>
  262.                 <dependency>
  263.                         <groupId>org.springframework</groupId>
  264.                         <artifactId>spring-aspects</artifactId>
  265.                         <version>${spring.version}</version>
  266.                 </dependency>
  267.                 <dependency>
  268.                         <groupId>org.springframework</groupId>
  269.                         <artifactId>spring-context-support</artifactId>
  270.                         <version>${spring.version}</version>
  271.                 </dependency>
  272.                 <!-- SPRING end -->

  273.                 <!-- hibernate -->
  274.                 <dependency>
  275.                         <groupId>org.hibernate</groupId>
  276.                         <artifactId>hibernate-core</artifactId>
  277.                         <version>4.2.3.Final</version>
  278.                 </dependency>
  279.                 <dependency>
  280.                         <groupId>org.hibernate</groupId>
  281.                         <artifactId>hibernate-ehcache</artifactId>
  282.                         <version>${hibernate.version}</version>
  283.                 </dependency>
  284.                 <dependency>
  285.                         <groupId>org.hibernate</groupId>
  286.                         <artifactId>hibernate-proxool</artifactId>
  287.                         <version>${hibernate.version}</version>
  288.                 </dependency>
  289.                 <dependency>
  290.                         <groupId>org.hibernate.common</groupId>
  291.                         <artifactId>hibernate-commons-annotations</artifactId>
  292.                         <version>4.0.2.Final</version>
  293.                 </dependency>
  294.                 <dependency>
  295.                         <groupId>org.hibernate.javax.persistence</groupId>
  296.                         <artifactId>hibernate-jpa-2.0-api</artifactId>
  297.                         <version>1.0.1.Final</version>
  298.                 </dependency>
  299.                 <!-- poi -->
  300.                 <dependency>
  301.                         <groupId>org.apache.poi</groupId>
  302.                         <artifactId>poi</artifactId>
  303.                         <version>${poi.version}</version>
  304.                 </dependency>
  305.                 <dependency>
  306.                         <groupId>org.apache.poi</groupId>
  307.                         <artifactId>poi-ooxml</artifactId>
  308.                         <version>${poi-ooxml.version}</version>
  309.                 </dependency>
  310.                 <dependency>
  311.                         <groupId>org.apache.poi</groupId>
  312.                         <artifactId>poi-ooxml-schemas</artifactId>
  313.                         <version>${poi-ooxml-schemas.version}</version>
  314.                 </dependency>
  315.                 <dependency>
  316.                         <groupId>org.apache.poi</groupId>
  317.                         <artifactId>poi-scratchpad</artifactId>
  318.                         <version>${poi-scratchpad.version}</version>
  319.                 </dependency>


  320.                 <!-- anltr -->
  321.                 <dependency>
  322.                         <groupId>org.antlr</groupId>
  323.                         <artifactId>antlr</artifactId>
  324.                         <version>${antlr.version}</version>
  325.                 </dependency>
  326.                 <!-- spring orm -->
  327.                 <dependency>
  328.                         <groupId>org.springframework</groupId>
  329.                         <artifactId>spring-orm</artifactId>
  330.                         <version>${spring.version}</version>
  331.                 </dependency>
  332.                 <dependency>
  333.                         <groupId>org.springframework</groupId>
  334.                         <artifactId>spring-jdbc</artifactId>
  335.                         <version>${spring.version}</version>
  336.                 </dependency>

  337.                 <!--工作流依赖包 -->
  338.                 <!-- <dependency> <groupId>org.activiti</groupId> <artifactId>activiti-engine</artifactId>
  339.                         <version>${activiti.version}</version> </dependency> <dependency> <groupId>org.activiti</groupId>
  340.                         <artifactId>activiti-spring</artifactId> <version>${activiti.version}</version>
  341.                         </dependency> -->
  342.                 <!-- mybatis -->
  343.                 <dependency>
  344.                         <groupId>org.mybatis</groupId>
  345.                         <artifactId>mybatis</artifactId>
  346.                         <version>${mybatis.version}</version>
  347.                 </dependency>
  348.                 <dependency>
  349.                         <groupId>org.mybatis</groupId>
  350.                         <artifactId>mybatis-spring</artifactId>
  351.                         <version>${mybatis-spring.version}</version>
  352.                 </dependency>


  353.                 <!-- 数据库相关依赖包 -->
  354.                 <dependency>
  355.                         <groupId>commons-pool</groupId>
  356.                         <artifactId>commons-pool</artifactId>
  357.                         <version>${commons-pool.version}</version>
  358.                         <scope>runtime</scope>
  359.                 </dependency>
  360.                 <dependency>
  361.                         <groupId>commons-dbcp</groupId>
  362.                         <artifactId>commons-dbcp</artifactId>
  363.                         <version>${commons-dbcp.version}</version>
  364.                         <scope>runtime</scope>
  365.                 </dependency>
  366.                 <dependency>
  367.                         <groupId>com.alibaba</groupId>
  368.                         <artifactId>druid</artifactId>
  369.                         <version>${druid.version}</version>
  370.                         <scope>runtime</scope>
  371.                 </dependency>

  372.                 <dependency>
  373.                         <groupId>mysql</groupId>
  374.                         <artifactId>mysql-connector-java</artifactId>
  375.                         <version>${mysql.version}</version>
  376.                         <scope>runtime</scope>
  377.                 </dependency>
  378.                 <dependency>
  379.                         <groupId>org.jeecgframework</groupId>
  380.                         <artifactId>jdbc2005</artifactId>
  381.                         <version>${sqlserver.version}</version>
  382.                         <scope>runtime</scope>
  383.                 </dependency>
  384.                 <dependency>
  385.                         <groupId>net.sourceforge.jtds</groupId>
  386.                         <artifactId>jtds</artifactId>
  387.                         <version>${jtds.version}</version>
  388.                         <scope>runtime</scope>
  389.                 </dependency>

  390.                 <!-- WEB begin -->
  391.                 <!-- spring mvc -->
  392.                 <dependency>
  393.                         <groupId>org.springframework</groupId>
  394.                         <artifactId>spring-web</artifactId>
  395.                         <version>${spring.version}</version>
  396.                 </dependency>
  397.                 <dependency>
  398.                         <groupId>org.springframework</groupId>
  399.                         <artifactId>spring-webmvc</artifactId>
  400.                         <version>${spring.version}</version>
  401.                 </dependency>

  402.                 <!-- web依赖包 -->
  403.                 <dependency>
  404.                         <groupId>javax.servlet</groupId>
  405.                         <artifactId>servlet-api</artifactId>
  406.                         <version>2.5</version>
  407.                         <scope>provided</scope>
  408.                 </dependency>
  409.                 <dependency>
  410.                         <groupId>javax.servlet</groupId>
  411.                         <artifactId>jsp-api</artifactId>
  412.                         <version>2.0</version>
  413.                         <scope>provided</scope>
  414.                 </dependency>
  415.                 <dependency>
  416.                         <groupId>javax.servlet</groupId>
  417.                         <artifactId>jstl</artifactId>
  418.                         <version>1.2</version>
  419.                 </dependency>
  420.                 <!-- WEB end -->

  421.                 <!-- 辅助依赖包 -->
  422.                 <dependency>
  423.                         <groupId>cglib</groupId>
  424.                         <artifactId>cglib-nodep</artifactId>
  425.                         <version>${cglib.version}</version>
  426.                 </dependency>
  427.                 <dependency>
  428.                         <groupId>org.aspectj</groupId>
  429.                         <artifactId>aspectjrt</artifactId>
  430.                         <version>${aspectj.version}</version>
  431.                 </dependency>
  432.                 <dependency>
  433.                         <groupId>org.aspectj</groupId>
  434.                         <artifactId>aspectjweaver</artifactId>
  435.                         <version>${aspectj.version}</version>
  436.                         <scope>runtime</scope>
  437.                 </dependency>
  438.                 <dependency>
  439.                         <groupId>org.jodd</groupId>
  440.                         <artifactId>jodd</artifactId>
  441.                         <version>${jodd.version}</version>
  442.                 </dependency>
  443.                 <dependency>
  444.                         <groupId>org.javassist</groupId>
  445.                         <artifactId>javassist</artifactId>
  446.                         <version>${javassist.version}</version>
  447.                 </dependency>
  448.                 <dependency>
  449.                         <groupId>ant</groupId>
  450.                         <artifactId>ant</artifactId>
  451.                         <version>${ant.version}</version>
  452.                 </dependency>
  453.                 <!-- 工具包 -->
  454.                 <!-- JSON begin -->
  455.                 <dependency>
  456.                         <groupId>org.codehaus.jackson</groupId>
  457.                         <artifactId>jackson-mapper-asl</artifactId>
  458.                         <version>${jackson.version}</version>
  459.                 </dependency>
  460.                 <dependency>
  461.                         <groupId>org.codehaus.jackson</groupId>
  462.                         <artifactId>jackson-core-asl</artifactId>
  463.                         <version>${jackson.version}</version>
  464.                 </dependency>
  465.                 <dependency>
  466.                         <groupId>org.jeecgframework</groupId>
  467.                         <artifactId>jackson</artifactId>
  468.                         <version>${jacksonframework.version}</version>
  469.                 </dependency>

  470.                 <dependency>
  471.                         <groupId>net.sf.json-lib</groupId>
  472.                         <artifactId>json-lib</artifactId>
  473.                         <version>${json-lib.version}</version>
  474.                         <classifier>jdk15</classifier>
  475.                 </dependency>
  476.                 <dependency>
  477.                         <groupId>com.alibaba</groupId>
  478.                         <artifactId>fastjson</artifactId>
  479.                         <version>${fastjson-lib.version}</version>
  480.                 </dependency>
  481.                 <!-- JSON end -->
  482.                 <!-- dom4j -->
  483.                 <dependency>
  484.                         <groupId>dom4j</groupId>
  485.                         <artifactId>dom4j</artifactId>
  486.                         <version>${dom4j.version}</version>
  487.                         <exclusions>
  488.                                 <exclusion>
  489.                                         <groupId>xml-apis</groupId>
  490.                                         <artifactId>xml-apis</artifactId>
  491.                                 </exclusion>
  492.                         </exclusions>
  493.                 </dependency>
  494.                 <!-- slf4j -->
  495.                 <dependency>
  496.                         <groupId>org.slf4j</groupId>
  497.                         <artifactId>slf4j-api</artifactId>
  498.                         <version>${slf4j.version}</version>
  499.                 </dependency>
  500.                 <dependency>
  501.                         <groupId>org.slf4j</groupId>
  502.                         <artifactId>slf4j-log4j12</artifactId>
  503.                         <version>${slf4j.version}</version>
  504.                 </dependency>
  505.                 <!-- log4j -->
  506.                 <dependency>
  507.                         <groupId>log4j</groupId>
  508.                         <artifactId>log4j</artifactId>
  509.                         <version>${log4j.version}</version>
  510.                 </dependency>
  511.                 <!-- classmate -->
  512.                 <dependency>
  513.                         <groupId>com.fasterxml</groupId>
  514.                         <artifactId>classmate</artifactId>
  515.                         <version>${classmate.version}</version>
  516.                 </dependency>

  517.                 <!-- commons-beanutils -->
  518.                 <dependency>
  519.                         <groupId>commons-beanutils</groupId>
  520.                         <artifactId>commons-beanutils</artifactId>
  521.                         <version>${commons-beanutils.version}</version>
  522.                         <exclusions>
  523.                                 <exclusion>
  524.                                         <groupId>commons-logging</groupId>
  525.                                         <artifactId>commons-logging</artifactId>
  526.                                 </exclusion>
  527.                         </exclusions>
  528.                 </dependency>
  529.                 <!-- commons-collections -->
  530.                 <dependency>
  531.                         <groupId>commons-collections</groupId>
  532.                         <artifactId>commons-collections</artifactId>
  533.                         <version>${commons-collections.version}</version>
  534.                 </dependency>
  535.                 <!-- commons-chain -->
  536.                 <dependency>
  537.                         <groupId>commons-chain</groupId>
  538.                         <artifactId>commons-chain</artifactId>
  539.                         <version>${commons-chain.version}</version>
  540.                 </dependency>
  541.                 <!-- commons-codec -->
  542.                 <dependency>
  543.                         <groupId>commons-codec</groupId>
  544.                         <artifactId>commons-codec</artifactId>
  545.                         <version>${commons-codec.version}</version>
  546.                 </dependency>
  547.                 <!-- commons-digester -->
  548.                 <dependency>
  549.                         <groupId>commons-digester</groupId>
  550.                         <artifactId>commons-digester</artifactId>
  551.                         <version>${commons-digester.version}</version>
  552.                 </dependency>
  553.                 <!-- commons-io -->
  554.                 <dependency>
  555.                         <groupId>commons-io</groupId>
  556.                         <artifactId>commons-io</artifactId>
  557.                         <version>${commons-io.version}</version>
  558.                 </dependency>
  559.                 <!-- commons-fileupload -->
  560.                 <dependency>
  561.                         <groupId>commons-fileupload</groupId>
  562.                         <artifactId>commons-fileupload</artifactId>
  563.                         <version>${commons-fileupload.version}</version>
  564.                 </dependency>
  565.                 <!-- commons-lang -->
  566.                 <dependency>
  567.                         <groupId>commons-lang</groupId>
  568.                         <artifactId>commons-lang</artifactId>
  569.                         <version>${commons-lang.version}</version>
  570.                 </dependency>
  571.                 <!-- commons-lang3 -->
  572.                 <dependency>
  573.                         <groupId>org.apache.commons</groupId>
  574.                         <artifactId>commons-lang3</artifactId>
  575.                         <version>${commons-lang3.version}</version>
  576.                 </dependency>
  577.                 <!-- commons-email -->
  578.                 <dependency>
  579.                         <groupId>org.apache.commons</groupId>
  580.                         <artifactId>commons-email</artifactId>
  581.                         <version>${commons-email.version}</version>
  582.                 </dependency>
  583.                 <!-- commons-logging -->
  584.                 <dependency>
  585.                         <groupId>commons-logging</groupId>
  586.                         <artifactId>commons-logging</artifactId>
  587.                         <version>${commons-logging.version}</version>
  588.                 </dependency>
  589.                 <dependency>
  590.                         <groupId>commons-logging</groupId>
  591.                         <artifactId>commons-logging-api</artifactId>
  592.                         <version>${commons-logging-api.version}</version>
  593.                 </dependency>
  594.                 <!-- commons-validator -->
  595.                 <dependency>
  596.                         <groupId>commons-validator</groupId>
  597.                         <artifactId>commons-validator</artifactId>
  598.                         <version>${commons-validator.version}</version>
  599.                 </dependency>
  600.                 <!-- ehcache -->
  601.                 <dependency>
  602.                         <groupId>net.sf.ehcache</groupId>
  603.                         <artifactId>ehcache-core</artifactId>
  604.                         <version>${ehcache.version}</version>
  605.                 </dependency>
  606.                 <!-- freemarker -->
  607.                 <dependency>
  608.                         <groupId>org.freemarker</groupId>
  609.                         <artifactId>freemarker</artifactId>
  610.                         <version>${freemarker.version}</version>
  611.                 </dependency>
  612.                 <!-- hamcrest -->
  613.                 <dependency>
  614.                         <groupId>org.hamcrest</groupId>
  615.                         <artifactId>hamcrest-all</artifactId>
  616.                         <version>${hamcrest.version}</version>
  617.                 </dependency>
  618.                 <!-- JSR303 Bean Validator -->
  619.                 <dependency>
  620.                         <groupId>org.hibernate</groupId>
  621.                         <artifactId>hibernate-validator</artifactId>
  622.                         <version>${hibernate-validator.version}</version>
  623.                 </dependency>
  624.                 <dependency>
  625.                         <groupId>org.hibernate</groupId>
  626.                         <artifactId>hibernate-validator-annotation-processor</artifactId>
  627.                         <version>${hibernate-validator.version}</version>
  628.                 </dependency>

  629.                 <dependency>
  630.                         <groupId>org.openoffice</groupId>
  631.                         <artifactId>juh</artifactId>
  632.                         <version>${juh.version}</version>
  633.                 </dependency>
  634.                 <dependency>
  635.                         <groupId>com.opensymphony</groupId>
  636.                         <artifactId>xwork-core</artifactId>
  637.                         <version>${xwork-core.version}</version>
  638.                 </dependency>
  639.                 <dependency>
  640.                         <groupId>org.openoffice</groupId>
  641.                         <artifactId>jurt</artifactId>
  642.                         <version>${jurt.version}</version>
  643.                 </dependency>
  644.                 <dependency>
  645.                         <groupId>org.openoffice</groupId>
  646.                         <artifactId>unoil</artifactId>
  647.                         <version>${unoil.version}</version>
  648.                 </dependency>
  649.                 <!-- google 工具类 -->
  650.                 <dependency>
  651.                         <groupId>com.google.guava</groupId>
  652.                         <artifactId>guava</artifactId>
  653.                         <version>${guava.version}</version>
  654.                 </dependency>

  655.                 <!-- TEST begin -->
  656.                 <!-- junit -->
  657.                 <dependency>
  658.                         <groupId>junit</groupId>
  659.                         <artifactId>junit</artifactId>
  660.                         <version>${junit.version}</version>
  661.                 </dependency>

  662.                 <!-- spring -->
  663.                 <dependency>
  664.                         <groupId>org.springframework</groupId>
  665.                         <artifactId>spring-test</artifactId>
  666.                         <version>${spring.version}</version>
  667.                         <scope>test</scope>
  668.                 </dependency>
  669.                 <!-- jacob -->
  670.                 <dependency>
  671.                         <groupId>org.jeecg</groupId>
  672.                         <artifactId>jacob</artifactId>
  673.                         <version>1.0.0</version>
  674.                 </dependency>
  675.                 <!-- h2 -->
  676.                 <dependency>
  677.                         <groupId>com.h2database</groupId>
  678.                         <artifactId>h2</artifactId>
  679.                         <version>${h2.version}</version>
  680.                         <scope>test</scope>
  681.                 </dependency>
  682.                 <!--proxool -->
  683.                 <dependency>
  684.                         <groupId>com.cloudhopper.proxool</groupId>
  685.                         <artifactId>proxool</artifactId>
  686.                         <version>0.9.1</version>
  687.                 </dependency>
  688.                 <dependency>
  689.                         <groupId>com.cloudhopper.proxool</groupId>
  690.                         <artifactId>proxool-cglib</artifactId>
  691.                         <version>0.9.1</version>
  692.                 </dependency>
  693.                 <!-- highchart 图片导出 -->
  694.                 <dependency>
  695.                         <groupId>org.jeecgframework</groupId>
  696.                         <artifactId>batik-all</artifactId>
  697.                         <version>1.6</version>
  698.                 </dependency>
  699.                 <dependency>
  700.                         <groupId>org.jeecgframework</groupId>
  701.                         <artifactId>fop</artifactId>
  702.                         <version>1.0</version>
  703.                 </dependency>
  704.                 <dependency>
  705.                         <groupId>xerces</groupId>
  706.                         <artifactId>xercesImpl</artifactId>
  707.                         <version>2.7.1</version>
  708.                 </dependency>
  709.                 <dependency>
  710.                         <groupId>xml-apis</groupId>
  711.                         <artifactId>xml-apis-ext</artifactId>
  712.                         <version>1.3.04</version>
  713.                 </dependency>
  714.                 <dependency>
  715.                         <groupId>xml-apis</groupId>
  716.                         <artifactId>xml-apis</artifactId>
  717.                         <version>1.3.04</version>
  718.                 </dependency>
  719.                 <dependency>
  720.                         <groupId>org.apache.xmlgraphics</groupId>
  721.                         <artifactId>xmlgraphics-commons</artifactId>
  722.                         <version>1.4</version>
  723.                 </dependency>
  724.                 <dependency>
  725.                         <groupId>xalan</groupId>
  726.                         <artifactId>xalan</artifactId>
  727.                         <version>2.7.0</version>
  728.                 </dependency>
  729.                 <!-- Xml数据导出导入 -->
  730.                 <dependency>
  731.                         <groupId>com.thoughtworks.xstream</groupId>
  732.                         <artifactId>xstream</artifactId>
  733.                         <version>${xstream.version}</version>
  734.                 </dependency>
  735.                 <!-- json 工具类 -->
  736.                 <dependency>
  737.                         <groupId>com.google.code.gson</groupId>
  738.                         <artifactId>gson</artifactId>
  739.                         <version>2.2.4</version>
  740.                 </dependency>
  741.                 <dependency>
  742.                         <groupId>com.google.javascript</groupId>
  743.                         <artifactId>closure-compiler</artifactId>
  744.                         <version>v20131014</version>
  745.                 </dependency>
  746.                 <dependency>
  747.                   <groupId>org.jsoup</groupId>
  748.                   <artifactId>jsoup</artifactId>
  749.                   <version>1.7.3</version>
  750.                 </dependency>
  751.         </dependencies>

  752.         <organization>
  753.                 <name>JEECG微云开发平台</name>
  754.                 <url>www.jeecg.org</url>
  755.         </organization>
  756.         <build>
  757.                 <plugins>
  758.                         <plugin>
  759.                                 <groupId>org.apache.maven.plugins</groupId>
  760.                                 <artifactId>maven-compiler-plugin</artifactId>
  761.                                 <version>3.1</version>
  762.                                 <configuration>
  763.                                         <source>${jdk.version}</source>
  764.                                         <target>${jdk.version}</target>
  765.                                         <showWarnings>true</showWarnings>
  766.                                         <encoding>${project.build.sourceEncoding}</encoding>
  767.                                 </configuration>
  768.                         </plugin>
  769.                         <plugin>
  770.                                 <groupId>org.apache.maven.plugins</groupId>
  771.                                 <artifactId>maven-dependency-plugin</artifactId>
  772.                                 <version>2.8</version>
  773.                                 <executions>
  774.                                         <execution>
  775.                                                 <id>copy</id>
  776.                                                 <phase>package</phase>
  777.                                                 <goals>
  778.                                                         <goal>copy-dependencies</goal>
  779.                                                 </goals>
  780.                                                 <configuration>
  781.                                                         <outputDirectory>${basedir}/src/main/webapp/WEB-INF/lib</outputDirectory>
  782.                                                         <excludeTransitive>false</excludeTransitive>
  783.                                                         <stripVersion>false</stripVersion>
  784.                                                         <excludeArtifactIds>jsp-api,servlet-api,junit</excludeArtifactIds>
  785.                                                 </configuration>
  786.                                         </execution>
  787.                                 </executions>
  788.                         </plugin>
  789.                 </plugins>
  790.                 <finalName>jeecg</finalName>
  791.                 <resources>
  792.                         <resource>
  793.                                 <directory>src/main/java</directory>
  794.                                 <includes>
  795.                                         <include>**/*.xml</include>
  796.                                         <include>**/*.sql</include>
  797.                                         <include>**/*.ftl</include>
  798.                                 </includes>
  799.                                 <filtering>false</filtering>
  800.                         </resource>
  801.                         <resource>
  802.                                 <directory>src/main/resources</directory>
  803.                         </resource>
  804.                 </resources>

  805.                 <testResources>
  806.                         <testResource>
  807.                                 <directory>src/test/java</directory>
  808.                                 <includes>
  809.                                         <include>**/*.xml</include>
  810.                                         <include>**/*.sql</include>
  811.                                         <include>**/*.ftl</include>
  812.                                 </includes>
  813.                                 <filtering>false</filtering>
  814.                         </testResource>
  815.                         <testResource>
  816.                                 <directory>src/test/resources</directory>
  817.                         </testResource>
  818.                 </testResources>
  819.                 <outputDirectory>${basedir}/src/main/webapp/WEB-INF/classes</outputDirectory>
  820.                 <pluginManagement>
  821.                         <plugins>
  822.                                 <plugin>
  823.                                         <groupId>org.eclipse.m2e</groupId>
  824.                                         <artifactId>lifecycle-mapping</artifactId>
  825.                                         <version>1.0.0</version>
  826.                                         <configuration>
  827.                                                 <lifecycleMappingMetadata>
  828.                                                         <pluginExecutions>
  829.                                                                 <pluginExecution>
  830.                                                                         <pluginExecutionFilter>
  831.                                                                                 <groupId>org.apache.maven.plugins</groupId>
  832.                                                                                 <artifactId>maven-dependency-plugin</artifactId>
  833.                                                                                 <versionRange>[2.0,)</versionRange>
  834.                                                                                 <goals>
  835.                                                                                         <goal>copy-dependencies</goal>
  836.                                                                                 </goals>
  837.                                                                         </pluginExecutionFilter>
  838.                                                                         <action>
  839.                                                                                 <execute />
  840.                                                                         </action>
  841.                                                                 </pluginExecution>
  842.                                                         </pluginExecutions>
  843.                                                 </lifecycleMappingMetadata>
  844.                                         </configuration>
  845.                                 </plugin>
  846.                         </plugins>
  847.                 </pluginManagement>
  848.         </build>

  849. </project>
复制代码
发表于 2014-2-20 20:26:55 | 显示全部楼层
改成这个pom之后会把jar导出到WEB-INF/lib 就可以想一起开发一样运行tomcat了
发表于 2014-2-21 13:29:17 | 显示全部楼层
good
发表于 2014-2-22 15:21:34 | 显示全部楼层
不错。收藏
发表于 2014-2-22 22:01:57 | 显示全部楼层
太好了
发表于 2014-2-25 10:30:02 | 显示全部楼层
凌云,请问在搭建3.4.3的时候,运行mvn eclipse:eclipse命令老是不成功,知道是什么原因吗?


QQ图片20140225102602.jpg
发表于 2014-2-26 11:18:48 | 显示全部楼层
好 非常好 good
 楼主| 发表于 2014-4-1 10:26:18 | 显示全部楼层
整体开发环境已经提供上传
 楼主| 发表于 2014-4-1 23:27:21 | 显示全部楼层
8600034 发表于 2014-4-1 20:04
问下,32位XP可以运行吗?

32位的应该不可以, 你下载个32位的eclipse应该可以
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

快速回复 返回顶部 返回列表