Security: XML Model.
Contains an xml implementation of the security-model..
Here is the list of declaration for security-model-xml. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>org.sonatype.security</groupId> <artifactId>security-model-xml</artifactId> <version>2.4</version> </dependency>
If you think this Maven repository POM file listing for security-model-xml is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
The following plugins are used in the security-model-xml-2.4.jar
The following packages are defined in the security-model-xml-2.4.jar
org.sonatype.security.model.source org.sonatype.security.model.upgrade
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> <artifactId>security-parent</artifactId> <groupId>org.sonatype.security</groupId> <version>2.4</version> </parent> <modelVersion>4.0.0</modelVersion> <groupId>org.sonatype.security</groupId> <artifactId>security-model-xml</artifactId> <name>Security: XML Model</name> <description>Contains an xml implementation of the security-model.</description> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>2.4.2</version> <configuration> <skipTests>false</skipTests> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>org.sonatype.security</groupId> <artifactId>security-model</artifactId> <version>${project.version}</version> </dependency> <!-- 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> </dependencies> </project>