João Martins
- Total activity 48
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 12
-
Created How to use JpsFacetConfigurationSerializer with a properties class outside of jps-module
We want to integrate with IntelliJ's build system so that, when a Webapp artifact is built, we generate source context files at build time and add them to the final artifact. The generation process... -
Created Trigger applyEditorTo() on SettingsEditor without changing any user-actionable form field
Our deployment run configuration stores most data in the deployment configuration, and a little bit in a facet. We're linking a button to the facet editor, so a user can easily edit facet data from... -
Created Link to facet editor
AnsweredWe're proxying a setting from a module's facet in the deployment run config editor. If the user wants to edit that setting, we want to add a link to the facet in the editor so they can edit it in t... -
Created Show different editors for New Project and Add Framework Support dialogs
I'm implementing a new facet which I would like to contain configuration file locations related to our product/plugin. At New Project time, I don't want to ask the user for those locations since th... -
Created Run configuration hides existing before launch tasks
During adding our framework support, we're adding a default deployment run configuration containing Before Launch tasks to build the artifact. Here is the relevant code: RunManager runManager = Run... -
Created BuildManagerListener isn't being triggered outside of debug mode
AnsweredWe're using a correctly registered BuildManagerListener that should pick up a configuration setting right before a build starts. We're observing that this works as expected on Build Debug Process m... -
Created Dynamically adding a value into plugin.xml
AnsweredWe're developing a build plugin that adds content to the class output using a tool in an imported jar. The imported jar name contains the version number, that is prone to change often on early rele... -
Created Adding dynamically-generated file to artifact root
I understand that to add files to be packaged with an artifact in IDEA, one goes to "Project Structure", "Artifacts" and then "Add copy of". What I'm looking for is a way to add to an artifact a fi... -
Created What's the best way to use Application Servers for a Run/Debug Config that just calls a library method?
I'm developing a plugin that runs Google App Engine applications locally, either Standard or Flex, without depending on Maven or Gradle. Looking at IntelliJ's GAE plugin, I can see it's tightly cou... -
Created Getting all .java files within a project
1) Currently, I'm resorting to an auxiliary map to get all .java files in a project:final Map<String, VirtualFile> locationMap = Maps.newHashMap(); // The inner does not have to be concurrent. Proj...