Skip to content

Commit

Permalink
prepare for 2.0.2 release
Browse files Browse the repository at this point in the history
  • Loading branch information
rholder committed Oct 6, 2014
1 parent b8a8db5 commit e766bd2
Show file tree
Hide file tree
Showing 3 changed files with 37 additions and 5 deletions.
34 changes: 31 additions & 3 deletions META-INF/plugin.xml
Original file line number Diff line number Diff line change
@@ -1,10 +1,38 @@
<idea-plugin version="2">
<name>Gradle View</name>
<description>
Show a split tree rollup of the dependencies for each Gradle configuration in use by a project.
</description>
<description><![CDATA[
<h2>What is this?</h2>
<p>Show a split tree rollup of the dependencies for each Gradle configuration in use by a project.</p>
<h2>Why would I need this?</h2>
<p>
Dependency wrangling isn't easy in a large Java project. This IntelliJ IDEA plugin was built to add a little
more sanity to the tedious task of analyzing dependencies by rolling up the entire dependency graph into a
pair of more easily digestible trees derived from a serialized version of Gradle's dependency graph. The
Dependency List provides a lexicographically sorted set of all the dependencies for each configuration in
your project and all of its sub-projects. The Dependency Hierarchy shows a nested view of each Gradle
configuration in your project and all of its sub-projects. Grey dependencies in the tree indicate it was
included by a previous dependency that was added before (and can be safely omitted if it is explicitly
being included).
</p>
<h2>Features</h2>
<ul>
<li>Built on the Gradle Tooling API 1.12, but should work on most 1.x and 2.x versions</li>
<li>Visual highlighting to indicate dependencies in use and replacement versions</li>
<li>Lexicographically sorted listing for all Gradle configurations</li>
<li>Load any project's Gradle dependencies, not just the one currently open inside IntelliJ</li>
<li>Toggle the showing of replaced dependencies</li>
</ul>
]]></description>
<version>2.0.2</version>
<change-notes><![CDATA[
<p>2.0.2 - 2014-10-06
<ul>
<li>Fixed some wonky Windows JAVA_HOME path behavior <a href="https://github.com/rholder/gradle-view/issues/5">#5</a></li>
</ul>
</p>
<p>2.0.1 - 2014-09-22
<ul>
<li>Fixed a Windows path bug with absolute file names <a href="https://github.com/rholder/gradle-view/issues/5">#5</a></li>
Expand Down
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
##What is this?
The Gradle View IntelliJ IDEA plugin shows a split tree rollup of the dependencies for each Gradle configuration in use
by a project.

##What is this?
Dependency wrangling isn't easy in a large Java project. This IntelliJ IDEA plugin was built to add a little more sanity
to the tedious task of analyzing dependencies by rolling up the entire dependency graph into a pair of more easily
Expand All @@ -10,7 +14,7 @@ omitted if it is explicitly being included).
![Gradle View](http://plugins.jetbrains.com/files/7150/screenshot_14710.png)

##Features
* Built on the [Gradle Tooling API 1.12](http://www.gradle.org/docs/1.12/userguide/embedding.html)
* Built on the [Gradle Tooling API 1.12](http://www.gradle.org/docs/1.12/userguide/embedding.html), but should work on most 1.x and 2.x versions
* Visual highlighting to indicate dependencies in use and replacement versions
* Lexicographically sorted listing for all Gradle configurations
* Load any project's Gradle dependencies, not just the one currently open inside IntelliJ
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ sourceCompatibility = 1.6
targetCompatibility = 1.6

group = 'com.github.rholder'
version = '2.0.2-SNAPSHOT'
version = '2.0.2'

buildscript {
repositories {
Expand Down

0 comments on commit e766bd2

Please sign in to comment.