Changes between Version 17 and Version 18 of WikiStart


Ignore:
Timestamp:
03/01/2013 02:11:30 PM (13 years ago)
Author:
chenchongqi
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • WikiStart

    v17 v18  
    88手动在仓库中下在jar文件,或者直接使用maven依赖配置。[[br]] 
    99http://ci.pc.com.cn/nexus/index.html 
    10  
     10注:如果要使用SNAPSHOT版本,请在maven本地配置settings.xml中加上仓库的SNAPSHOT容器信息 
     11{{{ 
     12<repository> 
     13   <id>snapshots-repository</id> 
     14   <name>snapshots repository</name> 
     15   <url>http://ci.pc.com.cn/nexus/content/repositories/snapshots</url> 
     16   <releases> 
     17      <enabled>false</enabled> 
     18   </releases> 
     19   <snapshots> 
     20      <enabled>true</enabled> 
     21   </snapshots> 
     22</repository> 
     23}}} 
    1124== 2.0.0 SNAPSHOT == 
    1225* 将环境依赖升级到Spring3.2.x。 
     
    1730* 生成springMVC代码和JSP模板进一步定制。 
    1831* 快速开发,聚焦应用重点功能 
    19  
     32{{{ 
     33<dependency> 
     34  <groupId>org.gelivable</groupId> 
     35  <artifactId>geli</artifactId> 
     36  <version>2.0.0-SNAPSHOT</version> 
     37</dependency> 
     38}}} 
    2039== 1.1.0 == 
    2140* 增加复合主键功能 
     
    3150</dependency> 
    3251}}} 
    33 注:因为目前1.1.0是SNAPSHOT版本,请在maven本地配置settings.xml中加上仓库的SNAPSHOT容器信息 
    34 {{{ 
    35 <repository> 
    36    <id>snapshots-repository</id> 
    37    <name>snapshots repository</name> 
    38    <url>http://ci.pc.com.cn/nexus/content/repositories/snapshots</url> 
    39    <releases> 
    40       <enabled>false</enabled> 
    41    </releases> 
    42    <snapshots> 
    43       <enabled>true</enabled> 
    44    </snapshots> 
    45 </repository> 
    46 }}} 
     52 
    4753 
    4854== 1.0.1 ==