Skip to content

Commit

Permalink
Fixes a commons lang3 dependency issue
Browse files Browse the repository at this point in the history
where this component already had that dependency transitively, but the pom
file declared that dependency for use in test scope and so it was no longer
included in runtime scope. This would be problematic if you'd run a main
class from the component directly, but would work fine in a packaged neo4j
since there were other components including that dependency anyway.
  • Loading branch information
tinwelint committed Jan 15, 2016
1 parent f6f6895 commit 3a41b81
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 5 deletions.
1 change: 1 addition & 0 deletions community/import-tool/LICENSES.txt
Expand Up @@ -3,6 +3,7 @@ libraries. For an overview of the licenses see the NOTICE.txt file.

------------------------------------------------------------------------------
Apache Software License, Version 2.0
Apache Commons Lang
Lucene Core
------------------------------------------------------------------------------

Expand Down
1 change: 1 addition & 0 deletions community/import-tool/NOTICE.txt
Expand Up @@ -26,5 +26,6 @@ Third-party licenses
--------------------

Apache Software License, Version 2.0
Apache Commons Lang
Lucene Core

5 changes: 0 additions & 5 deletions community/import-tool/pom.xml
Expand Up @@ -81,10 +81,5 @@ the relevant Commercial Agreement.
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>

0 comments on commit 3a41b81

Please sign in to comment.