-
Notifications
You must be signed in to change notification settings - Fork 135
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
java versions preview enhancements #2376
Merged
Merged
Changes from all commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
48d2b0d
java versions preview enhancements
j-baker 5392bbd
Add generated changelog entries
svc-changelog 1e31675
tests
j-baker ee0077b
unused imports
j-baker 7e00d28
Fixes after talking to Callum
j-baker d532a67
Fix
j-baker c58c1c3
fix
j-baker ffa4817
fix
j-baker 12f572b
Updates after talking to callum
j-baker 8e94f6d
efix
j-baker File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
type: feature | ||
feature: | ||
description: |- | ||
java versions preview enhancements | ||
|
||
+ support setting preview on a project-by-project basis. | ||
+ Fixes #2340 | ||
+ fails more elegantly if javaVersions is set on not-the-root. | ||
links: | ||
- https://github.com/palantir/gradle-baseline/pull/2376 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
37 changes: 37 additions & 0 deletions
37
...oovy/com/palantir/baseline/plugins/javaversions/BaselineJavaVersionsExtensionSetters.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
/* | ||
* (c) Copyright 2022 Palantir Technologies Inc. All rights reserved. | ||
* | ||
* 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 com.palantir.baseline.plugins.javaversions; | ||
|
||
/** | ||
* This exists to keep the setters on the 'BaselineJavaVersionsExtension' in sync with those on | ||
* 'SubprojectBaselineJavaVersionsExtension'. Ideally it would have a name like 'BaselineJavaVersionsExtension' | ||
* with the main one called 'RootProjectBaselineJavaVersionsExtension', but that class is public API and is depended | ||
* on by other Gradle plugins. | ||
*/ | ||
public interface BaselineJavaVersionsExtensionSetters { | ||
void setLibraryTarget(int value); | ||
|
||
void setLibraryTarget(String value); | ||
|
||
void setDistributionTarget(int value); | ||
|
||
void setDistributionTarget(String value); | ||
|
||
void setRuntime(int value); | ||
|
||
void setRuntime(String value); | ||
} |
67 changes: 67 additions & 0 deletions
67
...y/com/palantir/baseline/plugins/javaversions/SubprojectBaselineJavaVersionsExtension.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
/* | ||
* (c) Copyright 2022 Palantir Technologies Inc. All rights reserved. | ||
* | ||
* 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 com.palantir.baseline.plugins.javaversions; | ||
|
||
import javax.inject.Inject; | ||
import org.gradle.api.GradleException; | ||
import org.gradle.api.Project; | ||
|
||
public class SubprojectBaselineJavaVersionsExtension implements BaselineJavaVersionsExtensionSetters { | ||
private final Project project; | ||
|
||
@Inject | ||
public SubprojectBaselineJavaVersionsExtension(Project project) { | ||
this.project = project; | ||
} | ||
|
||
@Override | ||
public final void setLibraryTarget(int _value) { | ||
throw throwCannotSetFromSubproject(); | ||
} | ||
|
||
@Override | ||
public final void setLibraryTarget(String value) { | ||
throw throwCannotSetFromSubproject(); | ||
} | ||
|
||
@Override | ||
public final void setDistributionTarget(int _value) { | ||
throw throwCannotSetFromSubproject(); | ||
} | ||
|
||
@Override | ||
public final void setDistributionTarget(String _value) { | ||
throw throwCannotSetFromSubproject(); | ||
} | ||
|
||
@Override | ||
public final void setRuntime(int _value) { | ||
throw throwCannotSetFromSubproject(); | ||
} | ||
|
||
@Override | ||
public final void setRuntime(String _value) { | ||
throw throwCannotSetFromSubproject(); | ||
} | ||
|
||
private RuntimeException throwCannotSetFromSubproject() { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
throw new GradleException("The javaVersions extension can only be used from the root project." | ||
+ " Did you mean javaVersion, which can be used to override on a project-by-project basis?" | ||
+ " You used it from " | ||
+ project.getName()); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -147,6 +147,36 @@ class BaselineJavaVersionIntegrationTest extends IntegrationSpec { | |
assertBytecodeVersion(compiledClass, JAVA_17_BYTECODE, ENABLE_PREVIEW_BYTECODE) | ||
} | ||
|
||
def 'setting library target to preview version fails'() { | ||
when: | ||
buildFile << ''' | ||
javaVersions { | ||
libraryTarget = '17_PREVIEW' | ||
} | ||
'''.stripIndent(true) | ||
file('src/main/java/Main.java') << java17PreviewCode | ||
|
||
then: | ||
ExecutionResult result = runTasksWithFailure('compileJava', '-i') | ||
result.standardError.contains 'cannot be run on newer JVMs' | ||
} | ||
|
||
def 'java 17 preview on single project works'() { | ||
when: | ||
buildFile << ''' | ||
javaVersion { | ||
runtime = '17_PREVIEW' | ||
target = '17_PREVIEW' | ||
} | ||
'''.stripIndent(true) | ||
file('src/main/java/Main.java') << java17PreviewCode | ||
File compiledClass = new File(projectDir, "build/classes/java/main/Main.class") | ||
|
||
then: | ||
runTasksSuccessfully('compileJava', '-i') | ||
assertBytecodeVersion(compiledClass, JAVA_17_BYTECODE, ENABLE_PREVIEW_BYTECODE) | ||
} | ||
|
||
def 'java 17 preview javadoc works'() { | ||
when: | ||
buildFile << ''' | ||
|
@@ -220,7 +250,7 @@ class BaselineJavaVersionIntegrationTest extends IntegrationSpec { | |
when: | ||
buildFile << ''' | ||
javaVersions { | ||
libraryTarget = 11 | ||
libraryTarget = '11' | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. this just tests that the string format for setting versions works. |
||
} | ||
'''.stripIndent(true) | ||
file('src/main/java/Main.java') << java11CompatibleCode | ||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this is the bit that solves #2340.