From 549ef194efc7a3eee948eac2da4ac36c2e47a6a1 Mon Sep 17 00:00:00 2001 From: Sergey Mashkov Date: Fri, 10 Jul 2015 15:10:36 +0300 Subject: Maven plugin initial implementation --- maven-plugin/maven-plugin.iml | 46 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 maven-plugin/maven-plugin.iml (limited to 'maven-plugin/maven-plugin.iml') diff --git a/maven-plugin/maven-plugin.iml b/maven-plugin/maven-plugin.iml new file mode 100644 index 00000000..b965c125 --- /dev/null +++ b/maven-plugin/maven-plugin.iml @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file -- cgit From 3d25df6c3c68b43431abbed326b17c50717a18f7 Mon Sep 17 00:00:00 2001 From: Sergey Mashkov Date: Fri, 10 Jul 2015 15:47:32 +0300 Subject: Add JANSI library as it is required sometimes --- .idea/libraries/Maven__org_fusesource_jansi_jansi_1_11.xml | 14 ++++++++++++++ maven-plugin/maven-plugin.iml | 2 ++ maven-plugin/pom.xml | 6 ++++++ 3 files changed, 22 insertions(+) create mode 100644 .idea/libraries/Maven__org_fusesource_jansi_jansi_1_11.xml (limited to 'maven-plugin/maven-plugin.iml') 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 @@ + + + + + + + + + + + + + + \ 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 @@ + @@ -41,6 +42,7 @@ + \ 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 @@ -43,6 +43,12 @@ 3.4 + + org.fusesource.jansi + jansi + 1.11 + + org.jetbrains.dokka dokka-fatjar -- cgit