gwtsecurity
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.google.code.gwtsecurity</groupId>
<artifactId>gwtsecurity</artifactId>
<version>1.3.3</version>
</dependency><?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"> <modelVersion>4.0.0</modelVersion> <packaging>pom</packaging> <groupId>com.google.code.gwtsecurity</groupId> <artifactId>gwtsecurity</artifactId> <version>1.3.3</version> <name>Spring Security for GWT</name> <description>Provides integration for gwt and Spring Security</description> <url>http://code.google.com/p/gwtsecurity</url> <licenses> <license> <name>Apache 2</name> <url>http://www.apache.org/licenses/LICENSE-2.0</url> </license> </licenses> <developers> <developer> <id>yes2000</id> <name>Kent Yeh</name> <email>kent.yeh2000@gmail.com</email> <roles> <role>architect</role> <role>developer</role> </roles> </developer> <developer> <id>sjardine</id> <name>Steven Jardine</name> <email>steven.jardine@gmail.com</email> <roles> <role>developer</role> </roles> </developer> <developer> <id>ivanenok</id> <roles> <role>developer</role> </roles> </developer> </developers> <properties> <!-- Encoding --> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <!-- Compiler --> <maven.compiler.source>1.7</maven.compiler.source> <maven.compiler.target>1.7</maven.compiler.target> <maven.compiler.optimize>true</maven.compiler.optimize> <!-- Other --> <gwt.version>2.7.0</gwt.version> <spring.version>4.1.2.RELEASE</spring.version> <spring-security.version>3.2.5.RELEASE</spring-security.version> <aspectj.version>1.7.4</aspectj.version> <cglib.version>3.1</cglib.version> <servlet.version>2.5</servlet.version> <slf4j.version>1.7.7</slf4j.version> </properties> <modules> <module>core</module> <module>requestfactory</module> </modules> <build> <pluginManagement> <plugins> <plugin> <artifactId>maven-release-plugin</artifactId> <version>2.5</version> <configuration> <remoteTagging>false</remoteTagging> <tagBase>https://gwtsecurity.googlecode.com/svn/tags</tagBase> <releaseProfiles>do-release</releaseProfiles> <preparationGoals>sonar:sonar</preparationGoals> </configuration> </plugin> <plugin> <groupId>org.eclipse.m2e</groupId> <artifactId>lifecycle-mapping</artifactId> <version>1.0.0</version> <configuration> <lifecycleMappingMetadata> <pluginExecutions> <pluginExecution> <pluginExecutionFilter> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-enforcer-plugin</artifactId> <versionRange>[1.0,)</versionRange> <goals> <goal>enforce</goal> </goals> </pluginExecutionFilter> <action> <ignore /> </action> </pluginExecution> <pluginExecution> <pluginExecutionFilter> <groupId>org.codehaus.mojo</groupId> <artifactId>gwt-maven-plugin</artifactId> <versionRange>[2.5.0,)</versionRange> <goals> <goal>compile</goal> <goal>test</goal> <goal>i18n</goal> <goal>generateAsync</goal> </goals> </pluginExecutionFilter> <action> <execute /> </action> </pluginExecution> </pluginExecutions> </lifecycleMappingMetadata> </configuration> </plugin> </plugins> </pluginManagement> </build> <profiles> <profile> <id>do-release</id> <modules> <module>core</module> <module>requestfactory</module> <module>test</module> </modules> </profile> </profiles> <scm> <url>scm:svn:https://gwtsecurity.googlecode.com/svn/svn/tags/gwtsecurity-1.3.3</url> <connection>scm:svn:https://gwtsecurity.googlecode.com/svn/svn/tags/gwtsecurity-1.3.3</connection> <developerConnection>scm:svn:https://gwtsecurity.googlecode.com/svn/tags/gwtsecurity-1.3.3</developerConnection> </scm> <parent> <groupId>org.sonatype.oss</groupId> <artifactId>oss-parent</artifactId> <version>9</version> </parent> </project>