Home
IDEs Support (IntelliJ Platform) | JetBrains
Contact Support
Community
Sign in
Andreas Schaefer
Total activity
24
Last activity
July 03, 2018 08:19
Member since
March 26, 2015 15:16
Following
0 users
Followed by
0 users
Votes
0
Subscriptions
7
Activity overview
Posts (7)
Comments (10)
Sort by recent activity
Recent activity
Votes
Created
July 02, 2018 15:23
Hello Yaroslav No, I just use the com.intellij.openapi.vcs.CodeSmellDetector.CodeSmellDetector.getInstance(project); in my plugin. What I want to know is how to I make the thread read-only. Rea...
Community
IntelliJ IDEA Open API and Plugin Development
Cannot run Code Smell Detector in File Change Event anymore
0 votes
Created
June 04, 2015 16:34
Thanks that did the trick. If anybody needs to know how I did it this is the code: private static final FileAttribute MODIFICATION_STAMP_FILE_ATTRIBUTE = new FileAttribute("modificationStampFileAtt...
Community
IntelliJ IDEA Users
Persist User Data on a Virtual File
0 votes
Created
March 29, 2015 00:54
I tried also on OpenSuSE with Java 1.7 and it still fails the same way.
Community
IntelliJ IDEA Open API and Plugin Development
HotSwap Fails due to 'delete method not implemented'
0 votes
Created
March 30, 2015 22:56
I delved into the issue a little bit further and so I want to clarify a few things.1. I did not try that with official Apache Sling but Adobe AEM 6.0 which is based on Sling.2. I tried multiple Jav...
Community
IntelliJ IDEA Open API and Plugin Development
HotSwap Fails due to 'delete method not implemented'
0 votes
Created
June 16, 2015 16:43
Thanks for the reply. I did the follwoing:1. Create the Maven Importer and define it in the plugin.xml: <extensions defaultExtensionNs="org.jetbrains.idea.maven"> <importer implementation="com.h...
Community
IntelliJ IDEA Open API and Plugin Development
Listen to Maven Build Events
0 votes
Created
June 16, 2015 17:48
Yes, that was the idea.But what I need is to know when an Artifact (JAR file) has changed to display the change in my plugin. I guess I could accmplish the same thing with a VirtualFileListener to ...
Community
IntelliJ IDEA Open API and Plugin Development
Listen to Maven Build Events
0 votes
Created
July 08, 2015 21:55
Thaks. that worked fine. I had to change my code because of some of the restrictions (Dispatcher but not Write Access Thread).
Community
IntelliJ IDEA Open API and Plugin Development
Checking Java Files for Errors
0 votes
Created
June 16, 2015 19:36
I just did that and it works with excluded target (build directory) folder under IntelliJ 14 CE.Thanks for your help - Andy
Community
IntelliJ IDEA Open API and Plugin Development
Listen to Maven Build Events
0 votes
Created
July 22, 2015 18:31
I know but that requires the Archetypes to be added to the User Archetypes.What I want is to parse the Remote Maven Repository to discover the Archetypes dyrnically.What I am looking for is to find...
Community
IntelliJ IDEA Open API and Plugin Development
Dynamically Discover Maven Archetypes
0 votes
Created
March 01, 2016 20:56
I finally figured it out. The issue was that I used a Task.Modal in the Progress Manager which is executed on the Dispatcher Thread hence the deadlock. Switching to Task.Backgroundable() to execu...
Community
IntelliJ IDEA Open API and Plugin Development
Execute a Maven Build from a Plugin Action
0 votes