forked from gshakhn/sonar-intellij-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed gshakhn#33 "NPE during initial configuration"
* prevented potential NPE * added dialog box for sonar connection errors Issues: gshakhn#33
- Loading branch information
1 parent
a73c638
commit 1224654
Showing
5 changed files
with
92 additions
and
43 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,10 +19,11 @@ | |
<properties> | ||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | ||
<jdk.min.version>1.6</jdk.min.version> | ||
|
||
<ij.plugin>true</ij.plugin> | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
aheusingfeld
Author
Owner
|
||
<idea.version>12.0.4</idea.version> | ||
<idea.build>123.169</idea.build> | ||
<sonar.version>3.4.1</sonar.version> | ||
<sonar.language>java</sonar.language> | ||
</properties> | ||
|
||
<dependencies> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<module org.jetbrains.idea.maven.project.MavenProjectsManager.isMavenModule="true" type="PLUGIN_MODULE" version="4"> | ||
<component name="NewModuleRootManager" LANGUAGE_LEVEL="JDK_1_6" inherit-compiler-output="false"> | ||
<output url="file://$MODULE_DIR$/target/classes" /> | ||
<output-test url="file://$MODULE_DIR$/target/test-classes" /> | ||
<content url="file://$MODULE_DIR$"> | ||
<sourceFolder url="file://$MODULE_DIR$/src/main/java" isTestSource="false" /> | ||
<sourceFolder url="file://$MODULE_DIR$/src/main/resources" isTestSource="false" /> | ||
<sourceFolder url="file://$MODULE_DIR$/src/test/java" isTestSource="true" /> | ||
<excludeFolder url="file://$MODULE_DIR$/target" /> | ||
</content> | ||
<orderEntry type="inheritedJdk" /> | ||
<orderEntry type="sourceFolder" forTests="false" /> | ||
<orderEntry type="library" scope="PROVIDED" name="Maven: com.intellij:openapi:12.0.4" level="project" /> | ||
<orderEntry type="library" scope="PROVIDED" name="Maven: com.intellij:util:12.0.4" level="project" /> | ||
<orderEntry type="library" scope="PROVIDED" name="Maven: com.intellij:extensions:12.0.4" level="project" /> | ||
<orderEntry type="library" scope="PROVIDED" name="Maven: com.intellij:annotations:12.0.4" level="project" /> | ||
<orderEntry type="library" name="Maven: com.intellij:forms_rt:12.0.4" level="project" /> | ||
<orderEntry type="library" scope="PROVIDED" name="Maven: commons-lang:commons-lang:2.4" level="project" /> | ||
<orderEntry type="library" name="Maven: org.swinglabs:swingx-core:1.6.2-2" level="project" /> | ||
<orderEntry type="library" name="Maven: org.codehaus.sonar:sonar-ws-client:3.4.1" level="project" /> | ||
<orderEntry type="library" name="Maven: com.googlecode.json-simple:json-simple:1.1.1" level="project" /> | ||
<orderEntry type="library" name="Maven: org.apache.httpcomponents:httpclient:4.2.2" level="project" /> | ||
<orderEntry type="library" name="Maven: org.apache.httpcomponents:httpcore:4.2.2" level="project" /> | ||
<orderEntry type="library" name="Maven: commons-logging:commons-logging:1.1.1" level="project" /> | ||
<orderEntry type="library" name="Maven: commons-codec:commons-codec:1.6" level="project" /> | ||
<orderEntry type="library" name="Maven: commons-collections:commons-collections:3.2.1" level="project" /> | ||
<orderEntry type="library" scope="TEST" name="Maven: junit:junit:4.10" level="project" /> | ||
<orderEntry type="library" scope="TEST" name="Maven: org.hamcrest:hamcrest-core:1.1" level="project" /> | ||
<orderEntry type="library" scope="TEST" name="Maven: com.intellij:idea:12.0.4" level="project" /> | ||
<orderEntry type="library" scope="TEST" name="Maven: com.intellij:trove4j:12.0.4" level="project" /> | ||
<orderEntry type="library" scope="TEST" name="Maven: com.intellij:picocontainer:12.0.4" level="project" /> | ||
</component> | ||
</module> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
What does this do? My google-fu is failing.