Maven Repository - POM file for Security hdiv-core 2.1.4 2.1.4

Summary

HDIV Core.

Java Web Application Security Framework.

Declaration

Here is the list of declaration for hdiv-core. If you use Maven you can use the following code to add the dependency for this POM file.

<dependency>
   <groupId>org.hdiv</groupId>
   <artifactId>hdiv-core</artifactId>
   <version>2.1.4</version>
</dependency>

If you think this Maven repository POM file listing for hdiv-core is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Depends on

The hdiv-core-2.1.4 has 4 dependencies.The most popular ones are listed in the following table along with their categories and number of artifacts depending on them.

CategoryArtifactDepended By Count
Data Structurecommons-codec 1.3
The codec package contains simple encoder and decoders for various formats such as Base64 and Hexadecimal. In addition to these widely used encoders and decoders, the codec package also maintains a collection of phonetic encoding utilities.
348
Servletcommons-fileupload 1.1.1
The FileUpload component provides a simple yet flexible means of adding support for multipart file upload functionality to servlets and web applications.
48




Plugin

The following plugins are used in the hdiv-core-2.1.4.jar

  1. maven-compiler-plugin
  2. maven-jar-plugin
  3. maven-javadoc-plugin

Packages

The following packages are defined in the hdiv-core-2.1.4.jar

org.hdiv.application
org.hdiv.cipher
org.hdiv.config
org.hdiv.config.multipart
org.hdiv.config.multipart.exception
org.hdiv.dataComposer
org.hdiv.dataValidator
org.hdiv.exception
org.hdiv.filter
org.hdiv.idGenerator
org.hdiv.listener
org.hdiv.logs
org.hdiv.session
org.hdiv.state
org.hdiv.urlProcessor
org.hdiv.util
org.hdiv.validator




POM File Source

Here is the content of the POM file.

<?xml version="1.0" encoding="UTF-8"?>
<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.hdiv</groupId>
    <artifactId>hdiv</artifactId>
    <version>2.1.4</version>
  </parent>
  <modelVersion>4.0.0</modelVersion>
  <artifactId>hdiv-core</artifactId>
  <packaging>jar</packaging>
  <name>HDIV Core</name>
  <url>http://www.hdiv.org</url>
  <description>Java Web Application Security Framework</description>

  <dependencies>
    <dependency>
      <groupId>org.springframework</groupId>
      <artifactId>spring-web</artifactId>
      <version>${org.springframework.version}</version>
      <scope>compile</scope>
      <optional>true</optional>
    </dependency>
    <dependency>
      <groupId>org.springframework</groupId>
      <artifactId>spring-test</artifactId>
      <version>${org.springframework.version}</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.springframework.security</groupId>
      <artifactId>spring-security-core</artifactId>
      <version>3.1.0.RELEASE</version>
      <scope>compile</scope>
      <optional>true</optional>
      <exclusions>
        <exclusion>
          <artifactId>aopalliance</artifactId>
          <groupId>aopalliance</groupId>
        </exclusion>
        <exclusion>
          <artifactId>spring-expression</artifactId>
          <groupId>org.springframework</groupId>
        </exclusion>
        <exclusion>
          <artifactId>spring-security-crypto</artifactId>
          <groupId>org.springframework.security</groupId>
        </exclusion>
        <exclusion>
          <artifactId>spring-aop</artifactId>
          <groupId>org.springframework</groupId>
        </exclusion>
        <exclusion>
          <artifactId>spring-context</artifactId>
          <groupId>org.springframework</groupId>
        </exclusion>
        <exclusion>
          <artifactId>spring-beans</artifactId>
          <groupId>org.springframework</groupId>
        </exclusion>
        <exclusion>
          <artifactId>spring-core</artifactId>
          <groupId>org.springframework</groupId>
        </exclusion>
      </exclusions>
    </dependency>
    <dependency>
      <groupId>commons-codec</groupId>
      <artifactId>commons-codec</artifactId>
      <version>1.3</version>
    </dependency>
    <dependency>
      <groupId>commons-fileupload</groupId>
      <artifactId>commons-fileupload</artifactId>
      <version>1.1.1</version>
    </dependency>
    <dependency>
      <groupId>javax.servlet</groupId>
      <artifactId>servlet-api</artifactId>
      <version>2.4</version>
      <scope>provided</scope>
    </dependency>
  </dependencies>

  <build>
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-compiler-plugin</artifactId>
        <version>2.5.1</version>
        <configuration>
          <source>1.4</source>
          <target>1.4</target>
        </configuration>
      </plugin>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-jar-plugin</artifactId>
        <executions>
          <execution>
            <goals>
              <goal>test-jar</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
    </plugins>
  </build>

  <reporting>
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-javadoc-plugin</artifactId>
        <version>2.9</version>
        <configuration>
          <doctitle>HDIV Core API ${project.version}</doctitle>
          <header>HDIV API ${project.version}</header>
          <footer>HDIV ${project.version}</footer>
          <destDir>../docs/api/hdiv-core</destDir>
        </configuration>
      </plugin>
    </plugins>
  </reporting>

</project>