Skip to content

Commit

Permalink
Fix typetools dep
Browse files Browse the repository at this point in the history
  • Loading branch information
adrienlauer committed Oct 5, 2015
1 parent b15fc0c commit ef92190
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 24 deletions.
42 changes: 19 additions & 23 deletions security/core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,17 @@
file, You can obtain one at http://mozilla.org/MPL/2.0/.
-->
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>org.seedstack.seed</groupId>
<artifactId>seed-security</artifactId>
<version>2.1.0-M1-SNAPSHOT</version>
</parent>

<artifactId>seed-security-core</artifactId>
<artifactId>seed-security-core</artifactId>

<properties>
<compatibility.artifactId>seed-security-support-core</compatibility.artifactId>
Expand All @@ -40,11 +41,11 @@
<artifactId>seed-el</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.sonatype.sisu.inject</groupId>
<artifactId>guice-multibindings</artifactId>
<dependency>
<groupId>org.sonatype.sisu.inject</groupId>
<artifactId>guice-multibindings</artifactId>
<version>${guice.version}</version>
</dependency>
</dependency>
<dependency>
<groupId>org.apache.shiro</groupId>
<artifactId>shiro-core</artifactId>
Expand Down Expand Up @@ -80,16 +81,11 @@
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.jodah</groupId>
<artifactId>typetools</artifactId>
<version>0.3.0</version>
</dependency>
<dependency>
<groupId>org.kametic</groupId>
<artifactId>universalvisitor</artifactId>
<version>1.0.1</version>
</dependency>
<dependency>
<groupId>org.kametic</groupId>
<artifactId>universalvisitor</artifactId>
<version>1.0.1</version>
</dependency>
<dependency>
<groupId>org.seedstack.seed</groupId>
<artifactId>seed-testing</artifactId>
Expand All @@ -109,11 +105,11 @@
<version>${fest-reflect.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>${logback.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
<scope>test</scope>
</dependency>
</dependencies>
</project>
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
import com.google.inject.matcher.Matcher;
import com.google.inject.matcher.Matchers;
import com.google.inject.multibindings.MapBinder;
import org.jodah.typetools.TypeResolver;
import net.jodah.typetools.TypeResolver;
import org.seedstack.seed.security.api.data.DataSecurityService;
import org.seedstack.seed.security.api.data.Secured;
import org.seedstack.seed.security.spi.data.DataSecurityHandler;
Expand Down

0 comments on commit ef92190

Please sign in to comment.