-
Notifications
You must be signed in to change notification settings - Fork 433
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[#1932] - create module picocli-tests-java8plus
- Loading branch information
Showing
8 changed files
with
1,950 additions
and
4 deletions.
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
# Picocli Java 8 Tests | ||
|
||
This subproject contains tests that use Java 8, and the JUnit 5 and System Lambda test frameworks. | ||
|
||
This module does not publish any artifacts. | ||
|
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,33 @@ | ||
plugins { | ||
id 'java' | ||
} | ||
|
||
group 'info.picocli' | ||
description 'Picocli Tests Requiring Java 8 or greater' | ||
version "$projectVersion" | ||
|
||
sourceCompatibility = 1.8 | ||
targetCompatibility = 1.8 | ||
|
||
test { | ||
useJUnitPlatform() | ||
} | ||
|
||
dependencies { | ||
api rootProject | ||
testImplementation supportDependencies.junit5Api | ||
testRuntimeOnly supportDependencies.junit5Engine | ||
testImplementation supportDependencies.systemLambda | ||
} | ||
|
||
jar { | ||
manifest { | ||
attributes 'Specification-Title': 'Picocli Tests Requiring Java 8 or greater', | ||
'Specification-Vendor' : 'Remko Popma', | ||
'Specification-Version' : archiveVersion.get(), | ||
'Implementation-Title' : 'Picocli Tests Requiring Java 8 or greater', | ||
'Implementation-Vendor' : 'Remko Popma', | ||
'Implementation-Version': archiveVersion.get(), | ||
'Automatic-Module-Name' : 'info.picocli.tests.java8plus' | ||
} | ||
} |
Oops, something went wrong.