smallcrew-security
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>fr.smallcrew.foundation</groupId> <artifactId>smallcrew-security</artifactId> <version>1.0.10</version> </dependency>
<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> <name>Smallcrew Foundation :: Security</name> <description>Foundation of all smallcrew's projects needing authenticated users and role management</description> <artifactId>smallcrew-security</artifactId> <packaging>jar</packaging> <parent> <groupId>fr.smallcrew.foundation</groupId> <artifactId>smallcrew-foundation</artifactId> <version>1.0.10</version> <relativePath>../</relativePath> </parent> <build> <pluginManagement> <plugins> <plugin> <groupId>org.mortbay.jetty</groupId> <artifactId>jetty-maven-plugin</artifactId> <configuration> <useTestClasspath>true</useTestClasspath> <webAppSourceDirectory>${project.build.testOutputDirectory}/webapp</webAppSourceDirectory> </configuration> <executions> <execution> <id>demo</id> <phase> test-compile </phase> <goals> <goal>run</goal> </goals> </execution> </executions> </plugin> </plugins> </pluginManagement> </build> <dependencies> <dependency> <groupId>fr.smallcrew.foundation</groupId> <artifactId>smallcrew-test</artifactId> </dependency> <dependency> <groupId>fr.smallcrew.foundation</groupId> <artifactId>smallcrew-rest</artifactId> </dependency> <dependency> <groupId>fr.smallcrew.foundation</groupId> <artifactId>smallcrew-data</artifactId> </dependency> <dependency> <groupId>fr.smallcrew.foundation</groupId> <artifactId>smallcrew-utils</artifactId> </dependency> <dependency> <groupId>org.springframework.security</groupId> <artifactId>spring-security-core</artifactId> </dependency> <dependency> <groupId>org.springframework.security</groupId> <artifactId>spring-security-config</artifactId> </dependency> <dependency> <groupId>org.springframework.security</groupId> <artifactId>spring-security-web</artifactId> </dependency> <dependency> <groupId>javax.servlet</groupId> <artifactId>javax.servlet-api</artifactId> </dependency> </dependencies> </project>