summaryrefslogtreecommitdiffstats
path: root/Modules/UseJava
Commit message (Collapse)AuthorAgeFilesLines
* LICENSE: Replace references to Copyright.txt with LICENSE.rstKitware Robot2025-03-033-3/+3
| | | | | | | | | | ``` git grep -lz 'Copyright.txt or https://cmake.org/licensing ' | while IFS= read -r -d $'\0' f ; do sed -i '/Copyright.txt or https:\/\/cmake.org\/licensing / { s/Copyright.txt/LICENSE.rst/ }' "$f" ; done ```
* export: Increase maximum policy version in exported files to 3.30Brad King2024-10-101-1/+1
| | | | | | The files generated by `install(EXPORT)`, `export()`, and `install_jar_exports()` commands are known to work with policies as of CMake 3.30, so enable them in sufficiently new CMake versions.
* UseJava: Reduce add_jar verbosity by defaultGold8562024-08-131-1/+1
| | | | | | Set "Clean class files" message to verbose. Fixes: #22107
* export: Increase maximum policy version in exported files to 3.29Brad King2024-06-051-1/+1
| | | | | | The files generated by `install(EXPORT)`, `export()`, and `install_jar_exports()` commands are known to work with policies as of CMake 3.29, so enable them in sufficiently new CMake versions.
* Modules: Fix CMP0159 warnings in modules when tracingJuan Ramos2024-03-291-0/+5
| | | | Closes: #25829
* export: Increase maximum policy version in exported files to 3.28Brad King2024-02-061-1/+1
| | | | | | The files generated by `install(EXPORT)`, `export()`, and `install_jar_exports()` commands are known to work with policies as of CMake 3.28, so enable them in sufficiently new CMake versions.
* UseJava: Increase maximum policy version in exported files to 3.27Gold8562023-11-271-2/+1
| | | | | | | Extend commit c5f1af1ffe (export: Increase maximum policy version in exported files to 3.27, 2023-10-03) to cover UseJava too. Fixes: #22655
* Tests: Bump CMake minimum required in tests to 2.8.12Chuck Atkins2020-12-231-1/+1
| | | | | | | Since 3.19, CMake generates a deprecation warning when using a minimum version less than 2.8.12. This eliminates those warnings generated during tests, which are typically hidden from the user and developer but are being generated nonetheless.
* UseJava: Move helper scripts to subdirectoryNikita Nemkin2020-11-123-0/+99
| | | | Also, exclude them from the help module index.
* UseJava: clean class files from previous buildsAlexey Karndshev2020-04-061-0/+17
If java_class_filelist exists, remove previous class files before building the new ones. If java_sources content has changed, clean and rebuild the class files of the target. Fixes: #20377