Skip to content

Commit

Permalink
Refactored proxy factory, fixed broken CglibProxyFactory
Browse files Browse the repository at this point in the history
  • Loading branch information
ggeorgovassilis committed Sep 27, 2017
1 parent 159849a commit 68b7b79
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
11 changes: 8 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<groupId>com.github.ggeorgovassilis</groupId>
<artifactId>spring-rest-invoker</artifactId>
<name>spring-rest-invoker</name>
<version>1.5</version>
<version>1.6-SNAPSHOT</version>
<description>Spring factory that allows consumption of a remote REST JSON service by binding it to a local Java interface and exposing it as a proxy.</description>
<inceptionYear>2014</inceptionYear>

Expand Down Expand Up @@ -66,15 +66,20 @@
<artifactId>javax.ws.rs-api</artifactId>
<version>2.0</version>
<scope>provided</scope>
<optional>true</optional>
</dependency>

<dependency>
<groupId>cglib</groupId>
<artifactId>cglib</artifactId>
<version>3.2.5</version>
<scope>provided</scope>
<optional>true</optional>
</dependency>

<dependency>
<groupId>net.bytebuddy</groupId>
<artifactId>byte-buddy</artifactId>
<version>1.7.5</version>
<scope>provided</scope>
</dependency>


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
import net.sf.cglib.proxy.Enhancer;

/**
* Implements proxies with cglib
* Implements opaque proxies with cglib
*
* @author george georgovassilis
*
Expand Down

0 comments on commit 68b7b79

Please sign in to comment.