All Downloads are FREE. Search and download functionalities are using the official Maven repository.

META-INF.aop.xml Maven / Gradle / Ivy

There is a newer version: 5.27.9
Show newest version
<aspectj>
    <aspects>
        <!-- declare two existing aspects to the weaver -->
        <aspect name="org.openl.rules.profiler.OpenLRulesProfiler"/>
    </aspects>

    <weaver options="-verbose">
        <!-- Weave types that are within the javax.* or org.aspectj.*
             packages. Also weave all types in the foo package that do
             not have the @NoWeave annotation. -->
        <include within="javax.*"/>
        <include within="org.aspectj.*"/>
        <include within="org.openl.rules.dt.*"/>
        <include within="org.openl.rules.calc.*"/>
        <include within="org.openl.rules.method.table.*"/>
        <include within="org.openl.rules.cmatch.*"/>
        <include within="org.openl.rules.tbasic.*"/>

        <!-- Do not weave types within the "bar" pakage -->
        <exclude within="bar.*"/>

        <!-- Dump all types within the "somepack" package,
             both before are after they are woven,
             to the "./_ajdump" folder on disk (for diagnostic purposes) -->
        <!--<dump within="somepack.*" />-->
    </weaver>

</aspectj>




© 2015 - 2024 Weber Informatics LLC | Privacy Policy