satamas / fortran-plugin

Fortran language plugin for IntelliJ Idea
Apache License 2.0
80 stars 18 forks source link

Update dependencies #96

Closed LecrisUT closed 1 year ago

LecrisUT commented 1 year ago

According to the documentation when targeting 2022.2+, the plugin should use Java17. This PR bumps the java, kotlin and other dependencies. Will add another PR that resolves various of the deprecation issues

satamas commented 1 year ago

I am really sorry that I missed your pull requests. I applied all changes from it that were not made by me already independently

LecrisUT commented 1 year ago

Thanks for coming back to this. I want to get the CI working on this and get a structure more similar to rust, then I can help with some long-standing bugs. But I need some help on that, and I can't get any advice from the rust plugin team. Do you think you can ping someone over there?

satamas commented 1 year ago

I will ping them. We were also copying the rust plugin structure during the plugin development, I suppose that it just changed over time.

LecrisUT commented 1 year ago

Indeed it has changed. Thanks for pinging them for me. Here is the discussion I had opened for advice, and the structure I am interested is like:

project(":plugin") {
  // Main plugin definitions
}
project(":idea") {
  // Wrapper for idea specific
}
project(":clion") {
  // Wrapper for clion specific
}
project(":other_plugin_support") {
}