Hi,

I'm creating some XML rules for a Websphere migration to JBoss, and i want to find all ibm imports in source code.

I added the following rule but it doesnt match imports with star at the end like :
import com.ibm.icu.util.*;

        <rule id="ImportIBM">
            <when>
                <javaclass references="com.ibm.{*}">
                    <location>IMPORT</location>
                </javaclass>
            </when>
            <perform>
                <iteration>
                    <hint message="Migrate to Non IBM classes" />
                </iteration>
            </perform>
        </rule>

Do you have any tip or is it a bug ?
Regards,
Gilles.