12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- /*
- * Copyright 2004-present 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
- *
- * https://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 io.spring.gradle.convention
- import org.gradle.api.Plugin
- import org.gradle.api.Project
- import org.gradle.plugins.ide.eclipse.EclipsePlugin
- /**
- * Plugin to tweak .classpath settings so that eclipse/sts/vscode can
- * be imported cleanly.
- *
- * @author Janne Valkealahti
- */
- class EclipsePlugin implements Plugin<Project> {
- @Override
- void apply(Project project) {
- project.plugins.apply(EclipsePlugin)
- project.eclipse {
- classpath {
- file {
- whenMerged {
- // for aspects gradle eclipse integration wrongly creates lib entries for
- // aspects/build/classes/java/main and aspects/build/resources/main which
- // never has anything. eclipse/sts don't care, vscode language server
- // complains about missing folders. So remove those from a .classpath
- entries.removeAll {
- entry -> entry.kind == 'lib' && (entry.path.contains('aspects/build/classes/java/main') || entry.path.contains('aspects/build/resources/main'))
- }
- // there are cycles and then dependencies between projects main sources and
- // test sources. Looks like gradle eclipse integration is getting confused.
- // thus just relax rules so that projects always sees everything from
- // dependant project.
- entries
- .findAll { entry -> entry instanceof org.gradle.plugins.ide.eclipse.model.ProjectDependency }
- .each {
- it.entryAttributes['without_test_code'] = 'false'
- it.entryAttributes['test'] = 'false'
- }
- }
- }
- }
- jdt {
- file {
- withProperties { properties ->
- // there are cycles and then dependencies between projects main sources and
- // test sources. Relax those from error to warning
- properties['org.eclipse.jdt.core.circularClasspath'] = 'warning'
- properties['org.eclipse.jdt.core.incompleteClasspath'] = 'warning'
- properties['org.eclipse.jdt.core.compiler.codegen.methodParameters'] = 'generate'
- }
- }
- }
- }
- }
- }
|