1
0
mirror of https://gitlab.com/camelot/kickc.git synced 2024-12-26 03:32:23 +00:00

Added license and more to JAR MANIFEST.

This commit is contained in:
jespergravgaard 2021-12-23 23:01:53 +01:00
parent 70190a9e8e
commit 763c228d33

35
pom.xml
View File

@ -22,6 +22,26 @@
<groupId>dk.camelot64.kickc</groupId>
<artifactId>kickc</artifactId>
<version>release</version>
<name>KickC</name>
<url>https://gitlab.com/camelot/kickc</url>
<description>
KickC is a C-compiler for 6502-based platforms creating optimized and readable assembler code.
</description>
<inceptionYear>2017</inceptionYear>
<licenses>
<license>
<name>MIT License</name>
<url>http://www.opensource.org/licenses/mit-license.php</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<name>Jesper Balman Gravgaard</name>
<email>jesper@balmangravgaard.dk</email>
<url>https://gitlab.com/jespergravgaard</url>
</developer>
</developers>
<dependencies>
<dependency>
@ -145,9 +165,24 @@
<mainClass>dk.camelot64.kickc.KickC</mainClass>
<addClasspath>true</addClasspath>
</manifest>
<manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
</archive>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<version>3.5.0</version>
<executions>
<execution>
<id>bundle-manifest</id>
<phase>process-classes</phase>
<goals>
<goal>manifest</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<version>3.3.0</version>