Plexus XML Realm.
The security.xml based Realm, which stores users, roles, privileges, and user to role mappings using security-model-xml..
Here is the list of declaration for security-xml-realm. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>org.sonatype.security.realms</groupId> <artifactId>security-xml-realm</artifactId> <version>2.4</version> </dependency>
If you think this Maven repository POM file listing for security-xml-realm is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
The security-xml-realm-2.4 has 2 dependencies.The most popular ones are listed in the following table along with their categories and number of artifacts depending on them.
Category | Artifact | Depended By Count |
---|---|---|
Testing | multithreadedtc 1.01 A framework for testing concurrent Java applications | 6 |
The following packages are defined in the security-xml-realm-2.4.jar
org.sonatype.security.authorization.xml org.sonatype.security.realms org.sonatype.security.realms.tools org.sonatype.security.usermanagement.xml
Here is the content of the POM file.
<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/maven-v4_0_0.xsd"> <parent> <groupId>org.sonatype.security.realms</groupId> <artifactId>security-realms</artifactId> <version>2.4</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>security-xml-realm</artifactId> <name>Plexus XML Realm</name> <description>The security.xml based Realm, which stores users, roles, privileges, and user to role mappings using security-model-xml.</description> <dependencies> <dependency> <groupId>org.apache.shiro</groupId> <artifactId>shiro-core</artifactId> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>jcl-over-slf4j</artifactId> </dependency> <dependency> <groupId>org.sonatype.security</groupId> <artifactId>security-model-xml</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.sonatype.security</groupId> <artifactId>security-system</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-utils</artifactId> </dependency> <!-- A backend for testing --> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-simple</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>edu.umd.cs.mtc</groupId> <artifactId>multithreadedtc</artifactId> <version>1.01</version> <scope>test</scope> </dependency> <dependency> <groupId>org.sonatype.plugin</groupId> <artifactId>plugin-host-api</artifactId> <version>1.0.2</version> </dependency> </dependencies> </project>