added version and JPMS module descriptor
This commit is contained in:
@@ -29,7 +29,7 @@ public class BeanContainer {
|
||||
try {
|
||||
return with(beanFactoryClass.getConstructor().newInstance());
|
||||
} catch (NoSuchMethodException | IllegalAccessException ex) {
|
||||
throw JWO.newThrowable(BeanConfigurationException.class,
|
||||
throw JWO.newThrowable(BeanConfigurationException.class, ex,
|
||||
"Bean factory class '%s' is required to have a public zero arguments constructor", beanFactoryClass.getName());
|
||||
}
|
||||
}
|
||||
|
@@ -1,3 +1,4 @@
|
||||
module net.woggioni.wdi {
|
||||
requires net.woggioni.jwo;
|
||||
exports net.woggioni.wdi;
|
||||
}
|
Reference in New Issue
Block a user