File tree Expand file tree Collapse file tree 2 files changed +19
-0
lines changed
Expand file tree Collapse file tree 2 files changed +19
-0
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,10 @@ plugins {
77
88description = " Community codemods"
99
10+ application {
11+ mainClass.set(" io.codemodder.examples.CommunityCodemods" )
12+ }
13+
1014dependencies {
1115 implementation(project(" :framework:codemodder-base" ))
1216 implementation(project(" :plugins:codemodder-plugin-semgrep" ))
Original file line number Diff line number Diff line change 1+ package io .codemodder .examples ;
2+
3+ import io .codemodder .Runner ;
4+ import java .util .List ;
5+
6+ /** Runs the community codemods. */
7+ public final class CommunityCodemods {
8+
9+ /**
10+ * @param args the arguments to pass to the runner
11+ */
12+ public static void main (final String [] args ) {
13+ Runner .run (List .of (MakeJUnit5TestsFinalCodemod .class , MakeJUnit5TestsFinalCodemod .class ), args );
14+ }
15+ }
You can’t perform that action at this time.
0 commit comments