Added license info
This commit is contained in:
34
pom.xml
34
pom.xml
@ -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>
|
||||
|
||||
|
Reference in New Issue
Block a user