Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove dependencies on deprecated Gradle feature #1278

Merged
merged 5 commits into from Sep 18, 2020

Conversation

KengoTODA
Copy link
Member

The compileOnly configuration is not expected to refer from other projects, so load properties file in eclipsePlugni-junit and eclipsePlugin-test projects directly.

This build scan proves that we have no deprecated feature in the current build.

Also bump up Gradle to the latest version 6.6.1.

compileOnly configuration is not expected to refer from
other projects, so load properties file in eclipsePlugni-junit and
eclipsePlugin-test projects directly.
@KengoTODA KengoTODA added the build label Sep 3, 2020
@KengoTODA KengoTODA self-assigned this Sep 3, 2020
@KengoTODA KengoTODA requested a review from a team September 7, 2020 22:05
def localProps = new Properties()
localProps.load(new FileInputStream("$rootDir/eclipsePlugin/local.properties"))

def eclipseRootDir = new File(localProps.getProperty('eclipseRoot.dir'))
Copy link
Member

@wreulicke wreulicke Sep 8, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can we use file(...) instead of new File(...)?

Suggested change
def eclipseRootDir = new File(localProps.getProperty('eclipseRoot.dir'))
def eclipseRootDir = file(localProps.getProperty('eclipseRoot.dir'))

@sonarcloud
Copy link

sonarcloud bot commented Sep 8, 2020

Kudos, SonarCloud Quality Gate passed!

Bug A 0 Bugs
Vulnerability A 0 Vulnerabilities (and Security Hotspot 0 Security Hotspots to review)
Code Smell A 0 Code Smells

No Coverage information No Coverage information
No Duplication information No Duplication information

@KengoTODA KengoTODA merged commit a11965a into master Sep 18, 2020
@KengoTODA KengoTODA deleted the remove-dependencies-on-deprecated-gradle-feature branch September 18, 2020 00:54
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants