Skip to content

Commit

Permalink
OSGI-ify org.graalvm.truffle:truffle-compiler
Browse files Browse the repository at this point in the history
Signed-off-by: Florian Hotze <[email protected]>
  • Loading branch information
florian-h05 committed Jan 6, 2025
1 parent e776c3e commit c5cbcb2
Show file tree
Hide file tree
Showing 4 changed files with 56 additions and 0 deletions.
20 changes: 20 additions & 0 deletions org.graalvm.truffle.truffle-compiler/NOTICE
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
This content is produced and maintained by the openHAB project.

* Project home: https://www.openhab.org

== Declared Project Licenses

This program and the accompanying materials are made available under the terms
of the Eclipse Public License 2.0 which is available at
https://www.eclipse.org/legal/epl-2.0/.

== Source Code

https://github.com/openhab/openhab-osgiify

== Third-party Content

polyglot
* License: Universal Permissive License, Version 1.0
* Project: http://www.graalvm.org
* Source: https://github.com/oracle/graal
13 changes: 13 additions & 0 deletions org.graalvm.truffle.truffle-compiler/osgi.bnd
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
Bundle-Description: OSGi-ified version of ${project.name}
Bundle-Name: ${project.name}
Bundle-License: Universal Permissive License, Version 1.0
Bundle-Version: ${project.version}
Import-Package: \
!jdk.vm.ci.*, \
*
Export-Package: \
!NOTICE, \
*;version=${project.version}
-includeresource: \
NOTICE

22 changes: 22 additions & 0 deletions org.graalvm.truffle.truffle-compiler/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">

<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>org.openhab.osgiify</groupId>
<artifactId>org.openhab.reactor.osgiify</artifactId>
<version>1.0.0</version>
</parent>

<artifactId>org.graalvm.truffle.truffle-compiler</artifactId>
<version>${graalvm.version}</version>

<name>GraalVM :: Truffle :: Compiler</name>

<properties>
<origin.groupId>org.graalvm.truffle</origin.groupId>
<origin.artifactId>truffle-compiler</origin.artifactId>
</properties>

</project>
1 change: 1 addition & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@
<module>org.graalvm.sdk.jniutils</module>
<module>org.graalvm.sdk.nativeimage</module>
<module>org.graalvm.sdk.word</module>
<module>org.graalvm.truffle.truffle-compiler</module>
<module>org.json.json</module>
<module>org.pcap4j.pcap4j-core</module>
<module>org.pcap4j.pcap4j-packetfactory-static</module>
Expand Down

0 comments on commit c5cbcb2

Please sign in to comment.