terasoluna-gfw-security-web
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.terasoluna.gfw</groupId> <artifactId>terasoluna-gfw-security-web</artifactId> <version>5.10.0.RELEASE</version> </dependency>
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> <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"> <modelVersion>4.0.0</modelVersion> <parent> <artifactId>terasoluna-gfw-common-libraries</artifactId> <groupId>org.terasoluna.gfw</groupId> <version>5.10.0.RELEASE</version> <relativePath>../../terasoluna-gfw-common-libraries/pom.xml</relativePath> </parent> <artifactId>terasoluna-gfw-security-web</artifactId> <packaging>jar</packaging> <name>TERASOLUNA Server Framework for Java (5.x) for web security</name> <description>Security functionality that can be used on web</description> <url>http://terasoluna.org</url> <licenses> <license> <name>Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>manual</distribution> </license> </licenses> <scm> <connection>scm:git:git://github.com/terasolunaorg/terasoluna-gfw.git</connection> <developerConnection>scm:git:ssh://github.com/terasolunaorg/terasoluna-gfw.git</developerConnection> <url>https://github.com/terasolunaorg/terasoluna-gfw</url> </scm> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-resources-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> </plugin> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> </plugin> </plugins> </build> <dependencies> <!-- == Begin TERASOLUNA == --> <dependency> <groupId>${project.groupId}</groupId> <artifactId>terasoluna-gfw-web</artifactId> </dependency> <!-- == End TERASOLUNA == --> <!-- == Begin Spring == --> <!-- Spring Security --> <dependency> <groupId>org.springframework.security</groupId> <artifactId>spring-security-taglibs</artifactId> </dependency> <dependency> <groupId>org.springframework.security</groupId> <artifactId>spring-security-web</artifactId> </dependency> <!-- Spring Test --> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-test</artifactId> <scope>test</scope> </dependency> <!-- == End Spring == --> <!-- Servlet API --> <dependency> <groupId>jakarta.servlet</groupId> <artifactId>jakarta.servlet-api</artifactId> <scope>provided</scope> </dependency> <!-- == End Servlet == --> <!-- == Begin Unit Test == --> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <scope>test</scope> </dependency> <!-- == End Unit Test == --> </dependencies> <properties> <project.root.basedir>${project.parent.basedir}</project.root.basedir> </properties> </project>