diff options
Diffstat (limited to 'maven-plugin')
-rw-r--r-- | maven-plugin/maven-plugin.iml | 2 | ||||
-rw-r--r-- | maven-plugin/pom.xml | 6 |
2 files changed, 8 insertions, 0 deletions
diff --git a/maven-plugin/maven-plugin.iml b/maven-plugin/maven-plugin.iml index b965c125..52e48c92 100644 --- a/maven-plugin/maven-plugin.iml +++ b/maven-plugin/maven-plugin.iml @@ -14,6 +14,7 @@ <excludeFolder url="file://$MODULE_DIR$/target/lib" /> <excludeFolder url="file://$MODULE_DIR$/target/maven-archiver" /> <excludeFolder url="file://$MODULE_DIR$/target/maven-status" /> + <excludeFolder url="file://$MODULE_DIR$/target/surefire" /> </content> <orderEntry type="inheritedJdk" /> <orderEntry type="sourceFolder" forTests="false" /> @@ -41,6 +42,7 @@ <orderEntry type="library" name="Maven: org.apache.maven:maven-plugin-api:3.0.5" level="project" /> <orderEntry type="library" name="Maven: org.codehaus.plexus:plexus-utils:3.0.22" level="project" /> <orderEntry type="library" name="Maven: org.apache.maven.plugin-tools:maven-plugin-annotations:3.4" level="project" /> + <orderEntry type="library" name="Maven: org.fusesource.jansi:jansi:1.11" level="project" /> <orderEntry type="library" name="Maven: org.jetbrains.dokka:dokka-fatjar:1.0" level="project" /> </component> </module>
\ No newline at end of file diff --git a/maven-plugin/pom.xml b/maven-plugin/pom.xml index de7a5595..96b33e1b 100644 --- a/maven-plugin/pom.xml +++ b/maven-plugin/pom.xml @@ -44,6 +44,12 @@ </dependency> <dependency> + <groupId>org.fusesource.jansi</groupId> + <artifactId>jansi</artifactId> + <version>1.11</version> + </dependency> + + <dependency> <groupId>org.jetbrains.dokka</groupId> <artifactId>dokka-fatjar</artifactId> <version>1.0</version> |