Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions bnd.bnd
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
-sources: false
-dsannotations: *
-metatype: *
Bundle-SymbolicName: jblas
Export-Package: org.jblas.*
17 changes: 17 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -62,13 +62,30 @@
<target>1.5</target>
</configuration>
</plugin>
<plugin>
<groupId>biz.aQute.bnd</groupId>
<artifactId>bnd-maven-plugin</artifactId>
<version>2.4.1</version>
<executions>
<execution>
<goals>
<goal>bnd-process</goal>
</goals>
</execution>
</executions>
</plugin>

<!-- some config for the jar -->
<!-- The following configuration is required because bnd-maven-plugin
generates the manifest to target/classes/META-INF/MANIFEST.MF but the normal
maven-jar-plugin does not use it. If the jar-plugin is patched to pick up
the manifest from this location, then the following config is not needed. -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.3.1</version>
<configuration>
<useDefaultManifestFile>true</useDefaultManifestFile>
<archive>
<manifest>
<mainClass>org.jblas.benchmark.Main</mainClass>
Expand Down