package com.example.library;
public class MathUtils {
public static int add(int a, int b) {
return a + b;
}
}
Bundle-Name: MathUtils
Bundle-SymbolicName: com.example.library
Bundle-Version: 1.0.0
Export-Package: com.example.library
bnd jar math-utils.jar
bnd wrap --output math-utils-bundle.jar math-utils.jar