Added license info

This commit is contained in:
Isaac Parenteau
2019-10-05 22:16:15 -05:00
parent 82f197d26f
commit 2d3f44c5f7
20 changed files with 522 additions and 208 deletions

34
pom.xml
View File

@ -7,11 +7,22 @@
<version>0.0.1-SNAPSHOT</version>
<name>Crypto</name>
<description>Crypto library</description>
<inceptionYear>2019</inceptionYear>
<organization>
<name>Locusworks</name>
<url>https://www.locusworks.net</url>
</organization>
<scm>
<url>git@gitea.locusworks.net:Locusworks/pseudo-bot.git</url>
</scm>
<properties>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<nexus.repo>http://nexus.locusworks.net</nexus.repo>
<license-maven-plugin.version>3.0</license-maven-plugin.version>
</properties>
<build>
@ -51,6 +62,29 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>com.mycila</groupId>
<artifactId>license-maven-plugin</artifactId>
<version>${license-maven-plugin.version}</version>
<configuration>
<quiet>false</quiet>
<header>${basedir}/licenses/LICENSE.template</header>
<strictCheck>true</strictCheck>
<useDefaultExcludes>true</useDefaultExcludes>
<includes>
<include>**/*.java</include>
</includes>
</configuration>
<dependencies>
<!-- this dependency allows ${license.git.copyrightLastYear} in the
license template -->
<dependency>
<groupId>com.mycila</groupId>
<artifactId>license-maven-plugin-git</artifactId>
<version>${license-maven-plugin.version}</version>
</dependency>
</dependencies>
</plugin>
</plugins>
</build>