-
Notifications
You must be signed in to change notification settings - Fork 18
/
walkmod.xml
26 lines (25 loc) · 841 Bytes
/
walkmod.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<!DOCTYPE walkmod PUBLIC "-//WALKMOD//DTD" "http://www.walkmod.com/dtd/walkmod-1.0.dtd" >
<walkmod>
<plugins>
<plugin groupId="org.walkmod" artifactId="walkmod-maven-plugin"
version="[1.1.1,)" />
<plugin groupId="org.walkmod" artifactId="walkmod-dead-code-cleaner-plugin"
version="[1.0.0, 2.0.0)" />
</plugins>
<conf-providers>
<conf-provider type="walkmod:commons:maven"></conf-provider>
</conf-providers>
<chain name="main-chain">
<reader path="src/main/java">
</reader>
<walker>
<transformations>
<transformation type="walkmod:commons:unused-declarations-cleaner" />
</transformations>
</walker>
<writer path="src/main/java"
type="org.walkmod:walkmod-javalang-plugin:string-writer">
<param name="configFile">dev-files/eclipse-formatter.xml</param>
</writer>
</chain>
</walkmod>