• 0.17.0

Copy unwoven classes

You can make a copy of your classes before weaving. Add the unwovenClassesDir parameter to the plugin configuration.

 <project>
     <build>
         <plugins>
             <plugin>
                 <groupId>com.jcabi</groupId>
                 <artifactId>jcabi-maven-plugin</artifactId>
                 <version>0.14</version>
                 <configuration>
                     <unwovenClassesDir>${build.directory}/unwoven</unwovenClassesDir>
                 </configuration>
             </plugin>
         </plugins>
     </build>
 </project>