File tree Expand file tree Collapse file tree 3 files changed +2
-11
lines changed
src/main/java/org/mangorage/mangobotgradle Expand file tree Collapse file tree 3 files changed +2
-11
lines changed Original file line number Diff line number Diff line change @@ -149,15 +149,6 @@ publishing {
149149 name = ' MangoRage'
150150 }
151151 }
152- withXml {
153- def dependencies = asNode(). appendNode(' dependencies' )
154- configurations. library. getDependencies(). each {
155- def dependency = dependencies. appendNode(' dependency' )
156- dependency. appendNode(' groupId' , it. group)
157- dependency. appendNode(' artifactId' , it. name)
158- dependency. appendNode(' version' , it. version)
159- }
160- }
161152 }
162153 }
163154
Original file line number Diff line number Diff line change 2929
3030import java .util .function .Supplier ;
3131
32- public class Config {
32+ public final class Config {
3333 private boolean pluginDevMode = true ;
3434 private Jar jarTask ;
3535 private Supplier <Task > releaseTask = () -> null ;
Original file line number Diff line number Diff line change 3535import java .util .List ;
3636import java .util .Objects ;
3737
38- public class MangoBotGradlePlugin implements Plugin <Project > {
38+ public final class MangoBotGradlePlugin implements Plugin <Project > {
3939 private final Config config = new Config ();
4040 private final TaskRegistry taskRegistry = new TaskRegistry (config );
4141
You can’t perform that action at this time.
0 commit comments