You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: gitversion-gradle/changelog-gradle/src/main/java/net/minecraftforge/gitversion/gradle/changelog/GenerateChangelogImpl.java
+3-1Lines changed: 3 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -9,6 +9,7 @@
9
9
importorg.gradle.api.file.ProjectLayout;
10
10
importorg.gradle.api.file.RegularFileProperty;
11
11
importorg.gradle.api.provider.Property;
12
+
importorg.gradle.api.provider.ProviderFactory;
12
13
importorg.gradle.api.tasks.Input;
13
14
importorg.gradle.api.tasks.Optional;
14
15
importorg.gradle.api.tasks.OutputFile;
@@ -22,6 +23,7 @@ abstract class GenerateChangelogImpl extends ToolExecBase<ChangelogProblems> imp
id 'org.gradle.toolchains.foojay-resolver-convention' version '1.0.0'// https://plugins.gradle.org/plugin/org.gradle.toolchains.foojay-resolver-convention
11
-
12
-
// NOTE: We need to load this into the classpath before GradleUtils for the service to load correctly
13
-
id 'io.freefair.javadoc-links' version '8.14' apply false// https://plugins.gradle.org/plugin/io.freefair.javadoc-links
14
-
15
-
id 'net.minecraftforge.gradleutils' version '3.3.0'// https://plugins.gradle.org/plugin/net.minecraftforge.gradleutils
16
11
}
17
12
18
13
rootProject.name ='gitversion-gradle'
@@ -22,41 +17,46 @@ include 'changelog-gradle'
22
17
23
18
enableFeaturePreview 'TYPESAFE_PROJECT_ACCESSORS'
24
19
25
-
dependencyResolutionManagement {
26
-
repositories {
27
-
//mavenLocal()
28
-
mavenCentral()
29
-
gradlePluginPortal()
30
-
maven gradleutils.forgeMaven
31
-
maven { url ='https://maven.moddinglegacy.com' } // Gradle API
20
+
// Applying plugins causes them to not have any IDE support when also applied to any build.gradle files
21
+
// The workaround for now is to use this listener here so that it can stay in settings.gradle
22
+
// Note: The project will need to apply GradleUtils in order for these repositories to be added
0 commit comments