João Cabrita
João Cabrita
I understood that's the issue, what I find weird is why Spring Cloud Task creates a new `PlatformTransactionManager` bean itself when, from what I could understand, it reuses an existing...
Shouldn't the transaction manager be provided by the `TaskConfigurer`, though, in which case also exposing it as a bean is unnecessary? My points here are that: 1. if you use...
Here's my configuration: project.clj: ```clojure (defproject cljs-cf-vc "0.1.0-SNAPSHOT" :description "FIXME: write this!" :url "http://example.com/FIXME" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :min-lein-version "2.7.1" :dependencies [[org.clojure/clojure "1.9.0"] [org.clojure/clojurescript "1.10.339"]] :source-paths ["src"]...
Ah, forgot to mention that the same configuration, when running on linux (ubuntu on windows, at least), works fine. Thanks for taking the time to look into this!
Hi, I've looked into this and the cause seems to be [this particular line](https://github.com/JavaMoney/jsr354-ri/blob/3e24bff4bb0d59634a259b1b0bea6877f8cce828/moneta-core/src/main/java/org/javamoney/moneta/spi/DefaultConfigProvider.java#L40); according to [the ClassLoader.getResources javadoc](https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/ClassLoader.html#getResources(java.lang.String)): > this method will only find resources in packages of named...
Is this still valid? The `MonetaryAmountFormat` docs do state that > Instances of this class are not required to be thread-safe so changing this would require an update to the...
@Manu10744 AFAICT #858 was apparently never merged and, looking at [the current code](https://github.com/fmbenhassine/spring-cloud-task/blob/e4581420b04e872f8aac4cb3ad8bab62bbe9c941/spring-cloud-task-core/src/main/java/org/springframework/cloud/task/configuration/SingleInstanceTaskListener.java#L96), it doesn't look like it was cherry-picked at all, so the issue still exists.
@keilw Most of the changes are copying files into the new module. In many cases we can probably remove the originals. Let me know if you think I should make...
@keilw Done, I've additionally moved `TestRoundingProvider` into `src/main/java`, so it's closer to how it's really used.
@keilw I've renamed the module as requested.