mirror of
https://athene2.informatik.unibw-muenchen.de/progproj/gruppen-ht24/Gruppe-02.git
synced 2024-11-24 21:39:44 +01:00
branched
This commit is contained in:
parent
d28b17eba5
commit
4581e611ca
BIN
Projekte/.gradle/8.10.1/checksums/checksums.lock
Normal file
BIN
Projekte/.gradle/8.10.1/checksums/checksums.lock
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -0,0 +1 @@
|
||||
›sprbn5tdtzflxkuyev55xiufuiÖÓ‚mo¡=ëkâóâPq?4¦ˆclassesh˜ÞÅ[sv5o¥³µ
$ˆsources‚¤•rµ 9<>æÕDzӴ
|
@ -0,0 +1,351 @@
|
||||
package org.gradle.accessors.dm;
|
||||
|
||||
import org.gradle.api.NonNullApi;
|
||||
import org.gradle.api.artifacts.MinimalExternalModuleDependency;
|
||||
import org.gradle.plugin.use.PluginDependency;
|
||||
import org.gradle.api.artifacts.ExternalModuleDependencyBundle;
|
||||
import org.gradle.api.artifacts.MutableVersionConstraint;
|
||||
import org.gradle.api.provider.Provider;
|
||||
import org.gradle.api.model.ObjectFactory;
|
||||
import org.gradle.api.provider.ProviderFactory;
|
||||
import org.gradle.api.internal.catalog.AbstractExternalDependencyFactory;
|
||||
import org.gradle.api.internal.catalog.DefaultVersionCatalog;
|
||||
import java.util.Map;
|
||||
import org.gradle.api.internal.attributes.ImmutableAttributesFactory;
|
||||
import org.gradle.api.internal.artifacts.dsl.CapabilityNotationParser;
|
||||
import javax.inject.Inject;
|
||||
|
||||
/**
|
||||
* A catalog of dependencies accessible via the {@code libs} extension.
|
||||
*/
|
||||
@NonNullApi
|
||||
public class LibrariesForLibs extends AbstractExternalDependencyFactory {
|
||||
|
||||
private final AbstractExternalDependencyFactory owner = this;
|
||||
private final GroovyLibraryAccessors laccForGroovyLibraryAccessors = new GroovyLibraryAccessors(owner);
|
||||
private final JacksonLibraryAccessors laccForJacksonLibraryAccessors = new JacksonLibraryAccessors(owner);
|
||||
private final Jme3LibraryAccessors laccForJme3LibraryAccessors = new Jme3LibraryAccessors(owner);
|
||||
private final LemurLibraryAccessors laccForLemurLibraryAccessors = new LemurLibraryAccessors(owner);
|
||||
private final MockitoLibraryAccessors laccForMockitoLibraryAccessors = new MockitoLibraryAccessors(owner);
|
||||
private final Slf4jLibraryAccessors laccForSlf4jLibraryAccessors = new Slf4jLibraryAccessors(owner);
|
||||
private final VersionAccessors vaccForVersionAccessors = new VersionAccessors(providers, config);
|
||||
private final BundleAccessors baccForBundleAccessors = new BundleAccessors(objects, providers, config, attributesFactory, capabilityNotationParser);
|
||||
private final PluginAccessors paccForPluginAccessors = new PluginAccessors(providers, config);
|
||||
|
||||
@Inject
|
||||
public LibrariesForLibs(DefaultVersionCatalog config, ProviderFactory providers, ObjectFactory objects, ImmutableAttributesFactory attributesFactory, CapabilityNotationParser capabilityNotationParser) {
|
||||
super(config, providers, objects, attributesFactory, capabilityNotationParser);
|
||||
}
|
||||
|
||||
/**
|
||||
* Dependency provider for <b>gson</b> with <b>com.google.code.gson:gson</b> coordinates and
|
||||
* with version <b>2.11.0</b>
|
||||
* <p>
|
||||
* This dependency was declared in settings file 'settings.gradle'
|
||||
*/
|
||||
public Provider<MinimalExternalModuleDependency> getGson() {
|
||||
return create("gson");
|
||||
}
|
||||
|
||||
/**
|
||||
* Dependency provider for <b>junit4</b> with <b>junit:junit</b> coordinates and
|
||||
* with version <b>4.13.2</b>
|
||||
* <p>
|
||||
* This dependency was declared in settings file 'settings.gradle'
|
||||
*/
|
||||
public Provider<MinimalExternalModuleDependency> getJunit4() {
|
||||
return create("junit4");
|
||||
}
|
||||
|
||||
/**
|
||||
* Group of libraries at <b>groovy</b>
|
||||
*/
|
||||
public GroovyLibraryAccessors getGroovy() {
|
||||
return laccForGroovyLibraryAccessors;
|
||||
}
|
||||
|
||||
/**
|
||||
* Group of libraries at <b>jackson</b>
|
||||
*/
|
||||
public JacksonLibraryAccessors getJackson() {
|
||||
return laccForJacksonLibraryAccessors;
|
||||
}
|
||||
|
||||
/**
|
||||
* Group of libraries at <b>jme3</b>
|
||||
*/
|
||||
public Jme3LibraryAccessors getJme3() {
|
||||
return laccForJme3LibraryAccessors;
|
||||
}
|
||||
|
||||
/**
|
||||
* Group of libraries at <b>lemur</b>
|
||||
*/
|
||||
public LemurLibraryAccessors getLemur() {
|
||||
return laccForLemurLibraryAccessors;
|
||||
}
|
||||
|
||||
/**
|
||||
* Group of libraries at <b>mockito</b>
|
||||
*/
|
||||
public MockitoLibraryAccessors getMockito() {
|
||||
return laccForMockitoLibraryAccessors;
|
||||
}
|
||||
|
||||
/**
|
||||
* Group of libraries at <b>slf4j</b>
|
||||
*/
|
||||
public Slf4jLibraryAccessors getSlf4j() {
|
||||
return laccForSlf4jLibraryAccessors;
|
||||
}
|
||||
|
||||
/**
|
||||
* Group of versions at <b>versions</b>
|
||||
*/
|
||||
public VersionAccessors getVersions() {
|
||||
return vaccForVersionAccessors;
|
||||
}
|
||||
|
||||
/**
|
||||
* Group of bundles at <b>bundles</b>
|
||||
*/
|
||||
public BundleAccessors getBundles() {
|
||||
return baccForBundleAccessors;
|
||||
}
|
||||
|
||||
/**
|
||||
* Group of plugins at <b>plugins</b>
|
||||
*/
|
||||
public PluginAccessors getPlugins() {
|
||||
return paccForPluginAccessors;
|
||||
}
|
||||
|
||||
public static class GroovyLibraryAccessors extends SubDependencyFactory {
|
||||
|
||||
public GroovyLibraryAccessors(AbstractExternalDependencyFactory owner) { super(owner); }
|
||||
|
||||
/**
|
||||
* Dependency provider for <b>jsr223</b> with <b>org.apache.groovy:groovy-jsr223</b> coordinates and
|
||||
* with version <b>4.0.22</b>
|
||||
* <p>
|
||||
* This dependency was declared in settings file 'settings.gradle'
|
||||
*/
|
||||
public Provider<MinimalExternalModuleDependency> getJsr223() {
|
||||
return create("groovy.jsr223");
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
public static class JacksonLibraryAccessors extends SubDependencyFactory {
|
||||
|
||||
public JacksonLibraryAccessors(AbstractExternalDependencyFactory owner) { super(owner); }
|
||||
|
||||
/**
|
||||
* Dependency provider for <b>databind</b> with <b>com.fasterxml.jackson.core:jackson-databind</b> coordinates and
|
||||
* with version <b>2.17.2</b>
|
||||
* <p>
|
||||
* This dependency was declared in settings file 'settings.gradle'
|
||||
*/
|
||||
public Provider<MinimalExternalModuleDependency> getDatabind() {
|
||||
return create("jackson.databind");
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
public static class Jme3LibraryAccessors extends SubDependencyFactory {
|
||||
private final Jme3AwtLibraryAccessors laccForJme3AwtLibraryAccessors = new Jme3AwtLibraryAccessors(owner);
|
||||
|
||||
public Jme3LibraryAccessors(AbstractExternalDependencyFactory owner) { super(owner); }
|
||||
|
||||
/**
|
||||
* Dependency provider for <b>core</b> with <b>org.jmonkeyengine:jme3-core</b> coordinates and
|
||||
* with version reference <b>jme</b>
|
||||
* <p>
|
||||
* This dependency was declared in settings file 'settings.gradle'
|
||||
*/
|
||||
public Provider<MinimalExternalModuleDependency> getCore() {
|
||||
return create("jme3.core");
|
||||
}
|
||||
|
||||
/**
|
||||
* Dependency provider for <b>desktop</b> with <b>org.jmonkeyengine:jme3-desktop</b> coordinates and
|
||||
* with version reference <b>jme</b>
|
||||
* <p>
|
||||
* This dependency was declared in settings file 'settings.gradle'
|
||||
*/
|
||||
public Provider<MinimalExternalModuleDependency> getDesktop() {
|
||||
return create("jme3.desktop");
|
||||
}
|
||||
|
||||
/**
|
||||
* Dependency provider for <b>jogg</b> with <b>org.jmonkeyengine:jme3-jogg</b> coordinates and
|
||||
* with version reference <b>jme</b>
|
||||
* <p>
|
||||
* This dependency was declared in settings file 'settings.gradle'
|
||||
*/
|
||||
public Provider<MinimalExternalModuleDependency> getJogg() {
|
||||
return create("jme3.jogg");
|
||||
}
|
||||
|
||||
/**
|
||||
* Dependency provider for <b>lwjgl</b> with <b>org.jmonkeyengine:jme3-lwjgl</b> coordinates and
|
||||
* with version reference <b>jme</b>
|
||||
* <p>
|
||||
* This dependency was declared in settings file 'settings.gradle'
|
||||
*/
|
||||
public Provider<MinimalExternalModuleDependency> getLwjgl() {
|
||||
return create("jme3.lwjgl");
|
||||
}
|
||||
|
||||
/**
|
||||
* Dependency provider for <b>lwjgl3</b> with <b>org.jmonkeyengine:jme3-lwjgl3</b> coordinates and
|
||||
* with version reference <b>jme</b>
|
||||
* <p>
|
||||
* This dependency was declared in settings file 'settings.gradle'
|
||||
*/
|
||||
public Provider<MinimalExternalModuleDependency> getLwjgl3() {
|
||||
return create("jme3.lwjgl3");
|
||||
}
|
||||
|
||||
/**
|
||||
* Dependency provider for <b>networking</b> with <b>org.jmonkeyengine:jme3-networking</b> coordinates and
|
||||
* with version reference <b>jme</b>
|
||||
* <p>
|
||||
* This dependency was declared in settings file 'settings.gradle'
|
||||
*/
|
||||
public Provider<MinimalExternalModuleDependency> getNetworking() {
|
||||
return create("jme3.networking");
|
||||
}
|
||||
|
||||
/**
|
||||
* Dependency provider for <b>plugins</b> with <b>org.jmonkeyengine:jme3-plugins</b> coordinates and
|
||||
* with version reference <b>jme</b>
|
||||
* <p>
|
||||
* This dependency was declared in settings file 'settings.gradle'
|
||||
*/
|
||||
public Provider<MinimalExternalModuleDependency> getPlugins() {
|
||||
return create("jme3.plugins");
|
||||
}
|
||||
|
||||
/**
|
||||
* Dependency provider for <b>testdata</b> with <b>org.jmonkeyengine:jme3-testdata</b> coordinates and
|
||||
* with version reference <b>jme</b>
|
||||
* <p>
|
||||
* This dependency was declared in settings file 'settings.gradle'
|
||||
*/
|
||||
public Provider<MinimalExternalModuleDependency> getTestdata() {
|
||||
return create("jme3.testdata");
|
||||
}
|
||||
|
||||
/**
|
||||
* Group of libraries at <b>jme3.awt</b>
|
||||
*/
|
||||
public Jme3AwtLibraryAccessors getAwt() {
|
||||
return laccForJme3AwtLibraryAccessors;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
public static class Jme3AwtLibraryAccessors extends SubDependencyFactory {
|
||||
|
||||
public Jme3AwtLibraryAccessors(AbstractExternalDependencyFactory owner) { super(owner); }
|
||||
|
||||
/**
|
||||
* Dependency provider for <b>dialogs</b> with <b>org.jmonkeyengine:jme3-awt-dialogs</b> coordinates and
|
||||
* with version reference <b>jme</b>
|
||||
* <p>
|
||||
* This dependency was declared in settings file 'settings.gradle'
|
||||
*/
|
||||
public Provider<MinimalExternalModuleDependency> getDialogs() {
|
||||
return create("jme3.awt.dialogs");
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
public static class LemurLibraryAccessors extends SubDependencyFactory implements DependencyNotationSupplier {
|
||||
|
||||
public LemurLibraryAccessors(AbstractExternalDependencyFactory owner) { super(owner); }
|
||||
|
||||
/**
|
||||
* Dependency provider for <b>lemur</b> with <b>com.simsilica:lemur</b> coordinates and
|
||||
* with version <b>1.16.0</b>
|
||||
* <p>
|
||||
* This dependency was declared in settings file 'settings.gradle'
|
||||
*/
|
||||
public Provider<MinimalExternalModuleDependency> asProvider() {
|
||||
return create("lemur");
|
||||
}
|
||||
|
||||
/**
|
||||
* Dependency provider for <b>proto</b> with <b>com.simsilica:lemur-proto</b> coordinates and
|
||||
* with version <b>1.13.0</b>
|
||||
* <p>
|
||||
* This dependency was declared in settings file 'settings.gradle'
|
||||
*/
|
||||
public Provider<MinimalExternalModuleDependency> getProto() {
|
||||
return create("lemur.proto");
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
public static class MockitoLibraryAccessors extends SubDependencyFactory {
|
||||
|
||||
public MockitoLibraryAccessors(AbstractExternalDependencyFactory owner) { super(owner); }
|
||||
|
||||
/**
|
||||
* Dependency provider for <b>core</b> with <b>org.mockito:mockito-core</b> coordinates and
|
||||
* with version <b>3.+</b>
|
||||
* <p>
|
||||
* This dependency was declared in settings file 'settings.gradle'
|
||||
*/
|
||||
public Provider<MinimalExternalModuleDependency> getCore() {
|
||||
return create("mockito.core");
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
public static class Slf4jLibraryAccessors extends SubDependencyFactory {
|
||||
|
||||
public Slf4jLibraryAccessors(AbstractExternalDependencyFactory owner) { super(owner); }
|
||||
|
||||
/**
|
||||
* Dependency provider for <b>nop</b> with <b>org.slf4j:slf4j-nop</b> coordinates and
|
||||
* with version <b>2.0.13</b>
|
||||
* <p>
|
||||
* This dependency was declared in settings file 'settings.gradle'
|
||||
*/
|
||||
public Provider<MinimalExternalModuleDependency> getNop() {
|
||||
return create("slf4j.nop");
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
public static class VersionAccessors extends VersionFactory {
|
||||
|
||||
public VersionAccessors(ProviderFactory providers, DefaultVersionCatalog config) { super(providers, config); }
|
||||
|
||||
/**
|
||||
* Version alias <b>jme</b> with value <b>3.6.1-stable</b>
|
||||
* <p>
|
||||
* If the version is a rich version and cannot be represented as a
|
||||
* single version string, an empty string is returned.
|
||||
* <p>
|
||||
* This version was declared in settings file 'settings.gradle'
|
||||
*/
|
||||
public Provider<String> getJme() { return getVersion("jme"); }
|
||||
|
||||
}
|
||||
|
||||
public static class BundleAccessors extends BundleFactory {
|
||||
|
||||
public BundleAccessors(ObjectFactory objects, ProviderFactory providers, DefaultVersionCatalog config, ImmutableAttributesFactory attributesFactory, CapabilityNotationParser capabilityNotationParser) { super(objects, providers, config, attributesFactory, capabilityNotationParser); }
|
||||
|
||||
}
|
||||
|
||||
public static class PluginAccessors extends PluginFactory {
|
||||
|
||||
public PluginAccessors(ProviderFactory providers, DefaultVersionCatalog config) { super(providers, config); }
|
||||
|
||||
}
|
||||
|
||||
}
|
@ -0,0 +1,483 @@
|
||||
package org.gradle.accessors.dm;
|
||||
|
||||
import org.gradle.api.NonNullApi;
|
||||
import org.gradle.api.artifacts.MinimalExternalModuleDependency;
|
||||
import org.gradle.plugin.use.PluginDependency;
|
||||
import org.gradle.api.artifacts.ExternalModuleDependencyBundle;
|
||||
import org.gradle.api.artifacts.MutableVersionConstraint;
|
||||
import org.gradle.api.provider.Provider;
|
||||
import org.gradle.api.model.ObjectFactory;
|
||||
import org.gradle.api.provider.ProviderFactory;
|
||||
import org.gradle.api.internal.catalog.AbstractExternalDependencyFactory;
|
||||
import org.gradle.api.internal.catalog.DefaultVersionCatalog;
|
||||
import java.util.Map;
|
||||
import org.gradle.api.internal.attributes.ImmutableAttributesFactory;
|
||||
import org.gradle.api.internal.artifacts.dsl.CapabilityNotationParser;
|
||||
import javax.inject.Inject;
|
||||
|
||||
/**
|
||||
* A catalog of dependencies accessible via the {@code libs} extension.
|
||||
*/
|
||||
@NonNullApi
|
||||
public class LibrariesForLibsInPluginsBlock extends AbstractExternalDependencyFactory {
|
||||
|
||||
private final AbstractExternalDependencyFactory owner = this;
|
||||
private final GroovyLibraryAccessors laccForGroovyLibraryAccessors = new GroovyLibraryAccessors(owner);
|
||||
private final JacksonLibraryAccessors laccForJacksonLibraryAccessors = new JacksonLibraryAccessors(owner);
|
||||
private final Jme3LibraryAccessors laccForJme3LibraryAccessors = new Jme3LibraryAccessors(owner);
|
||||
private final LemurLibraryAccessors laccForLemurLibraryAccessors = new LemurLibraryAccessors(owner);
|
||||
private final MockitoLibraryAccessors laccForMockitoLibraryAccessors = new MockitoLibraryAccessors(owner);
|
||||
private final Slf4jLibraryAccessors laccForSlf4jLibraryAccessors = new Slf4jLibraryAccessors(owner);
|
||||
private final VersionAccessors vaccForVersionAccessors = new VersionAccessors(providers, config);
|
||||
private final BundleAccessors baccForBundleAccessors = new BundleAccessors(objects, providers, config, attributesFactory, capabilityNotationParser);
|
||||
private final PluginAccessors paccForPluginAccessors = new PluginAccessors(providers, config);
|
||||
|
||||
@Inject
|
||||
public LibrariesForLibsInPluginsBlock(DefaultVersionCatalog config, ProviderFactory providers, ObjectFactory objects, ImmutableAttributesFactory attributesFactory, CapabilityNotationParser capabilityNotationParser) {
|
||||
super(config, providers, objects, attributesFactory, capabilityNotationParser);
|
||||
}
|
||||
|
||||
/**
|
||||
* Dependency provider for <b>gson</b> with <b>com.google.code.gson:gson</b> coordinates and
|
||||
* with version <b>2.11.0</b>
|
||||
* <p>
|
||||
* This dependency was declared in settings file 'settings.gradle'
|
||||
*
|
||||
* @deprecated Will be removed in Gradle 9.0.
|
||||
*/
|
||||
@Deprecated
|
||||
public Provider<MinimalExternalModuleDependency> getGson() {
|
||||
org.gradle.internal.deprecation.DeprecationLogger.deprecateBehaviour("Accessing libraries or bundles from version catalogs in the plugins block.").withAdvice("Only use versions or plugins from catalogs in the plugins block.").willBeRemovedInGradle9().withUpgradeGuideSection(8, "kotlin_dsl_deprecated_catalogs_plugins_block").nagUser();
|
||||
return create("gson");
|
||||
}
|
||||
|
||||
/**
|
||||
* Dependency provider for <b>junit4</b> with <b>junit:junit</b> coordinates and
|
||||
* with version <b>4.13.2</b>
|
||||
* <p>
|
||||
* This dependency was declared in settings file 'settings.gradle'
|
||||
*
|
||||
* @deprecated Will be removed in Gradle 9.0.
|
||||
*/
|
||||
@Deprecated
|
||||
public Provider<MinimalExternalModuleDependency> getJunit4() {
|
||||
org.gradle.internal.deprecation.DeprecationLogger.deprecateBehaviour("Accessing libraries or bundles from version catalogs in the plugins block.").withAdvice("Only use versions or plugins from catalogs in the plugins block.").willBeRemovedInGradle9().withUpgradeGuideSection(8, "kotlin_dsl_deprecated_catalogs_plugins_block").nagUser();
|
||||
return create("junit4");
|
||||
}
|
||||
|
||||
/**
|
||||
* Group of libraries at <b>groovy</b>
|
||||
*
|
||||
* @deprecated Will be removed in Gradle 9.0.
|
||||
*/
|
||||
@Deprecated
|
||||
public GroovyLibraryAccessors getGroovy() {
|
||||
org.gradle.internal.deprecation.DeprecationLogger.deprecateBehaviour("Accessing libraries or bundles from version catalogs in the plugins block.").withAdvice("Only use versions or plugins from catalogs in the plugins block.").willBeRemovedInGradle9().withUpgradeGuideSection(8, "kotlin_dsl_deprecated_catalogs_plugins_block").nagUser();
|
||||
return laccForGroovyLibraryAccessors;
|
||||
}
|
||||
|
||||
/**
|
||||
* Group of libraries at <b>jackson</b>
|
||||
*
|
||||
* @deprecated Will be removed in Gradle 9.0.
|
||||
*/
|
||||
@Deprecated
|
||||
public JacksonLibraryAccessors getJackson() {
|
||||
org.gradle.internal.deprecation.DeprecationLogger.deprecateBehaviour("Accessing libraries or bundles from version catalogs in the plugins block.").withAdvice("Only use versions or plugins from catalogs in the plugins block.").willBeRemovedInGradle9().withUpgradeGuideSection(8, "kotlin_dsl_deprecated_catalogs_plugins_block").nagUser();
|
||||
return laccForJacksonLibraryAccessors;
|
||||
}
|
||||
|
||||
/**
|
||||
* Group of libraries at <b>jme3</b>
|
||||
*
|
||||
* @deprecated Will be removed in Gradle 9.0.
|
||||
*/
|
||||
@Deprecated
|
||||
public Jme3LibraryAccessors getJme3() {
|
||||
org.gradle.internal.deprecation.DeprecationLogger.deprecateBehaviour("Accessing libraries or bundles from version catalogs in the plugins block.").withAdvice("Only use versions or plugins from catalogs in the plugins block.").willBeRemovedInGradle9().withUpgradeGuideSection(8, "kotlin_dsl_deprecated_catalogs_plugins_block").nagUser();
|
||||
return laccForJme3LibraryAccessors;
|
||||
}
|
||||
|
||||
/**
|
||||
* Group of libraries at <b>lemur</b>
|
||||
*
|
||||
* @deprecated Will be removed in Gradle 9.0.
|
||||
*/
|
||||
@Deprecated
|
||||
public LemurLibraryAccessors getLemur() {
|
||||
org.gradle.internal.deprecation.DeprecationLogger.deprecateBehaviour("Accessing libraries or bundles from version catalogs in the plugins block.").withAdvice("Only use versions or plugins from catalogs in the plugins block.").willBeRemovedInGradle9().withUpgradeGuideSection(8, "kotlin_dsl_deprecated_catalogs_plugins_block").nagUser();
|
||||
return laccForLemurLibraryAccessors;
|
||||
}
|
||||
|
||||
/**
|
||||
* Group of libraries at <b>mockito</b>
|
||||
*
|
||||
* @deprecated Will be removed in Gradle 9.0.
|
||||
*/
|
||||
@Deprecated
|
||||
public MockitoLibraryAccessors getMockito() {
|
||||
org.gradle.internal.deprecation.DeprecationLogger.deprecateBehaviour("Accessing libraries or bundles from version catalogs in the plugins block.").withAdvice("Only use versions or plugins from catalogs in the plugins block.").willBeRemovedInGradle9().withUpgradeGuideSection(8, "kotlin_dsl_deprecated_catalogs_plugins_block").nagUser();
|
||||
return laccForMockitoLibraryAccessors;
|
||||
}
|
||||
|
||||
/**
|
||||
* Group of libraries at <b>slf4j</b>
|
||||
*
|
||||
* @deprecated Will be removed in Gradle 9.0.
|
||||
*/
|
||||
@Deprecated
|
||||
public Slf4jLibraryAccessors getSlf4j() {
|
||||
org.gradle.internal.deprecation.DeprecationLogger.deprecateBehaviour("Accessing libraries or bundles from version catalogs in the plugins block.").withAdvice("Only use versions or plugins from catalogs in the plugins block.").willBeRemovedInGradle9().withUpgradeGuideSection(8, "kotlin_dsl_deprecated_catalogs_plugins_block").nagUser();
|
||||
return laccForSlf4jLibraryAccessors;
|
||||
}
|
||||
|
||||
/**
|
||||
* Group of versions at <b>versions</b>
|
||||
*/
|
||||
public VersionAccessors getVersions() {
|
||||
return vaccForVersionAccessors;
|
||||
}
|
||||
|
||||
/**
|
||||
* Group of bundles at <b>bundles</b>
|
||||
*
|
||||
* @deprecated Will be removed in Gradle 9.0.
|
||||
*/
|
||||
@Deprecated
|
||||
public BundleAccessors getBundles() {
|
||||
org.gradle.internal.deprecation.DeprecationLogger.deprecateBehaviour("Accessing libraries or bundles from version catalogs in the plugins block.").withAdvice("Only use versions or plugins from catalogs in the plugins block.").willBeRemovedInGradle9().withUpgradeGuideSection(8, "kotlin_dsl_deprecated_catalogs_plugins_block").nagUser();
|
||||
return baccForBundleAccessors;
|
||||
}
|
||||
|
||||
/**
|
||||
* Group of plugins at <b>plugins</b>
|
||||
*/
|
||||
public PluginAccessors getPlugins() {
|
||||
return paccForPluginAccessors;
|
||||
}
|
||||
|
||||
/**
|
||||
* @deprecated Will be removed in Gradle 9.0.
|
||||
*/
|
||||
@Deprecated
|
||||
public static class GroovyLibraryAccessors extends SubDependencyFactory {
|
||||
|
||||
public GroovyLibraryAccessors(AbstractExternalDependencyFactory owner) { super(owner); }
|
||||
|
||||
/**
|
||||
* Dependency provider for <b>jsr223</b> with <b>org.apache.groovy:groovy-jsr223</b> coordinates and
|
||||
* with version <b>4.0.22</b>
|
||||
* <p>
|
||||
* This dependency was declared in settings file 'settings.gradle'
|
||||
*
|
||||
* @deprecated Will be removed in Gradle 9.0.
|
||||
*/
|
||||
@Deprecated
|
||||
public Provider<MinimalExternalModuleDependency> getJsr223() {
|
||||
org.gradle.internal.deprecation.DeprecationLogger.deprecateBehaviour("Accessing libraries or bundles from version catalogs in the plugins block.").withAdvice("Only use versions or plugins from catalogs in the plugins block.").willBeRemovedInGradle9().withUpgradeGuideSection(8, "kotlin_dsl_deprecated_catalogs_plugins_block").nagUser();
|
||||
return create("groovy.jsr223");
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* @deprecated Will be removed in Gradle 9.0.
|
||||
*/
|
||||
@Deprecated
|
||||
public static class JacksonLibraryAccessors extends SubDependencyFactory {
|
||||
|
||||
public JacksonLibraryAccessors(AbstractExternalDependencyFactory owner) { super(owner); }
|
||||
|
||||
/**
|
||||
* Dependency provider for <b>databind</b> with <b>com.fasterxml.jackson.core:jackson-databind</b> coordinates and
|
||||
* with version <b>2.17.2</b>
|
||||
* <p>
|
||||
* This dependency was declared in settings file 'settings.gradle'
|
||||
*
|
||||
* @deprecated Will be removed in Gradle 9.0.
|
||||
*/
|
||||
@Deprecated
|
||||
public Provider<MinimalExternalModuleDependency> getDatabind() {
|
||||
org.gradle.internal.deprecation.DeprecationLogger.deprecateBehaviour("Accessing libraries or bundles from version catalogs in the plugins block.").withAdvice("Only use versions or plugins from catalogs in the plugins block.").willBeRemovedInGradle9().withUpgradeGuideSection(8, "kotlin_dsl_deprecated_catalogs_plugins_block").nagUser();
|
||||
return create("jackson.databind");
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* @deprecated Will be removed in Gradle 9.0.
|
||||
*/
|
||||
@Deprecated
|
||||
public static class Jme3LibraryAccessors extends SubDependencyFactory {
|
||||
private final Jme3AwtLibraryAccessors laccForJme3AwtLibraryAccessors = new Jme3AwtLibraryAccessors(owner);
|
||||
|
||||
public Jme3LibraryAccessors(AbstractExternalDependencyFactory owner) { super(owner); }
|
||||
|
||||
/**
|
||||
* Dependency provider for <b>core</b> with <b>org.jmonkeyengine:jme3-core</b> coordinates and
|
||||
* with version reference <b>jme</b>
|
||||
* <p>
|
||||
* This dependency was declared in settings file 'settings.gradle'
|
||||
*
|
||||
* @deprecated Will be removed in Gradle 9.0.
|
||||
*/
|
||||
@Deprecated
|
||||
public Provider<MinimalExternalModuleDependency> getCore() {
|
||||
org.gradle.internal.deprecation.DeprecationLogger.deprecateBehaviour("Accessing libraries or bundles from version catalogs in the plugins block.").withAdvice("Only use versions or plugins from catalogs in the plugins block.").willBeRemovedInGradle9().withUpgradeGuideSection(8, "kotlin_dsl_deprecated_catalogs_plugins_block").nagUser();
|
||||
return create("jme3.core");
|
||||
}
|
||||
|
||||
/**
|
||||
* Dependency provider for <b>desktop</b> with <b>org.jmonkeyengine:jme3-desktop</b> coordinates and
|
||||
* with version reference <b>jme</b>
|
||||
* <p>
|
||||
* This dependency was declared in settings file 'settings.gradle'
|
||||
*
|
||||
* @deprecated Will be removed in Gradle 9.0.
|
||||
*/
|
||||
@Deprecated
|
||||
public Provider<MinimalExternalModuleDependency> getDesktop() {
|
||||
org.gradle.internal.deprecation.DeprecationLogger.deprecateBehaviour("Accessing libraries or bundles from version catalogs in the plugins block.").withAdvice("Only use versions or plugins from catalogs in the plugins block.").willBeRemovedInGradle9().withUpgradeGuideSection(8, "kotlin_dsl_deprecated_catalogs_plugins_block").nagUser();
|
||||
return create("jme3.desktop");
|
||||
}
|
||||
|
||||
/**
|
||||
* Dependency provider for <b>jogg</b> with <b>org.jmonkeyengine:jme3-jogg</b> coordinates and
|
||||
* with version reference <b>jme</b>
|
||||
* <p>
|
||||
* This dependency was declared in settings file 'settings.gradle'
|
||||
*
|
||||
* @deprecated Will be removed in Gradle 9.0.
|
||||
*/
|
||||
@Deprecated
|
||||
public Provider<MinimalExternalModuleDependency> getJogg() {
|
||||
org.gradle.internal.deprecation.DeprecationLogger.deprecateBehaviour("Accessing libraries or bundles from version catalogs in the plugins block.").withAdvice("Only use versions or plugins from catalogs in the plugins block.").willBeRemovedInGradle9().withUpgradeGuideSection(8, "kotlin_dsl_deprecated_catalogs_plugins_block").nagUser();
|
||||
return create("jme3.jogg");
|
||||
}
|
||||
|
||||
/**
|
||||
* Dependency provider for <b>lwjgl</b> with <b>org.jmonkeyengine:jme3-lwjgl</b> coordinates and
|
||||
* with version reference <b>jme</b>
|
||||
* <p>
|
||||
* This dependency was declared in settings file 'settings.gradle'
|
||||
*
|
||||
* @deprecated Will be removed in Gradle 9.0.
|
||||
*/
|
||||
@Deprecated
|
||||
public Provider<MinimalExternalModuleDependency> getLwjgl() {
|
||||
org.gradle.internal.deprecation.DeprecationLogger.deprecateBehaviour("Accessing libraries or bundles from version catalogs in the plugins block.").withAdvice("Only use versions or plugins from catalogs in the plugins block.").willBeRemovedInGradle9().withUpgradeGuideSection(8, "kotlin_dsl_deprecated_catalogs_plugins_block").nagUser();
|
||||
return create("jme3.lwjgl");
|
||||
}
|
||||
|
||||
/**
|
||||
* Dependency provider for <b>lwjgl3</b> with <b>org.jmonkeyengine:jme3-lwjgl3</b> coordinates and
|
||||
* with version reference <b>jme</b>
|
||||
* <p>
|
||||
* This dependency was declared in settings file 'settings.gradle'
|
||||
*
|
||||
* @deprecated Will be removed in Gradle 9.0.
|
||||
*/
|
||||
@Deprecated
|
||||
public Provider<MinimalExternalModuleDependency> getLwjgl3() {
|
||||
org.gradle.internal.deprecation.DeprecationLogger.deprecateBehaviour("Accessing libraries or bundles from version catalogs in the plugins block.").withAdvice("Only use versions or plugins from catalogs in the plugins block.").willBeRemovedInGradle9().withUpgradeGuideSection(8, "kotlin_dsl_deprecated_catalogs_plugins_block").nagUser();
|
||||
return create("jme3.lwjgl3");
|
||||
}
|
||||
|
||||
/**
|
||||
* Dependency provider for <b>networking</b> with <b>org.jmonkeyengine:jme3-networking</b> coordinates and
|
||||
* with version reference <b>jme</b>
|
||||
* <p>
|
||||
* This dependency was declared in settings file 'settings.gradle'
|
||||
*
|
||||
* @deprecated Will be removed in Gradle 9.0.
|
||||
*/
|
||||
@Deprecated
|
||||
public Provider<MinimalExternalModuleDependency> getNetworking() {
|
||||
org.gradle.internal.deprecation.DeprecationLogger.deprecateBehaviour("Accessing libraries or bundles from version catalogs in the plugins block.").withAdvice("Only use versions or plugins from catalogs in the plugins block.").willBeRemovedInGradle9().withUpgradeGuideSection(8, "kotlin_dsl_deprecated_catalogs_plugins_block").nagUser();
|
||||
return create("jme3.networking");
|
||||
}
|
||||
|
||||
/**
|
||||
* Dependency provider for <b>plugins</b> with <b>org.jmonkeyengine:jme3-plugins</b> coordinates and
|
||||
* with version reference <b>jme</b>
|
||||
* <p>
|
||||
* This dependency was declared in settings file 'settings.gradle'
|
||||
*
|
||||
* @deprecated Will be removed in Gradle 9.0.
|
||||
*/
|
||||
@Deprecated
|
||||
public Provider<MinimalExternalModuleDependency> getPlugins() {
|
||||
org.gradle.internal.deprecation.DeprecationLogger.deprecateBehaviour("Accessing libraries or bundles from version catalogs in the plugins block.").withAdvice("Only use versions or plugins from catalogs in the plugins block.").willBeRemovedInGradle9().withUpgradeGuideSection(8, "kotlin_dsl_deprecated_catalogs_plugins_block").nagUser();
|
||||
return create("jme3.plugins");
|
||||
}
|
||||
|
||||
/**
|
||||
* Dependency provider for <b>testdata</b> with <b>org.jmonkeyengine:jme3-testdata</b> coordinates and
|
||||
* with version reference <b>jme</b>
|
||||
* <p>
|
||||
* This dependency was declared in settings file 'settings.gradle'
|
||||
*
|
||||
* @deprecated Will be removed in Gradle 9.0.
|
||||
*/
|
||||
@Deprecated
|
||||
public Provider<MinimalExternalModuleDependency> getTestdata() {
|
||||
org.gradle.internal.deprecation.DeprecationLogger.deprecateBehaviour("Accessing libraries or bundles from version catalogs in the plugins block.").withAdvice("Only use versions or plugins from catalogs in the plugins block.").willBeRemovedInGradle9().withUpgradeGuideSection(8, "kotlin_dsl_deprecated_catalogs_plugins_block").nagUser();
|
||||
return create("jme3.testdata");
|
||||
}
|
||||
|
||||
/**
|
||||
* Group of libraries at <b>jme3.awt</b>
|
||||
*
|
||||
* @deprecated Will be removed in Gradle 9.0.
|
||||
*/
|
||||
@Deprecated
|
||||
public Jme3AwtLibraryAccessors getAwt() {
|
||||
org.gradle.internal.deprecation.DeprecationLogger.deprecateBehaviour("Accessing libraries or bundles from version catalogs in the plugins block.").withAdvice("Only use versions or plugins from catalogs in the plugins block.").willBeRemovedInGradle9().withUpgradeGuideSection(8, "kotlin_dsl_deprecated_catalogs_plugins_block").nagUser();
|
||||
return laccForJme3AwtLibraryAccessors;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* @deprecated Will be removed in Gradle 9.0.
|
||||
*/
|
||||
@Deprecated
|
||||
public static class Jme3AwtLibraryAccessors extends SubDependencyFactory {
|
||||
|
||||
public Jme3AwtLibraryAccessors(AbstractExternalDependencyFactory owner) { super(owner); }
|
||||
|
||||
/**
|
||||
* Dependency provider for <b>dialogs</b> with <b>org.jmonkeyengine:jme3-awt-dialogs</b> coordinates and
|
||||
* with version reference <b>jme</b>
|
||||
* <p>
|
||||
* This dependency was declared in settings file 'settings.gradle'
|
||||
*
|
||||
* @deprecated Will be removed in Gradle 9.0.
|
||||
*/
|
||||
@Deprecated
|
||||
public Provider<MinimalExternalModuleDependency> getDialogs() {
|
||||
org.gradle.internal.deprecation.DeprecationLogger.deprecateBehaviour("Accessing libraries or bundles from version catalogs in the plugins block.").withAdvice("Only use versions or plugins from catalogs in the plugins block.").willBeRemovedInGradle9().withUpgradeGuideSection(8, "kotlin_dsl_deprecated_catalogs_plugins_block").nagUser();
|
||||
return create("jme3.awt.dialogs");
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* @deprecated Will be removed in Gradle 9.0.
|
||||
*/
|
||||
@Deprecated
|
||||
public static class LemurLibraryAccessors extends SubDependencyFactory implements DependencyNotationSupplier {
|
||||
|
||||
public LemurLibraryAccessors(AbstractExternalDependencyFactory owner) { super(owner); }
|
||||
|
||||
/**
|
||||
* Dependency provider for <b>lemur</b> with <b>com.simsilica:lemur</b> coordinates and
|
||||
* with version <b>1.16.0</b>
|
||||
* <p>
|
||||
* This dependency was declared in settings file 'settings.gradle'
|
||||
*
|
||||
* @deprecated Will be removed in Gradle 9.0.
|
||||
*/
|
||||
@Deprecated
|
||||
public Provider<MinimalExternalModuleDependency> asProvider() {
|
||||
org.gradle.internal.deprecation.DeprecationLogger.deprecateBehaviour("Accessing libraries or bundles from version catalogs in the plugins block.").withAdvice("Only use versions or plugins from catalogs in the plugins block.").willBeRemovedInGradle9().withUpgradeGuideSection(8, "kotlin_dsl_deprecated_catalogs_plugins_block").nagUser();
|
||||
return create("lemur");
|
||||
}
|
||||
|
||||
/**
|
||||
* Dependency provider for <b>proto</b> with <b>com.simsilica:lemur-proto</b> coordinates and
|
||||
* with version <b>1.13.0</b>
|
||||
* <p>
|
||||
* This dependency was declared in settings file 'settings.gradle'
|
||||
*
|
||||
* @deprecated Will be removed in Gradle 9.0.
|
||||
*/
|
||||
@Deprecated
|
||||
public Provider<MinimalExternalModuleDependency> getProto() {
|
||||
org.gradle.internal.deprecation.DeprecationLogger.deprecateBehaviour("Accessing libraries or bundles from version catalogs in the plugins block.").withAdvice("Only use versions or plugins from catalogs in the plugins block.").willBeRemovedInGradle9().withUpgradeGuideSection(8, "kotlin_dsl_deprecated_catalogs_plugins_block").nagUser();
|
||||
return create("lemur.proto");
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* @deprecated Will be removed in Gradle 9.0.
|
||||
*/
|
||||
@Deprecated
|
||||
public static class MockitoLibraryAccessors extends SubDependencyFactory {
|
||||
|
||||
public MockitoLibraryAccessors(AbstractExternalDependencyFactory owner) { super(owner); }
|
||||
|
||||
/**
|
||||
* Dependency provider for <b>core</b> with <b>org.mockito:mockito-core</b> coordinates and
|
||||
* with version <b>3.+</b>
|
||||
* <p>
|
||||
* This dependency was declared in settings file 'settings.gradle'
|
||||
*
|
||||
* @deprecated Will be removed in Gradle 9.0.
|
||||
*/
|
||||
@Deprecated
|
||||
public Provider<MinimalExternalModuleDependency> getCore() {
|
||||
org.gradle.internal.deprecation.DeprecationLogger.deprecateBehaviour("Accessing libraries or bundles from version catalogs in the plugins block.").withAdvice("Only use versions or plugins from catalogs in the plugins block.").willBeRemovedInGradle9().withUpgradeGuideSection(8, "kotlin_dsl_deprecated_catalogs_plugins_block").nagUser();
|
||||
return create("mockito.core");
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* @deprecated Will be removed in Gradle 9.0.
|
||||
*/
|
||||
@Deprecated
|
||||
public static class Slf4jLibraryAccessors extends SubDependencyFactory {
|
||||
|
||||
public Slf4jLibraryAccessors(AbstractExternalDependencyFactory owner) { super(owner); }
|
||||
|
||||
/**
|
||||
* Dependency provider for <b>nop</b> with <b>org.slf4j:slf4j-nop</b> coordinates and
|
||||
* with version <b>2.0.13</b>
|
||||
* <p>
|
||||
* This dependency was declared in settings file 'settings.gradle'
|
||||
*
|
||||
* @deprecated Will be removed in Gradle 9.0.
|
||||
*/
|
||||
@Deprecated
|
||||
public Provider<MinimalExternalModuleDependency> getNop() {
|
||||
org.gradle.internal.deprecation.DeprecationLogger.deprecateBehaviour("Accessing libraries or bundles from version catalogs in the plugins block.").withAdvice("Only use versions or plugins from catalogs in the plugins block.").willBeRemovedInGradle9().withUpgradeGuideSection(8, "kotlin_dsl_deprecated_catalogs_plugins_block").nagUser();
|
||||
return create("slf4j.nop");
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
public static class VersionAccessors extends VersionFactory {
|
||||
|
||||
public VersionAccessors(ProviderFactory providers, DefaultVersionCatalog config) { super(providers, config); }
|
||||
|
||||
/**
|
||||
* Version alias <b>jme</b> with value <b>3.6.1-stable</b>
|
||||
* <p>
|
||||
* If the version is a rich version and cannot be represented as a
|
||||
* single version string, an empty string is returned.
|
||||
* <p>
|
||||
* This version was declared in settings file 'settings.gradle'
|
||||
*/
|
||||
public Provider<String> getJme() { return getVersion("jme"); }
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* @deprecated Will be removed in Gradle 9.0.
|
||||
*/
|
||||
@Deprecated
|
||||
public static class BundleAccessors extends BundleFactory {
|
||||
|
||||
public BundleAccessors(ObjectFactory objects, ProviderFactory providers, DefaultVersionCatalog config, ImmutableAttributesFactory attributesFactory, CapabilityNotationParser capabilityNotationParser) { super(objects, providers, config, attributesFactory, capabilityNotationParser); }
|
||||
|
||||
}
|
||||
|
||||
public static class PluginAccessors extends PluginFactory {
|
||||
|
||||
public PluginAccessors(ProviderFactory providers, DefaultVersionCatalog config) { super(providers, config); }
|
||||
|
||||
}
|
||||
|
||||
}
|
BIN
Projekte/.gradle/8.10.1/fileChanges/last-build.bin
Normal file
BIN
Projekte/.gradle/8.10.1/fileChanges/last-build.bin
Normal file
Binary file not shown.
BIN
Projekte/.gradle/8.10.1/fileHashes/fileHashes.bin
Normal file
BIN
Projekte/.gradle/8.10.1/fileHashes/fileHashes.bin
Normal file
Binary file not shown.
BIN
Projekte/.gradle/8.10.1/fileHashes/fileHashes.lock
Normal file
BIN
Projekte/.gradle/8.10.1/fileHashes/fileHashes.lock
Normal file
Binary file not shown.
BIN
Projekte/.gradle/8.10.1/fileHashes/resourceHashesCache.bin
Normal file
BIN
Projekte/.gradle/8.10.1/fileHashes/resourceHashesCache.bin
Normal file
Binary file not shown.
0
Projekte/.gradle/8.10.1/gc.properties
Normal file
0
Projekte/.gradle/8.10.1/gc.properties
Normal file
BIN
Projekte/.gradle/buildOutputCleanup/buildOutputCleanup.lock
Normal file
BIN
Projekte/.gradle/buildOutputCleanup/buildOutputCleanup.lock
Normal file
Binary file not shown.
2
Projekte/.gradle/buildOutputCleanup/cache.properties
Normal file
2
Projekte/.gradle/buildOutputCleanup/cache.properties
Normal file
@ -0,0 +1,2 @@
|
||||
#Thu Oct 03 15:53:47 CEST 2024
|
||||
gradle.version=8.10.1
|
BIN
Projekte/.gradle/file-system.probe
Normal file
BIN
Projekte/.gradle/file-system.probe
Normal file
Binary file not shown.
BIN
Projekte/.gradle/noVersion/buildLogic.lock
Normal file
BIN
Projekte/.gradle/noVersion/buildLogic.lock
Normal file
Binary file not shown.
0
Projekte/.gradle/vcs-1/gc.properties
Normal file
0
Projekte/.gradle/vcs-1/gc.properties
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -0,0 +1,2 @@
|
||||
#Thu Oct 03 15:53:47 CEST 2024
|
||||
gradle.version=8.10.1
|
BIN
Projekte/buildSrc/.gradle/buildOutputCleanup/outputFiles.bin
Normal file
BIN
Projekte/buildSrc/.gradle/buildOutputCleanup/outputFiles.bin
Normal file
Binary file not shown.
BIN
Projekte/buildSrc/.gradle/file-system.probe
Normal file
BIN
Projekte/buildSrc/.gradle/file-system.probe
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -0,0 +1,44 @@
|
||||
//CHECKSTYLE:OFF
|
||||
import org.gradle.util.GradleVersion;
|
||||
import org.gradle.groovy.scripts.BasicScript;
|
||||
import org.gradle.groovy.scripts.ScriptSource;
|
||||
import org.gradle.groovy.scripts.TextResourceScriptSource;
|
||||
import org.gradle.internal.resource.StringTextResource;
|
||||
/**
|
||||
* Precompiled buildlogic.java-application-conventions script plugin.
|
||||
**/
|
||||
@SuppressWarnings("DefaultPackage")
|
||||
public class BuildlogicJavaApplicationConventionsPlugin implements org.gradle.api.Plugin<org.gradle.api.internal.project.ProjectInternal> {
|
||||
private static final String MIN_SUPPORTED_GRADLE_VERSION = "5.0";
|
||||
@Override
|
||||
public void apply(org.gradle.api.internal.project.ProjectInternal target) {
|
||||
assertSupportedByCurrentGradleVersion();
|
||||
try {
|
||||
Class<? extends BasicScript> pluginsBlockClass = Class.forName("cp_precompiled_BuildlogicJavaApplicationConventions").asSubclass(BasicScript.class);
|
||||
BasicScript pluginsBlockScript = pluginsBlockClass.getDeclaredConstructor().newInstance();
|
||||
pluginsBlockScript.setScriptSource(scriptSource(pluginsBlockClass));
|
||||
pluginsBlockScript.init(target, target.getServices());
|
||||
pluginsBlockScript.run();
|
||||
target.getPluginManager().apply("buildlogic.java-common-conventions");
|
||||
target.getPluginManager().apply("application");
|
||||
|
||||
|
||||
Class<? extends BasicScript> precompiledScriptClass = Class.forName("precompiled_BuildlogicJavaApplicationConventions").asSubclass(BasicScript.class);
|
||||
BasicScript script = precompiledScriptClass.getDeclaredConstructor().newInstance();
|
||||
script.setScriptSource(scriptSource(precompiledScriptClass));
|
||||
script.init(target, target.getServices());
|
||||
script.run();
|
||||
} catch (Exception e) {
|
||||
throw new RuntimeException(e);
|
||||
}
|
||||
}
|
||||
private static ScriptSource scriptSource(Class<?> scriptClass) {
|
||||
return new TextResourceScriptSource(new StringTextResource(scriptClass.getSimpleName(), ""));
|
||||
}
|
||||
private static void assertSupportedByCurrentGradleVersion() {
|
||||
if (GradleVersion.current().getBaseVersion().compareTo(GradleVersion.version(MIN_SUPPORTED_GRADLE_VERSION)) < 0) {
|
||||
throw new RuntimeException("Precompiled Groovy script plugins require Gradle "+MIN_SUPPORTED_GRADLE_VERSION+" or higher");
|
||||
}
|
||||
}
|
||||
}
|
||||
//CHECKSTYLE:ON
|
@ -0,0 +1,43 @@
|
||||
//CHECKSTYLE:OFF
|
||||
import org.gradle.util.GradleVersion;
|
||||
import org.gradle.groovy.scripts.BasicScript;
|
||||
import org.gradle.groovy.scripts.ScriptSource;
|
||||
import org.gradle.groovy.scripts.TextResourceScriptSource;
|
||||
import org.gradle.internal.resource.StringTextResource;
|
||||
/**
|
||||
* Precompiled buildlogic.java-common-conventions script plugin.
|
||||
**/
|
||||
@SuppressWarnings("DefaultPackage")
|
||||
public class BuildlogicJavaCommonConventionsPlugin implements org.gradle.api.Plugin<org.gradle.api.internal.project.ProjectInternal> {
|
||||
private static final String MIN_SUPPORTED_GRADLE_VERSION = "5.0";
|
||||
@Override
|
||||
public void apply(org.gradle.api.internal.project.ProjectInternal target) {
|
||||
assertSupportedByCurrentGradleVersion();
|
||||
try {
|
||||
Class<? extends BasicScript> pluginsBlockClass = Class.forName("cp_precompiled_BuildlogicJavaCommonConventions").asSubclass(BasicScript.class);
|
||||
BasicScript pluginsBlockScript = pluginsBlockClass.getDeclaredConstructor().newInstance();
|
||||
pluginsBlockScript.setScriptSource(scriptSource(pluginsBlockClass));
|
||||
pluginsBlockScript.init(target, target.getServices());
|
||||
pluginsBlockScript.run();
|
||||
target.getPluginManager().apply("java");
|
||||
|
||||
|
||||
Class<? extends BasicScript> precompiledScriptClass = Class.forName("precompiled_BuildlogicJavaCommonConventions").asSubclass(BasicScript.class);
|
||||
BasicScript script = precompiledScriptClass.getDeclaredConstructor().newInstance();
|
||||
script.setScriptSource(scriptSource(precompiledScriptClass));
|
||||
script.init(target, target.getServices());
|
||||
script.run();
|
||||
} catch (Exception e) {
|
||||
throw new RuntimeException(e);
|
||||
}
|
||||
}
|
||||
private static ScriptSource scriptSource(Class<?> scriptClass) {
|
||||
return new TextResourceScriptSource(new StringTextResource(scriptClass.getSimpleName(), ""));
|
||||
}
|
||||
private static void assertSupportedByCurrentGradleVersion() {
|
||||
if (GradleVersion.current().getBaseVersion().compareTo(GradleVersion.version(MIN_SUPPORTED_GRADLE_VERSION)) < 0) {
|
||||
throw new RuntimeException("Precompiled Groovy script plugins require Gradle "+MIN_SUPPORTED_GRADLE_VERSION+" or higher");
|
||||
}
|
||||
}
|
||||
}
|
||||
//CHECKSTYLE:ON
|
@ -0,0 +1,44 @@
|
||||
//CHECKSTYLE:OFF
|
||||
import org.gradle.util.GradleVersion;
|
||||
import org.gradle.groovy.scripts.BasicScript;
|
||||
import org.gradle.groovy.scripts.ScriptSource;
|
||||
import org.gradle.groovy.scripts.TextResourceScriptSource;
|
||||
import org.gradle.internal.resource.StringTextResource;
|
||||
/**
|
||||
* Precompiled buildlogic.java-library-conventions script plugin.
|
||||
**/
|
||||
@SuppressWarnings("DefaultPackage")
|
||||
public class BuildlogicJavaLibraryConventionsPlugin implements org.gradle.api.Plugin<org.gradle.api.internal.project.ProjectInternal> {
|
||||
private static final String MIN_SUPPORTED_GRADLE_VERSION = "5.0";
|
||||
@Override
|
||||
public void apply(org.gradle.api.internal.project.ProjectInternal target) {
|
||||
assertSupportedByCurrentGradleVersion();
|
||||
try {
|
||||
Class<? extends BasicScript> pluginsBlockClass = Class.forName("cp_precompiled_BuildlogicJavaLibraryConventions").asSubclass(BasicScript.class);
|
||||
BasicScript pluginsBlockScript = pluginsBlockClass.getDeclaredConstructor().newInstance();
|
||||
pluginsBlockScript.setScriptSource(scriptSource(pluginsBlockClass));
|
||||
pluginsBlockScript.init(target, target.getServices());
|
||||
pluginsBlockScript.run();
|
||||
target.getPluginManager().apply("buildlogic.java-common-conventions");
|
||||
target.getPluginManager().apply("java-library");
|
||||
|
||||
|
||||
Class<? extends BasicScript> precompiledScriptClass = Class.forName("precompiled_BuildlogicJavaLibraryConventions").asSubclass(BasicScript.class);
|
||||
BasicScript script = precompiledScriptClass.getDeclaredConstructor().newInstance();
|
||||
script.setScriptSource(scriptSource(precompiledScriptClass));
|
||||
script.init(target, target.getServices());
|
||||
script.run();
|
||||
} catch (Exception e) {
|
||||
throw new RuntimeException(e);
|
||||
}
|
||||
}
|
||||
private static ScriptSource scriptSource(Class<?> scriptClass) {
|
||||
return new TextResourceScriptSource(new StringTextResource(scriptClass.getSimpleName(), ""));
|
||||
}
|
||||
private static void assertSupportedByCurrentGradleVersion() {
|
||||
if (GradleVersion.current().getBaseVersion().compareTo(GradleVersion.version(MIN_SUPPORTED_GRADLE_VERSION)) < 0) {
|
||||
throw new RuntimeException("Precompiled Groovy script plugins require Gradle "+MIN_SUPPORTED_GRADLE_VERSION+" or higher");
|
||||
}
|
||||
}
|
||||
}
|
||||
//CHECKSTYLE:ON
|
@ -0,0 +1,44 @@
|
||||
//CHECKSTYLE:OFF
|
||||
import org.gradle.util.GradleVersion;
|
||||
import org.gradle.groovy.scripts.BasicScript;
|
||||
import org.gradle.groovy.scripts.ScriptSource;
|
||||
import org.gradle.groovy.scripts.TextResourceScriptSource;
|
||||
import org.gradle.internal.resource.StringTextResource;
|
||||
/**
|
||||
* Precompiled buildlogic.jme-application-conventions script plugin.
|
||||
**/
|
||||
@SuppressWarnings("DefaultPackage")
|
||||
public class BuildlogicJmeApplicationConventionsPlugin implements org.gradle.api.Plugin<org.gradle.api.internal.project.ProjectInternal> {
|
||||
private static final String MIN_SUPPORTED_GRADLE_VERSION = "5.0";
|
||||
@Override
|
||||
public void apply(org.gradle.api.internal.project.ProjectInternal target) {
|
||||
assertSupportedByCurrentGradleVersion();
|
||||
try {
|
||||
Class<? extends BasicScript> pluginsBlockClass = Class.forName("cp_precompiled_BuildlogicJmeApplicationConventions").asSubclass(BasicScript.class);
|
||||
BasicScript pluginsBlockScript = pluginsBlockClass.getDeclaredConstructor().newInstance();
|
||||
pluginsBlockScript.setScriptSource(scriptSource(pluginsBlockClass));
|
||||
pluginsBlockScript.init(target, target.getServices());
|
||||
pluginsBlockScript.run();
|
||||
target.getPluginManager().apply("buildlogic.java-common-conventions");
|
||||
target.getPluginManager().apply("application");
|
||||
|
||||
|
||||
Class<? extends BasicScript> precompiledScriptClass = Class.forName("precompiled_BuildlogicJmeApplicationConventions").asSubclass(BasicScript.class);
|
||||
BasicScript script = precompiledScriptClass.getDeclaredConstructor().newInstance();
|
||||
script.setScriptSource(scriptSource(precompiledScriptClass));
|
||||
script.init(target, target.getServices());
|
||||
script.run();
|
||||
} catch (Exception e) {
|
||||
throw new RuntimeException(e);
|
||||
}
|
||||
}
|
||||
private static ScriptSource scriptSource(Class<?> scriptClass) {
|
||||
return new TextResourceScriptSource(new StringTextResource(scriptClass.getSimpleName(), ""));
|
||||
}
|
||||
private static void assertSupportedByCurrentGradleVersion() {
|
||||
if (GradleVersion.current().getBaseVersion().compareTo(GradleVersion.version(MIN_SUPPORTED_GRADLE_VERSION)) < 0) {
|
||||
throw new RuntimeException("Precompiled Groovy script plugins require Gradle "+MIN_SUPPORTED_GRADLE_VERSION+" or higher");
|
||||
}
|
||||
}
|
||||
}
|
||||
//CHECKSTYLE:ON
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -0,0 +1 @@
|
||||
|
BIN
Projekte/buildSrc/build/libs/buildSrc.jar
Normal file
BIN
Projekte/buildSrc/build/libs/buildSrc.jar
Normal file
Binary file not shown.
@ -0,0 +1 @@
|
||||
implementation-class=BuildlogicJavaApplicationConventionsPlugin
|
@ -0,0 +1 @@
|
||||
implementation-class=BuildlogicJavaCommonConventionsPlugin
|
@ -0,0 +1 @@
|
||||
implementation-class=BuildlogicJavaLibraryConventionsPlugin
|
@ -0,0 +1 @@
|
||||
implementation-class=BuildlogicJmeApplicationConventionsPlugin
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user