mirror of
https://github.com/scm-manager/scm-manager.git
synced 2026-08-04 22:40:46 +02:00
added license informations
This commit is contained in:
27
docs/licenses/mvn-license.txt
Normal file
27
docs/licenses/mvn-license.txt
Normal file
@@ -0,0 +1,27 @@
|
||||
Copyright (c) 2009, Sebastian Sdorra
|
||||
All rights reserved.
|
||||
|
||||
Redistribution and use in source and binary forms, with or without
|
||||
modification, are permitted provided that the following conditions are met:
|
||||
|
||||
1. Redistributions of source code must retain the above copyright notice,
|
||||
this list of conditions and the following disclaimer.
|
||||
2. Redistributions in binary form must reproduce the above copyright notice,
|
||||
this list of conditions and the following disclaimer in the documentation
|
||||
and/or other materials provided with the distribution.
|
||||
3. Neither the name of SCM-Manager; nor the names of its
|
||||
contributors may be used to endorse or promote products derived from this
|
||||
software without specific prior written permission.
|
||||
|
||||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY
|
||||
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
||||
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
||||
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
|
||||
ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
||||
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
|
||||
http://bitbucket.org/sdorra/scm-manager
|
||||
34
docs/licenses/nb-license.txt
Normal file
34
docs/licenses/nb-license.txt
Normal file
@@ -0,0 +1,34 @@
|
||||
<#if licenseFirst??>
|
||||
${licenseFirst}*
|
||||
</#if>
|
||||
${licensePrefix}Copyright (c) 2009, Sebastian Sdorra
|
||||
${licensePrefix}All rights reserved.
|
||||
${licensePrefix}
|
||||
${licensePrefix}Redistribution and use in source and binary forms, with or without
|
||||
${licensePrefix}modification, are permitted provided that the following conditions are met:
|
||||
${licensePrefix}
|
||||
${licensePrefix}1. Redistributions of source code must retain the above copyright notice,
|
||||
${licensePrefix} this list of conditions and the following disclaimer.
|
||||
${licensePrefix}2. Redistributions in binary form must reproduce the above copyright notice,
|
||||
${licensePrefix} this list of conditions and the following disclaimer in the documentation
|
||||
${licensePrefix} and/or other materials provided with the distribution.
|
||||
${licensePrefix}3. Neither the name of SCM-Manager; nor the names of its
|
||||
${licensePrefix} contributors may be used to endorse or promote products derived from this
|
||||
${licensePrefix} software without specific prior written permission.
|
||||
${licensePrefix}
|
||||
${licensePrefix}THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||
${licensePrefix}AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||
${licensePrefix}IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
${licensePrefix}DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY
|
||||
${licensePrefix}DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
||||
${licensePrefix}(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
||||
${licensePrefix}LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
|
||||
${licensePrefix}ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||
${licensePrefix}(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
||||
${licensePrefix}SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
${licensePrefix}
|
||||
${licensePrefix}http://bitbucket.org/sdorra/scm-manager
|
||||
${licensePrefix}
|
||||
<#if licenseLast??>
|
||||
${licenseLast}
|
||||
</#if>
|
||||
18
pom.xml
18
pom.xml
@@ -108,6 +108,23 @@
|
||||
<artifactId>maven-site-plugin</artifactId>
|
||||
<version>2.1.1</version>
|
||||
</plugin>
|
||||
|
||||
<plugin>
|
||||
<groupId>com.google.code.maven-license-plugin</groupId>
|
||||
<artifactId>maven-license-plugin</artifactId>
|
||||
<version>1.4.0</version>
|
||||
<configuration>
|
||||
<header>docs/licenses/mvn-license.txt</header>
|
||||
<includes>
|
||||
<include>src/**</include>
|
||||
<include>**/test/**</include>
|
||||
</includes>
|
||||
<excludes>
|
||||
<exclude>target/**</exclude>
|
||||
<exclude>.hg/**</exclude>
|
||||
</excludes>
|
||||
</configuration>
|
||||
</plugin>
|
||||
|
||||
</plugins>
|
||||
|
||||
@@ -224,6 +241,7 @@
|
||||
<ehcache.version>2.2.0</ehcache.version>
|
||||
<project.build.javaLevel>1.6</project.build.javaLevel>
|
||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||
<netbeans.hint.license>SCM-BSD</netbeans.hint.license>
|
||||
</properties>
|
||||
|
||||
</project>
|
||||
Reference in New Issue
Block a user