Skip to content

Commit

Permalink
更新changes.txt
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Zhou committed Jan 2, 2013
1 parent 62f0e03 commit 44d23c9
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 6 deletions.
16 changes: 16 additions & 0 deletions CHANGES_SINCE_3.2.0.txt
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,22 @@
</group>
</services:form>

为了方便从旧格式迁移到新格式,可以在项目的根目录下,执行以下maven命令:

mvn springext:convert

该maven插件被定义在pom.xml中:

<build>
<plugins>
<plugin>
<groupId>com.alibaba.citrus.tool</groupId>
<artifactId>springext-maven-plugin</artifactId>
<version>1.1</version>
</plugin>
<plugins>
</build>

* DomUtil.sameNs(element)方法的定义被修改:
通过sameNs(element)可以选出和element具有相同namespace的elements,或者不包含namespace的elements(unqualified elements)。
而修改前,unqualified elements将不会被选出来。
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
/*
* Copyright (c) 2002-2013 Alibaba Group Holding Limited.
* All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package com.alibaba.citrus.springext.util;

import static com.alibaba.citrus.springext.support.SchemaUtil.*;
Expand Down
6 changes: 0 additions & 6 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -493,12 +493,6 @@
<version>1.1</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>janino</groupId>
<artifactId>janino</artifactId>
<version>2.5.10</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>xml-apis</groupId>
<artifactId>xml-apis</artifactId>
Expand Down

0 comments on commit 44d23c9

Please sign in to comment.