Skip to content

Commit

Permalink
[#1932] rename annotation-processing-tests to codegen-tests-java8plus
Browse files Browse the repository at this point in the history
  • Loading branch information
remkop committed Feb 5, 2023
1 parent a868658 commit 01019b1
Show file tree
Hide file tree
Showing 112 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Picocli Annotation Processor Tests
# Picocli Codegen Tests for Java 8+

This subproject contains tests for the annotation processor in the `picocli-codegen` module.
This subproject contains tests for the annotation processor in the `picocli-codegen` module.
These tests use the (excellent and recommended) [google/compile-testing](https://github.com/google/compile-testing) library, which requires Java 8.

The `picocli-codegen` module itself only requires Java 6, and I found it convenient to split off the annotation processor tests into a separate subproject.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ plugins {
}

group 'info.picocli'
description 'Picocli Annotation Processing Tests - Tests Annotation Processors for picocli Annotations.'
description 'Picocli Codegen Tests for Java 8+: Tests Annotation Processors for picocli Annotations.'
version "$projectVersion"

sourceCompatibility = 1.8
Expand All @@ -29,12 +29,12 @@ tasks.withType(Test.class) {

jar {
manifest {
attributes 'Specification-Title': 'Picocli Annotation Processing Tests',
attributes 'Specification-Title': 'Picocli Codegen Tests for Java 8+',
'Specification-Vendor' : 'Remko Popma',
'Specification-Version' : archiveVersion.get(),
'Implementation-Title' : 'Picocli Annotation Processing Tests',
'Implementation-Title' : 'Picocli Codegen Tests for Java 8+',
'Implementation-Vendor' : 'Remko Popma',
'Implementation-Version': archiveVersion.get(),
'Automatic-Module-Name' : 'info.picocli.annotation.processing.tests'
'Automatic-Module-Name' : 'info.picocli.codegen.tests.java8plus'
}
}

0 comments on commit 01019b1

Please sign in to comment.