You can download vertx-auth-shiro-3.3.3.jar in this page.
Open Source License
vertx-auth-shiro-3.3.3.jar file has the following types.
META-INF/INDEX.LIST META-INF/MANIFEST.MF META-INF/maven/io.vertx/vertx-auth-shiro/pom.properties META-INF/maven/io.vertx/vertx-auth-shiro/pom.xml io.vertx.ext.auth.shiro.LDAPProviderConstants.class io.vertx.ext.auth.shiro.PropertiesProviderConstants.class io.vertx.ext.auth.shiro.ShiroAuth.class io.vertx.ext.auth.shiro.ShiroAuthOptions.class io.vertx.ext.auth.shiro.ShiroAuthOptionsConverter.class io.vertx.ext.auth.shiro.ShiroAuthRealmType.class io.vertx.ext.auth.shiro.impl.LDAPAuthProvider.class io.vertx.ext.auth.shiro.impl.PropertiesAuthProvider.class io.vertx.ext.auth.shiro.impl.ShiroAuthProviderImpl.class io.vertx.ext.auth.shiro.impl.ShiroUser.class io.vertx.ext.auth.shiro.package-info.class io.vertx.groovy.ext.auth.shiro.ShiroAuth.class io.vertx.rxjava.ext.auth.shiro.ShiroAuth.class vertx-auth-common-js/shiro_auth.js vertx-auth-common/shiro_auth.rb vertx-auth-shiro-js/shiro_auth.js vertx-auth-shiro/shiro_auth.rb
vertx-auth-shiro-3.3.3.pom file content.
<?xml version="1.0" encoding="UTF-8"?> <!-- ~ Copyright 2014 Red Hat, Inc. ~ ~ All rights reserved. This program and the accompanying materials ~ are made available under the terms of the Eclipse Public License v1.0 ~ and Apache License v2.0 which accompanies this distribution. ~ ~ The Eclipse Public License is available at ~ http://www.eclipse.org/legal/epl-v10.html ~ ~ The Apache License v2.0 is available at ~ http://www.opensource.org/licenses/apache2.0.php ~ ~ You may elect to redistribute this code under either of these licenses. --> <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"> <parent> <artifactId>vertx-auth</artifactId> <groupId>io.vertx</groupId> <version>3.3.3</version> </parent> <modelVersion>4.0.0</modelVersion> <properties> <doc.skip>false</doc.skip> </properties> <artifactId>vertx-auth-shiro</artifactId> <dependencies> <dependency> <groupId>io.vertx</groupId> <artifactId>vertx-auth-common</artifactId> </dependency> <dependency> <!-- declare this dependency to force shiro to use this one. It is the version used by vert.x --> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>1.7.21</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.shiro</groupId> <artifactId>shiro-core</artifactId> <version>1.2.4</version> <exclusions> <exclusion> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.apache.directory.server</groupId> <artifactId>apacheds-core-api</artifactId> <version>1.5.7</version> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.directory.server</groupId> <artifactId>apacheds-protocol-ldap</artifactId> <version>1.5.7</version> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.directory.server</groupId> <artifactId>apacheds-jdbm-store</artifactId> <version>1.5.7</version> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.directory.server</groupId> <artifactId>apacheds-jdbm-partition</artifactId> <version>1.5.7</version> <scope>test</scope> <exclusions> <exclusion> <groupId>bouncycastle</groupId> <artifactId>bcprov-jdk15</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.apache.directory.server</groupId> <artifactId>apacheds-ldif-partition</artifactId> <version>1.5.7</version> <scope>test</scope> </dependency> <dependency> <groupId>com.unboundid</groupId> <artifactId>unboundid-ldapsdk</artifactId> <version>3.1.1</version> <scope>test</scope> </dependency> <dependency> <groupId>com.stormpath.shiro</groupId> <artifactId>stormpath-shiro-core</artifactId> <version>0.6.0</version> <scope>test</scope> </dependency> <dependency> <groupId>com.stormpath.sdk</groupId> <artifactId>stormpath-sdk-api</artifactId> <version>1.0.RC9.2</version> <scope>test</scope> </dependency> <dependency> <groupId>com.stormpath.sdk</groupId> <artifactId>stormpath-sdk-httpclient</artifactId> <version>1.0.RC9.2</version> <scope>test</scope> </dependency> </dependencies> <build> <pluginManagement> <plugins> <plugin> <artifactId>maven-surefire-plugin</artifactId> <executions> <execution> <id>default-test</id> <configuration> <additionalClasspathElements> <additionalClasspathElement>${project.build.directory}/bouncy-classes</additionalClasspathElement> </additionalClasspathElements> </configuration> </execution> </executions> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <artifactId>maven-dependency-plugin</artifactId> <executions> <execution> <goals> <goal>unpack</goal> </goals> <phase>process-test-classes</phase> <configuration> <artifactItems> <artifactItem> <groupId>bouncycastle</groupId> <artifactId>bcprov-jdk15</artifactId> <version>140</version> <outputDirectory>${project.build.directory}/bouncy-classes</outputDirectory> </artifactItem> </artifactItems> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <configuration> <useDefaultManifestFile>true</useDefaultManifestFile> </configuration> </plugin> <plugin> <groupId>biz.aQute.bnd</groupId> <artifactId>bnd-maven-plugin</artifactId> <version>3.2.0</version> <executions> <execution> <id>default-bnd-process</id> <goals> <goal>bnd-process</goal> </goals> </execution> </executions> <configuration> <bnd><![CDATA[ Import-Package: \ groovy.lang.*;resolution:=optional,\ org.codehaus.groovy.*;resolution:=optional,\ io.vertx.groovy.*;resolution:=optional,\ io.vertx.lang.rxjava.*;resolution:=optional,\ io.vertx.lang.groovy.*;resolution:=optional,\ io.vertx.codegen.annotations;resolution:=optional,\ io.vertx.rx.java;resolution:=optional,\ io.vertx.rxjava.core.*;resolution:=optional,\ rx.*;resolution:=optional,\ * -exportcontents: !*impl, !examples, * ]]></bnd> </configuration> </plugin> </plugins> </build> </project>
<dependency> <groupId>io.vertx</groupId> <artifactId>vertx-auth-shiro</artifactId> <version>3.3.3</version> </dependency>
If you think the following vertx-auth-shiro-3.3.3.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.
Download vertx-auth-shiro-3.3.3.jar file