<dependencies>
<dependency>
<groupId>com.example</groupId>
<artifactId>payment-framework</artifactId>
<version>1.0.0</version>
</dependency>
</dependencies>
import com.example.payment.PaymentProcessor;
public class PaymentService {
private PaymentProcessor paymentProcessor;
public PaymentService() {
this.paymentProcessor = new PaymentProcessor();
}
public void processPayment(double amount, String customerId) {
this.paymentProcessor.process(amount, customerId);
}
}
bundle.file=payment-framework-1.0.0.jar
subsystem=org.apache.felix.service.subsystem.manager.ControlSubsystemFactory