Skip to content
Snippets Groups Projects
Commit 928fbf79 authored by Peter van 't Hof's avatar Peter van 't Hof
Browse files

Added plugin to pom.xml

parent 8cb8f61f
No related branches found
No related tags found
No related merge requests found
......@@ -6,7 +6,8 @@
<artifactId>BiopetFramework</artifactId>
<version>0.2.0-DEV</version>
<packaging>jar</packaging>
<inceptionYear>2014</inceptionYear>
<name>BiopetFramework</name>
<url>http://maven.apache.org</url>
......@@ -95,6 +96,31 @@
</resource>
</resources>
<plugins>
<plugin>
<groupId>com.mycila</groupId>
<artifactId>license-maven-plugin</artifactId>
<version>2.6</version>
<configuration>
<header>com/mycila/maven/plugin/license/templates/MIT.txt</header>
<properties>
<owner>Leiden University Medical Center - Sequencing Analysis Support Core</owner>
<email>sasc@lumc.nl</email>
</properties>
<excludes>
<exclude>**/README</exclude>
<exclude>src/test/resources/**</exclude>
<exclude>src/main/resources/**</exclude>
<exclude>src/main/scripts/**</exclude>
</excludes>
</configuration>
<executions>
<execution>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>pl.project13.maven</groupId>
<artifactId>git-commit-id-plugin</artifactId>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment