Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Added instructions on how to list the dependencies
  • Loading branch information
egonw committed Dec 24, 2015
1 parent 3d06f20 commit c188df0
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -19,3 +19,4 @@ nbproject/private/
target
.project
.classpath
*.dot
8 changes: 8 additions & 0 deletions README.md
Expand Up @@ -216,6 +216,14 @@ cdk/base/standard: mvn jacoco:report
cdk/base/standard: open target/site/jacoco/index.html
```

#### Dependency Tree

Maven can create a dependency tree with the following command:

```
cdk/: mvn dependency:tree
```

## Examples and tutorials

To get started using the CDK, you may be interested in the following websites which contain
Expand Down
6 changes: 5 additions & 1 deletion pom.xml
Expand Up @@ -578,7 +578,11 @@
</dependency>
</dependencies>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>2.10</version>
</plugin>
</plugins>
<pluginManagement>
<plugins>
Expand Down

0 comments on commit c188df0

Please sign in to comment.