Skip to content
Permalink
1926427b32
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
20 lines (20 sloc) 964 Bytes
<aspectj>
<aspects>
<concrete-aspect name="com.maintainj.inst.J2SEAspect" extends="com.maintainj.aspect.J2SEExecutionAspect">
<pointcut name="anyExecution" expression="execution( * *.*(..)) || execution( *.new(..))"/>
<pointcut name="beforeMain" expression="execution(public static void org.omegat.Main.main(String[])) || execution(public static void org.omegat.Main.main(String...))"/>
</concrete-aspect>
</aspects>
<weaver options="-proceedOnError -nowarn -XaddSerialVersionUID -Xset:makeTjpFieldsTransient=true -Xset:avoidFinal=true">
<include within="gen..*"/>
<include within="org.omegat.convert..*"/>
<include within="org.omegat.core..*"/>
<include within="org.omegat.filters2..*"/>
<include within="org.omegat.filters3..*"/>
<include within="org.omegat.gui..*"/>
<include within="org.omegat.Main"/>
<exclude within="*ObjectFactory"/>
<exclude within="*..*CGLIB*"/>
<exclude within="com.maintainj..*"/>
</weaver>
</aspectj>