Attila Kelemen
Attila Kelemen
I think `NbJpaModelBuilder.getProjectInfo` should be called. Though, it is called by the Gradle daemon (not within NetBeans), so I'm not sure what happens to your log (maybe it is somewhere...
Its there but kinda awkward to access because of ClassLoader issues. That is, you have to use reflection. See how I look up the sources in [JavaSourcesModelBuilder](https://github.com/kelemen/netbeans-gradle-project/blob/v1.3.2/netbeans-gradle-default-models/src/main/java/org/netbeans/gradle/model/java/JavaSourcesModelBuilder.java). You may copy...
It might work since they are loaded by different class loaders but I wouldn't risk it. Later we can refactor these common code to a mini library anyway.
`GradleClassPathProvider` is an internal class, you have to rely on `ClassPathProvider`. Also, there might be multiple instances of `ClassPathProvider`, so you have to get them all and see which one...
What do you mean on "any kind of game"? It currently does not have TGT / LoE cards implemented (and I didn't really had the time / mood to improve...
Yes, but my plan is to add it on demand, that is once I have the time to do my further plans or someone else wants it. Do you need...
You need some additional `EntitySelector` and `TargetlessAction` implementation. Otherwise it is similar to [Ysera](https://github.com/HearthSim/Brazier/blob/0d8b53a0309aeab121c2666d7d9ce15b16e1fca9/Brazier/cardDb/cards/ysera.card): You have to replace with `TargetlessActions.addSelectedCard` with a new method: `TargetlessActions.addPickedCard` (this method does not yet...
Are you behind a proxy? Those dependencies are here: http://dl.bintray.com/kelemen/maven. The main class is `HearthStoneEmulator` but you simplz have to run the `run` Gradle task (which NB does).
If you are using NetBeans, you should just install its Gradle plugin and the project should open out of the box (assuming that the repositories are accessible). I'm actually using...
If you have to use proxy, try follow what is written in this issue: kelemen/netbeans-gradle-project#139.