Skip to content

Commit 804dec2

Browse files
committed
Updated minor issue...
1 parent c5ac462 commit 804dec2

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/main/java/org/mangorage/mangobotgradle/tasks/DatagenTask.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ public static void apply(Project project, MangoBotGradlePlugin gradleUtilsPlugin
168168
var conf = project.getConfigurations().getByName("library");
169169

170170
conf.getResolvedConfiguration().getFirstLevelModuleDependencies().forEach(a -> getTransitiveDep(repos, a, (module) -> {
171-
return !module.getGroup().contains("org.mangorage");
171+
return true;
172172
}, deps, idents, urls));
173173

174174
deps.forEach(System.out::println);

src/main/java/org/mangorage/mangobotgradle/tasks/RunInstallerTask.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ public RunInstallerTask(String group) {
4646
*/
4747
@Override
4848
public List<String> getArgs() {
49-
Path plugins = getProject().getRootDir().toPath().resolve("build/run/plugins");
49+
Path plugins = getProject().getProjectDir().toPath().resolve("build/run/plugins");
5050
StringBuilder builder = new StringBuilder();
5151

5252
for (File file : plugins.toFile().listFiles()) {

src/main/java/org/mangorage/mangobotgradle/tasks/SetupPluginsTask.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ public SetupPluginsTask(String group) {
6363

6464
@TaskAction
6565
public void run() {
66-
Path plugins = getProject().getRootDir().toPath().resolve("build/run/plugins");
66+
Path plugins = getProject().getProjectDir().toPath().resolve("build/run/plugins");
6767

6868
deleteFilesExceptJar(plugins);
6969

0 commit comments

Comments
 (0)