blob: 9ee85e0ebd507b0740817f629a6df74c262f6685 [file] [log] [blame]
package ${package};
import org.apache.felix.ipojo.annotations.Component;
import org.apache.felix.ipojo.annotations.Instantiate;
@Component
@Instantiate
public class HelloComponent {
public HelloComponent() {
System.out.println("Hello ${artifactId}");
}
}