diff options
-rw-r--r-- | .idea/libraries/Maven__org_fusesource_jansi_jansi_1_11.xml | 14 | ||||
-rw-r--r-- | maven-plugin/maven-plugin.iml | 2 | ||||
-rw-r--r-- | maven-plugin/pom.xml | 6 |
3 files changed, 22 insertions, 0 deletions
diff --git a/.idea/libraries/Maven__org_fusesource_jansi_jansi_1_11.xml b/.idea/libraries/Maven__org_fusesource_jansi_jansi_1_11.xml new file mode 100644 index 00000000..5f1c2b5d --- /dev/null +++ b/.idea/libraries/Maven__org_fusesource_jansi_jansi_1_11.xml @@ -0,0 +1,14 @@ +<?xml version="1.0" encoding="UTF-8"?> +<component name="libraryTable"> + <library name="Maven: org.fusesource.jansi:jansi:1.11"> + <CLASSES> + <root url="jar://$MAVEN_REPOSITORY$/org/fusesource/jansi/jansi/1.11/jansi-1.11.jar!/" /> + </CLASSES> + <JAVADOC> + <root url="jar://$MAVEN_REPOSITORY$/org/fusesource/jansi/jansi/1.11/jansi-1.11-javadoc.jar!/" /> + </JAVADOC> + <SOURCES> + <root url="jar://$MAVEN_REPOSITORY$/org/fusesource/jansi/jansi/1.11/jansi-1.11-sources.jar!/" /> + </SOURCES> + </library> +</component>
\ No newline at end of file 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> |