use of org.gradle.api.Project in project gradle by gradle.
the class SwiftLibraryPlugin method apply.
@Override
public void apply(final Project project) {
project.getPluginManager().apply(SwiftBasePlugin.class);
final ConfigurationContainer configurations = project.getConfigurations();
final ObjectFactory objectFactory = project.getObjects();
final DefaultSwiftLibrary library = componentFactory.newInstance(SwiftLibrary.class, DefaultSwiftLibrary.class, "main");
project.getExtensions().add(SwiftLibrary.class, "library", library);
project.getComponents().add(library);
// Setup component
final Property<String> module = library.getModule();
module.set(GUtil.toCamelCase(project.getName()));
project.afterEvaluate(new Action<Project>() {
@Override
public void execute(final Project project) {
// TODO: Implement os for Swift
// library.getOperatingSystems().lockNow();
// library.getOperatingSystems().get();
Set<OperatingSystemFamily> operatingSystemFamilies = Sets.newHashSet(objectFactory.named(OperatingSystemFamily.class, DefaultNativePlatform.getCurrentOperatingSystem().toFamilyName()));
if (operatingSystemFamilies.isEmpty()) {
throw new IllegalArgumentException("An operating system needs to be specified for the application.");
}
library.getLinkage().lockNow();
Set<Linkage> linkages = library.getLinkage().get();
if (linkages.isEmpty()) {
throw new IllegalArgumentException("A linkage needs to be specified for the library.");
}
Usage runtimeUsage = objectFactory.named(Usage.class, Usage.NATIVE_RUNTIME);
Usage linkUsage = objectFactory.named(Usage.class, Usage.NATIVE_LINK);
for (BuildType buildType : BuildType.DEFAULT_BUILD_TYPES) {
for (OperatingSystemFamily operatingSystem : operatingSystemFamilies) {
for (Linkage linkage : linkages) {
String operatingSystemSuffix = createDimensionSuffix(operatingSystem, operatingSystemFamilies);
String linkageSuffix = createDimensionSuffix(linkage, linkages);
String variantName = buildType.getName() + linkageSuffix + operatingSystemSuffix;
Provider<String> group = project.provider(new Callable<String>() {
@Override
public String call() throws Exception {
return project.getGroup().toString();
}
});
Provider<String> version = project.provider(new Callable<String>() {
@Override
public String call() throws Exception {
return project.getVersion().toString();
}
});
AttributeContainer runtimeAttributes = attributesFactory.mutable();
runtimeAttributes.attribute(Usage.USAGE_ATTRIBUTE, runtimeUsage);
runtimeAttributes.attribute(DEBUGGABLE_ATTRIBUTE, buildType.isDebuggable());
runtimeAttributes.attribute(OPTIMIZED_ATTRIBUTE, buildType.isOptimized());
runtimeAttributes.attribute(LINKAGE_ATTRIBUTE, linkage);
runtimeAttributes.attribute(OperatingSystemFamily.OPERATING_SYSTEM_ATTRIBUTE, operatingSystem);
AttributeContainer linkAttributes = attributesFactory.mutable();
linkAttributes.attribute(Usage.USAGE_ATTRIBUTE, linkUsage);
linkAttributes.attribute(DEBUGGABLE_ATTRIBUTE, buildType.isDebuggable());
linkAttributes.attribute(OPTIMIZED_ATTRIBUTE, buildType.isOptimized());
linkAttributes.attribute(LINKAGE_ATTRIBUTE, linkage);
linkAttributes.attribute(OperatingSystemFamily.OPERATING_SYSTEM_ATTRIBUTE, operatingSystem);
NativeVariantIdentity variantIdentity = new NativeVariantIdentity(variantName, library.getModule(), group, version, buildType.isDebuggable(), buildType.isOptimized(), operatingSystem, new DefaultUsageContext(variantName + "Link", linkUsage, linkAttributes), new DefaultUsageContext(variantName + "Runtime", runtimeUsage, runtimeAttributes));
if (DefaultNativePlatform.getCurrentOperatingSystem().toFamilyName().equals(operatingSystem.getName())) {
ToolChainSelector.Result<SwiftPlatform> result = toolChainSelector.select(SwiftPlatform.class);
if (linkage == Linkage.SHARED) {
SwiftSharedLibrary sharedLibrary = library.addSharedLibrary(variantName, buildType == BuildType.DEBUG, result.getTargetPlatform(), result.getToolChain(), result.getPlatformToolProvider(), variantIdentity);
// Use the debug shared library as the development binary
if (buildType == BuildType.DEBUG) {
library.getDevelopmentBinary().set(sharedLibrary);
}
} else {
SwiftStaticLibrary staticLibrary = library.addStaticLibrary(variantName, buildType == BuildType.DEBUG, result.getTargetPlatform(), result.getToolChain(), result.getPlatformToolProvider(), variantIdentity);
if (!linkages.contains(Linkage.SHARED) && buildType == BuildType.DEBUG) {
// Use the debug static library as the development binary
library.getDevelopmentBinary().set(staticLibrary);
}
}
}
}
}
}
library.getBinaries().whenElementKnown(SwiftSharedLibrary.class, new Action<SwiftSharedLibrary>() {
@Override
public void execute(SwiftSharedLibrary sharedLibrary) {
Names names = ((ComponentWithNames) sharedLibrary).getNames();
Configuration apiElements = configurations.create(names.withSuffix("SwiftApiElements"));
// TODO This should actually extend from the api dependencies, but since Swift currently
// requires all dependencies to be treated like api dependencies (with transitivity) we just
// use the implementation dependencies here. See https://bugs.swift.org/browse/SR-1393.
apiElements.extendsFrom(((DefaultSwiftSharedLibrary) sharedLibrary).getImplementationDependencies());
apiElements.setCanBeResolved(false);
apiElements.getAttributes().attribute(Usage.USAGE_ATTRIBUTE, objectFactory.named(Usage.class, Usage.SWIFT_API));
apiElements.getAttributes().attribute(LINKAGE_ATTRIBUTE, Linkage.SHARED);
apiElements.getAttributes().attribute(DEBUGGABLE_ATTRIBUTE, sharedLibrary.isDebuggable());
apiElements.getAttributes().attribute(OPTIMIZED_ATTRIBUTE, sharedLibrary.isOptimized());
apiElements.getAttributes().attribute(OperatingSystemFamily.OPERATING_SYSTEM_ATTRIBUTE, objectFactory.named(OperatingSystemFamily.class, ((OperatingSystemInternal) sharedLibrary.getTargetPlatform().getOperatingSystem()).toFamilyName()));
apiElements.getOutgoing().artifact(sharedLibrary.getModuleFile());
}
});
library.getBinaries().whenElementKnown(SwiftStaticLibrary.class, new Action<SwiftStaticLibrary>() {
@Override
public void execute(SwiftStaticLibrary staticLibrary) {
Names names = ((ComponentWithNames) staticLibrary).getNames();
Configuration apiElements = configurations.create(names.withSuffix("SwiftApiElements"));
// TODO This should actually extend from the api dependencies, but since Swift currently
// requires all dependencies to be treated like api dependencies (with transitivity) we just
// use the implementation dependencies here. See https://bugs.swift.org/browse/SR-1393.
apiElements.extendsFrom(((DefaultSwiftStaticLibrary) staticLibrary).getImplementationDependencies());
apiElements.setCanBeResolved(false);
apiElements.getAttributes().attribute(Usage.USAGE_ATTRIBUTE, objectFactory.named(Usage.class, Usage.SWIFT_API));
apiElements.getAttributes().attribute(LINKAGE_ATTRIBUTE, Linkage.STATIC);
apiElements.getAttributes().attribute(DEBUGGABLE_ATTRIBUTE, staticLibrary.isDebuggable());
apiElements.getAttributes().attribute(OPTIMIZED_ATTRIBUTE, staticLibrary.isOptimized());
apiElements.getAttributes().attribute(OperatingSystemFamily.OPERATING_SYSTEM_ATTRIBUTE, objectFactory.named(OperatingSystemFamily.class, ((OperatingSystemInternal) staticLibrary.getTargetPlatform().getOperatingSystem()).toFamilyName()));
apiElements.getOutgoing().artifact(staticLibrary.getModuleFile());
}
});
library.getBinaries().realizeNow();
}
});
}
use of org.gradle.api.Project in project core-java by SpineEventEngine.
the class ModelVerifierShould method actualProject.
private static Project actualProject() {
final Project result = ProjectBuilder.builder().build();
result.getPluginManager().apply("java");
return result;
}
use of org.gradle.api.Project in project core-java by SpineEventEngine.
the class ModelVerifierShould method setUp.
@Before
public void setUp() {
project = mock(Project.class);
when(project.getSubprojects()).thenReturn(Collections.<Project>emptySet());
when(project.getRootProject()).thenReturn(project);
final TaskContainer tasks = mock(TaskContainer.class);
final TaskCollection emptyTaskCollection = mock(TaskCollection.class);
when(emptyTaskCollection.iterator()).thenReturn(Iterators.emptyIterator());
when(emptyTaskCollection.toArray()).thenReturn(EMPTY_ARRAY);
when(tasks.withType(any(Class.class))).thenReturn(emptyTaskCollection);
when(project.getTasks()).thenReturn(tasks);
}
use of org.gradle.api.Project in project tomee by apache.
the class TomEEEmbeddedPlugin method apply.
@Override
public void apply(final Project project) {
final List<String> extensions = asList(TomEEEmbeddedExtension.NAME, TomEEEmbeddedExtension.ALIAS);
for (final String name : extensions) {
project.getExtensions().create(name, TomEEEmbeddedExtension.class);
}
project.afterEvaluate(new Action<Project>() {
@Override
public void execute(final Project actionProject) {
for (final String name : extensions) {
final TomEEEmbeddedExtension extension = TomEEEmbeddedExtension.class.cast(actionProject.getExtensions().findByName(name));
if (extension == null) {
return;
}
if (extension.isSkipDefaultRepository() != null && !extension.isSkipDefaultRepository()) {
actionProject.getRepositories().mavenCentral();
return;
}
}
actionProject.getRepositories().mavenCentral();
}
});
String configName = TomEEEmbeddedExtension.ALIAS;
try {
project.getConfigurations().getByName(configName);
} catch (final UnknownConfigurationException uce) {
configName = TomEEEmbeddedExtension.NAME;
}
final Configuration configuration = project.getConfigurations().maybeCreate(configName);
configuration.getIncoming().beforeResolve(new Action<ResolvableDependencies>() {
@Override
public void execute(final ResolvableDependencies resolvableDependencies) {
String tomeeVersion = null;
for (final String name : extensions) {
final TomEEEmbeddedExtension extension = TomEEEmbeddedExtension.class.cast(project.getExtensions().findByName(name));
if (extension == null) {
return;
}
tomeeVersion = extension.getTomeeVersion();
if (tomeeVersion != null) {
break;
}
}
if (tomeeVersion == null) {
try {
try (final InputStream is = Thread.currentThread().getContextClassLoader().getResourceAsStream("META-INF/maven/org.apache.tomee.gradle/tomee-embedded/pom.properties")) {
final Properties p = new Properties();
p.load(is);
tomeeVersion = p.getProperty("version");
}
} catch (final IOException e) {
// we should never be there
tomeeVersion = "7.0.2";
}
}
final DependencyHandler dependencyHandler = project.getDependencies();
final DependencySet dependencies = configuration.getDependencies();
dependencies.add(dependencyHandler.create("org.apache.tomee:tomee-embedded:" + tomeeVersion));
}
});
project.task(new HashMap<String, Object>() {
{
put("type", TomEEEmbeddedTask.class);
put("group", "Embedded Application Server");
put("description", "Start an embedded Apache TomEE server deploying application classpath");
}
}, TomEEEmbeddedExtension.NAME);
}
use of org.gradle.api.Project in project tomee by apache.
the class TomEEEmbeddedTask method fixConfig.
private void fixConfig() {
final Project project = getProject();
// defaults
if (classpath == null) {
try {
classpath.add(project.getConfigurations().getByName(TomEEEmbeddedExtension.ALIAS).fileCollection());
} catch (final UnknownConfigurationException uce) {
classpath = project.getConfigurations().getByName(TomEEEmbeddedExtension.NAME);
}
}
if (docBase == null) {
docBase = new File(project.getProjectDir(), "src/main/webapp");
}
if (workDir == null) {
workDir = new File(project.getBuildDir(), "tomee-embedded/work");
}
if (dir == null) {
dir = new File(project.getBuildDir(), "tomee-embedded/run").getAbsolutePath();
}
if (modules == null || modules.isEmpty()) {
final File main = new File(project.getBuildDir(), "classes/main");
if (main.isDirectory()) {
modules = new ArrayList<>(singletonList(main));
}
}
// extension override
for (final String name : asList(TomEEEmbeddedExtension.NAME, TomEEEmbeddedExtension.ALIAS)) {
final TomEEEmbeddedExtension extension = TomEEEmbeddedExtension.class.cast(project.getExtensions().findByName(name));
if (extension != null) {
for (final Field f : TomEEEmbeddedTask.class.getDeclaredFields()) {
if (f.isAnnotationPresent(Input.class)) {
try {
final Field extField = TomEEEmbeddedExtension.class.getDeclaredField(f.getName());
if (!extField.isAccessible()) {
extField.setAccessible(true);
}
final Object val = extField.get(extension);
if (val != null) {
if (!f.isAccessible()) {
f.setAccessible(true);
}
f.set(this, val);
}
} catch (final IllegalAccessException | NoSuchFieldException e) {
getLogger().warn("No field " + f.getName() + " in " + extension, e);
}
}
}
}
}
}
Aggregations