org.gradle.buildinit.plugins.internal.JavaLibraryProjectInitDescriptor Maven / Gradle / Ivy
/*
* Copyright 2013 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.gradle.buildinit.plugins.internal;
import org.gradle.api.internal.DocumentationRegistry;
import org.gradle.api.internal.file.FileResolver;
public class JavaLibraryProjectInitDescriptor extends JavaProjectInitDescriptor {
private final static Description DESCRIPTION = new Description(
"Java Library",
"Java Libraries",
"java_library_plugin",
"java-library"
);
public JavaLibraryProjectInitDescriptor(TemplateOperationFactory templateOperationFactory,
FileResolver fileResolver,
TemplateLibraryVersionProvider libraryVersionProvider,
ProjectInitDescriptor globalSettingsDescriptor,
DocumentationRegistry documentationRegistry) {
super(templateOperationFactory, fileResolver, libraryVersionProvider, globalSettingsDescriptor, documentationRegistry);
}
@Override
protected TemplateOperation sourceTemplateOperation() {
return fromClazzTemplate("javalibrary/Library.java.template", "main");
}
@Override
protected TemplateOperation testTemplateOperation(BuildInitTestFramework testFramework) {
switch (testFramework) {
case SPOCK:
return fromClazzTemplate("groovylibrary/LibraryTest.groovy.template", "test", "groovy");
case TESTNG:
return fromClazzTemplate("javalibrary/LibraryTestNG.java.template", "test", "java", "LibraryTest.java");
default:
return fromClazzTemplate("javalibrary/LibraryTest.java.template", "test");
}
}
@Override
protected Description getDescription() {
return DESCRIPTION;
}
@Override
protected String getImplementationConfigurationName() {
return "implementation";
}
@Override
protected void configureBuildScript(BuildScriptBuilder buildScriptBuilder) {
buildScriptBuilder.dependency(
"api",
"This dependency is exported to consumers, that is to say found on their compile classpath.",
"org.apache.commons:commons-math3:" + libraryVersionProvider.getVersion("commons-math"));
buildScriptBuilder.dependency(getImplementationConfigurationName(), "This dependency is used internally, and not exposed to consumers on their own compile classpath.",
"com.google.guava:guava:" + libraryVersionProvider.getVersion("guava"));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy