Skip to content

Commit

Permalink
Merge pull request #25 from funfried/0.x
Browse files Browse the repository at this point in the history
Updated PAX-WEB to from 4.2.0-SNAPSHOT to 4.2.3 (Apache Karaf 4.0.3) …
  • Loading branch information
cmoulliard committed Feb 29, 2016
2 parents 22f48bf + c4e5f6d commit e33b740
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 3 deletions.
4 changes: 2 additions & 2 deletions pax-cdi-parent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,13 @@
<pax.jpa.version>0.3.0</pax.jpa.version>
<pax.swissbox.version>1.8.0</pax.swissbox.version>
<pax.url.version>2.2.0</pax.url.version>
<pax.web.version>4.2.0-SNAPSHOT</pax.web.version>
<pax.web.version>4.2.3</pax.web.version>
<slf4j.version>1.6.4</slf4j.version>
<weld.api.version>1.2.0.Beta1</weld.api.version>
<weld.version>1.2.0.Beta1</weld.version>
<weld2.version>2.2.12.Final</weld2.version>
<xbean.version>4.1</xbean.version>

<servlet.spec.groupId>javax.servlet</servlet.spec.groupId>
<servlet.spec.artifactId>javax.servlet-api</servlet.spec.artifactId>
<servlet.spec.version>3.1.0</servlet.spec.version>
Expand Down
2 changes: 1 addition & 1 deletion pax-cdi-web-openwebbeans/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<properties>
<bundle.symbolicName>org.ops4j.pax.cdi.web.openwebbeans</bundle.symbolicName>
<bundle.namespace>org.ops4j.pax.cdi.web.openwebbeans</bundle.namespace>
<jetty.version>9.0.7.v20131107</jetty.version>
<jetty.version>9.2.10.v20150310</jetty.version>
</properties>

<dependencies>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -101,4 +101,15 @@ public void destroyFilterInstance(Filter filter) {
public void destroyListenerInstance(EventListener listener) {
getInjector().destroy(listener);
}

@Override
public <T> T decorate(T o) {
getInjector().inject(o);
return o;
}

@Override
public void destroy(Object o) {
getInjector().destroy(o);
}
}

0 comments on commit e33b740

Please sign in to comment.