tapestry-security-jpa
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.tynamo.security</groupId> <artifactId>tapestry-security-jpa</artifactId> <version>0.2.0</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> <groupId>org.tynamo.security</groupId> <artifactId>tapestry-security-jpa</artifactId> <name>JPA Subject-Instance Tapestry Security</name> <description>Secure JPA subject-instances with Shiro-based Tapestry Security</description> <packaging>jar</packaging> <version>0.2.0</version> <parent> <groupId>org.tynamo</groupId> <artifactId>tynamo-parent</artifactId> <version>0.3.1</version> </parent> <properties> <tapestry-release-version>5.5.0</tapestry-release-version> </properties> <scm> <connection>scm:git:git@github.com:tynamo/tapestry-security-jpa.git</connection> <developerConnection>scm:git:git@github.com:tynamo/tapestry-security-jpa.git</developerConnection> <url>https://github.com/tynamo/tapestry-security-jpa</url> <tag>tapestry-security-jpa-0.2.0</tag> </scm> <distributionManagement> <site> <id>tynamo-site</id> <!-- Note the url. Only static files deployed in /constant/ can be decorated by Unity --> <url>dav:https://dav.codehaus.org/tynamo/constant/sites/tapestry-security-jpa</url> </site> </distributionManagement> <dependencies> <dependency> <groupId>org.apache.tapestry</groupId> <artifactId>tapestry-test</artifactId> <version>${tapestry-release-version}</version> <scope>test</scope> <!-- need to exclude several dependencies because tynamo-test uses newer versions --> <exclusions> <exclusion> <artifactId>jetty-jndi</artifactId> <groupId>org.eclipse.jetty</groupId> </exclusion> <exclusion> <artifactId>jetty-server</artifactId> <groupId>org.eclipse.jetty</groupId> </exclusion> <exclusion> <artifactId>servlet-api-2.5</artifactId> <groupId>org.mortbay.jetty</groupId> </exclusion> <exclusion> <artifactId>servlet-api</artifactId> <groupId>org.apache.tomcat</groupId> </exclusion> <exclusion> <artifactId>jetty-repacked</artifactId> <groupId>org.seleniumhq.selenium</groupId> </exclusion> <exclusion> <artifactId>jetty-rc-repacked</artifactId> <groupId>org.seleniumhq.selenium</groupId> </exclusion> <exclusion> <artifactId>jetty-webapp</artifactId> <groupId>org.eclipse.jetty</groupId> </exclusion> <exclusion> <artifactId>jetty-plus</artifactId> <groupId>org.eclipse.jetty</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.apache.tapestry</groupId> <artifactId>tapestry-ioc</artifactId> <version>${tapestry-release-version}</version> </dependency> <dependency> <groupId>org.apache.tapestry</groupId> <artifactId>tapestry-json</artifactId> <version>${tapestry-release-version}</version> </dependency> <dependency> <groupId>org.apache.tapestry</groupId> <artifactId>tapestry-jpa</artifactId> <version>${tapestry-release-version}</version> </dependency> <dependency> <groupId>org.eclipse.persistence</groupId> <artifactId>eclipselink</artifactId> <version>2.7.4</version> <scope>test</scope> </dependency> <!-- slightly annoyingly, we need to use the jetty originated servlet-api because the jars are signed --> <dependency> <groupId>org.eclipse.jetty.orbit</groupId> <artifactId>javax.servlet</artifactId> <version>3.0.0.v201112011016</version> <scope>provided</scope> </dependency> <dependency> <groupId>com.h2database</groupId> <artifactId>h2</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-all</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.tynamo</groupId> <artifactId>tynamo-common</artifactId> <version>0.0.3</version> </dependency> <dependency> <groupId>org.tynamo</groupId> <artifactId>tapestry-security</artifactId> <version>0.7.1</version> </dependency> <dependency> <groupId>org.tynamo</groupId> <artifactId>tapestry-jpa-seedentity</artifactId> <version>0.1.6</version> <scope>test</scope> </dependency> <dependency> <groupId>org.tynamo</groupId> <artifactId>tynamo-test</artifactId> <version>0.1.3</version> <scope>test</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-simple</artifactId> <version>1.7.25</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <configuration> <archive> <manifestEntries> <Tapestry-Module-Classes>org.tynamo.security.jpa.JpaSecurityModule</Tapestry-Module-Classes> </manifestEntries> </archive> </configuration> </plugin> <!-- run the test app in the port 8180 with "mvn jetty:run" --> <plugin> <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-maven-plugin</artifactId> <version>9.2.4.v20141103</version> <configuration> <contextPath>/</contextPath> <useTestClasspath>true</useTestClasspath> <webAppSourceDirectory>${basedir}/src/test/webapp</webAppSourceDirectory> <systemProperties> <systemProperty> <name>jetty.port</name> <value>8180</value> </systemProperty> <systemProperty> <name>tapestry.compress-whitespace</name> <value>false</value> </systemProperty> <systemProperty> <name>tapestry.production-mode</name> <value>false</value> </systemProperty> </systemProperties> </configuration> </plugin> <plugin> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>1.8</source> <target>1.8</target> </configuration> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <configuration> <reuseForks>false</reuseForks> </configuration> </plugin> </plugins> </build> </project>