Added Licenses
This commit is contained in:
62
pom.xml
62
pom.xml
@@ -50,9 +50,43 @@
|
||||
|
||||
<licenses>
|
||||
<license>
|
||||
<name>Open Autonomous Public License</name>
|
||||
<name>Open Autonomous Public License (OAPL)</name>
|
||||
<url>https://open-autonomous-connection.org/license.html</url>
|
||||
<distribution>jar</distribution>
|
||||
</license>
|
||||
<license>
|
||||
<name>GNU General Public License v3.0</name>
|
||||
<url>https://www.gnu.org/licenses/gpl-3.0.html</url>
|
||||
<comments>
|
||||
Default license: Applies to all users and projects unless an explicit alternative license has been granted.
|
||||
</comments>
|
||||
</license>
|
||||
<license>
|
||||
<name>LPGL 3</name>
|
||||
<url>https://www.gnu.org/licenses/lgpl-3.0.html#license-text</url>
|
||||
</license>
|
||||
<license>
|
||||
<name>LPGL 2.1</name>
|
||||
<url>https://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.en#SEC1</url>
|
||||
</license>
|
||||
<license>
|
||||
<name>WTPL License</name>
|
||||
<url>https://github.com/ronmamo/reflections/tree/master?tab=WTFPL-1-ov-file</url>
|
||||
</license>
|
||||
<license>
|
||||
<name>Apache License 2.0</name>
|
||||
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
|
||||
</license>
|
||||
<license>
|
||||
<name>MIT License</name>
|
||||
<url>https://opensource.org/license/mit</url>
|
||||
</license>
|
||||
<license>
|
||||
<name>javassist</name>
|
||||
<url>https://github.com/jboss-javassist/javassist/blob/master/License.html</url>
|
||||
</license>
|
||||
<license>
|
||||
<name>projectlombok</name>
|
||||
<url>https://github.com/projectlombok/lombok?tab=License-1-ov-file</url>
|
||||
</license>
|
||||
</licenses>
|
||||
|
||||
@@ -83,24 +117,22 @@
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<artifactId>maven-assembly-plugin</artifactId>
|
||||
<configuration>
|
||||
<archive>
|
||||
<manifest>
|
||||
<mainClass>org.openautonomousconnection.webserver.Main</mainClass>
|
||||
</manifest>
|
||||
</archive>
|
||||
<descriptorRefs>
|
||||
<descriptorRef>jar-with-dependencies</descriptorRef>
|
||||
</descriptorRefs>
|
||||
</configuration>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-shade-plugin</artifactId>
|
||||
<version>3.6.0</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>make-assembly</id>
|
||||
<phase>package</phase>
|
||||
<goals>
|
||||
<goal>single</goal>
|
||||
<goal>shade</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<transformers>
|
||||
<transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
|
||||
<mainClass>org.openautonomousconnection.webserver.Main</mainClass>
|
||||
</transformer>
|
||||
</transformers>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
|
||||
Reference in New Issue
Block a user