mirror of
https://github.com/enso-org/enso.git
synced 2024-12-26 16:52:16 +03:00
79c82da21c
* Initial integration with Frgaal in sbt Half-working since it chokes on generated classes from annotation processor. * Replace AutoService with ServiceProvider For reasons unknown AutoService would fail to initialize and fail to generate required builtin method classes. Hidden error message is not particularly revealing on the reason for that: ``` [error] error: Bad service configuration file, or exception thrown while constructing Processor object: javax.annotation.processing.Processor: Provider com.google.auto.service.processor.AutoServiceProcessor could not be instantiated ``` The sample records is only to demonstrate that we can now use newer Java features. * Cleanup + fix benchmark compilation Bench requires jmh classes which are not available because we obviously had to limit `java.base` modules to get Frgaal to work nicely. For now, we default to good ol' javac for Benchmarks. Limiting Frgaal to runtime for now, if it plays nicely, we can expand it to other projects. * Update CHANGELOG * Remove dummy record class * Update licenses * New line * PR review * Update legal review Co-authored-by: Radosław Waśko <radoslaw.wasko@enso.org>
20 lines
809 B
Plaintext
20 lines
809 B
Plaintext
/*
|
|
* Licensed to the Apache Software Foundation (ASF) under one
|
|
* or more contributor license agreements. See the NOTICE file
|
|
* distributed with this work for additional information
|
|
* regarding copyright ownership. The ASF licenses this file
|
|
* to you 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.
|
|
*/
|
|
|