-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[maven-release-plugin] prepare release tapestry-security-0.7.0
- Loading branch information
Showing
1 changed file
with
194 additions
and
194 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,194 +1,194 @@ | ||
<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> | ||
<artifactId>tapestry-security</artifactId> | ||
<name>Tapestry Security</name> | ||
<description>Tynamo Security package for Tapestry 5 based on Shiro Security</description> | ||
<packaging>jar</packaging> | ||
<version>0.6.7-SNAPSHOT</version> | ||
|
||
<parent> | ||
<groupId>org.tynamo</groupId> | ||
<artifactId>tynamo-parent</artifactId> | ||
<version>0.2.2</version> | ||
</parent> | ||
|
||
<properties> | ||
<tapestry-release-version>5.4.3</tapestry-release-version> | ||
</properties> | ||
|
||
<!-- Developers section inherited from the parent pom --> | ||
<contributors> | ||
<contributor> | ||
<name>Valentin Yerastov</name> | ||
<email>xibyte (-at-) gmail.com</email> | ||
<roles> | ||
<role>Original author of tapestry-jsecurity</role> | ||
</roles> | ||
</contributor> | ||
</contributors> | ||
|
||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>ch.qos.logback</groupId> | ||
<artifactId>logback-classic</artifactId> | ||
<version>1.0.3</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>org.apache.shiro</groupId> | ||
<artifactId>shiro-web</artifactId> | ||
<version>1.4.0</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.apache.shiro</groupId> | ||
<artifactId>shiro-cas</artifactId> | ||
<version>1.4.0</version> | ||
<scope>provided</scope> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>org.apache.tapestry</groupId> | ||
<artifactId>tapestry-core</artifactId> | ||
<version>${tapestry-release-version}</version> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>org.apache.tapestry</groupId> | ||
<artifactId>tapestry-ioc</artifactId> | ||
<version>${tapestry-release-version}</version> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>org.mockito</groupId> | ||
<artifactId>mockito-all</artifactId> | ||
<version>1.9.5</version> | ||
<scope>test</scope> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>org.testng</groupId> | ||
<artifactId>testng</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>tynamo-test</artifactId> | ||
<version>0.1.1</version> | ||
<scope>test</scope> | ||
</dependency> | ||
|
||
</dependencies> | ||
|
||
<scm> | ||
<connection>scm:git:git@github.com:tynamo/tapestry-security.git</connection> | ||
<developerConnection>scm:git:git@github.com:tynamo/tapestry-security.git</developerConnection> | ||
<url>https://github.com/tynamo/tapestry-security</url> | ||
<tag>HEAD</tag> | ||
</scm> | ||
|
||
<repositories> | ||
<!-- Needed as long as we depend on Tapestry snapshot | ||
<repository> | ||
<id>apache-ci-snapshots</id> | ||
<url>http://repository.apache.org/snapshots</url> | ||
<snapshots> | ||
<enabled>true</enabled> | ||
</snapshots> | ||
<releases> | ||
<enabled>false</enabled> | ||
</releases> | ||
</repository> --> | ||
|
||
<!-- Needed as long as we depend on Tapestry staging builds (like alphas or betas) | ||
<repository> | ||
<id>apache-staging</id> | ||
<url>https://repository.apache.org/content/groups/staging/</url> | ||
</repository> | ||
--> | ||
</repositories> | ||
|
||
<build> | ||
<resources> | ||
<resource> | ||
<directory>src/main/resources</directory> | ||
</resource> | ||
<resource> | ||
<directory>src/main/filtered-resources</directory> | ||
<filtering>true</filtering> | ||
</resource> | ||
</resources> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-surefire-plugin</artifactId> | ||
<configuration> | ||
<suiteXmlFiles> | ||
<suiteXmlFile>src/test/conf/testng.xml</suiteXmlFile> | ||
</suiteXmlFiles> | ||
<argLine>-Xmx500m</argLine> | ||
<redirectTestOutputToFile>false</redirectTestOutputToFile> | ||
</configuration> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-jar-plugin</artifactId> | ||
<configuration> | ||
<archive> | ||
<manifestEntries> | ||
<Tapestry-Module-Classes>org.tynamo.security.services.SecurityModule | ||
</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> | ||
<webApp> | ||
<contextPath>/</contextPath> | ||
</webApp> | ||
<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> | ||
|
||
</plugins> | ||
</build> | ||
|
||
|
||
</project> | ||
<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> | ||
<artifactId>tapestry-security</artifactId> | ||
<name>Tapestry Security</name> | ||
<description>Tynamo Security package for Tapestry 5 based on Shiro Security</description> | ||
<packaging>jar</packaging> | ||
<version>0.7.0</version> | ||
|
||
<parent> | ||
<groupId>org.tynamo</groupId> | ||
<artifactId>tynamo-parent</artifactId> | ||
<version>0.2.2</version> | ||
</parent> | ||
|
||
<properties> | ||
<tapestry-release-version>5.4.3</tapestry-release-version> | ||
</properties> | ||
|
||
<!-- Developers section inherited from the parent pom --> | ||
<contributors> | ||
<contributor> | ||
<name>Valentin Yerastov</name> | ||
<email>xibyte (-at-) gmail.com</email> | ||
<roles> | ||
<role>Original author of tapestry-jsecurity</role> | ||
</roles> | ||
</contributor> | ||
</contributors> | ||
|
||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>ch.qos.logback</groupId> | ||
<artifactId>logback-classic</artifactId> | ||
<version>1.0.3</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>org.apache.shiro</groupId> | ||
<artifactId>shiro-web</artifactId> | ||
<version>1.4.0</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.apache.shiro</groupId> | ||
<artifactId>shiro-cas</artifactId> | ||
<version>1.4.0</version> | ||
<scope>provided</scope> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>org.apache.tapestry</groupId> | ||
<artifactId>tapestry-core</artifactId> | ||
<version>${tapestry-release-version}</version> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>org.apache.tapestry</groupId> | ||
<artifactId>tapestry-ioc</artifactId> | ||
<version>${tapestry-release-version}</version> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>org.mockito</groupId> | ||
<artifactId>mockito-all</artifactId> | ||
<version>1.9.5</version> | ||
<scope>test</scope> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>org.testng</groupId> | ||
<artifactId>testng</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>tynamo-test</artifactId> | ||
<version>0.1.1</version> | ||
<scope>test</scope> | ||
</dependency> | ||
|
||
</dependencies> | ||
|
||
<scm> | ||
<connection>scm:git:git@github.com:tynamo/tapestry-security.git</connection> | ||
<developerConnection>scm:git:git@github.com:tynamo/tapestry-security.git</developerConnection> | ||
<url>https://github.com/tynamo/tapestry-security</url> | ||
<tag>tapestry-security-0.7.0</tag> | ||
</scm> | ||
|
||
<repositories> | ||
<!-- Needed as long as we depend on Tapestry snapshot | ||
<repository> | ||
<id>apache-ci-snapshots</id> | ||
<url>http://repository.apache.org/snapshots</url> | ||
<snapshots> | ||
<enabled>true</enabled> | ||
</snapshots> | ||
<releases> | ||
<enabled>false</enabled> | ||
</releases> | ||
</repository> --> | ||
|
||
<!-- Needed as long as we depend on Tapestry staging builds (like alphas or betas) | ||
<repository> | ||
<id>apache-staging</id> | ||
<url>https://repository.apache.org/content/groups/staging/</url> | ||
</repository> | ||
--> | ||
</repositories> | ||
|
||
<build> | ||
<resources> | ||
<resource> | ||
<directory>src/main/resources</directory> | ||
</resource> | ||
<resource> | ||
<directory>src/main/filtered-resources</directory> | ||
<filtering>true</filtering> | ||
</resource> | ||
</resources> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-surefire-plugin</artifactId> | ||
<configuration> | ||
<suiteXmlFiles> | ||
<suiteXmlFile>src/test/conf/testng.xml</suiteXmlFile> | ||
</suiteXmlFiles> | ||
<argLine>-Xmx500m</argLine> | ||
<redirectTestOutputToFile>false</redirectTestOutputToFile> | ||
</configuration> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-jar-plugin</artifactId> | ||
<configuration> | ||
<archive> | ||
<manifestEntries> | ||
<Tapestry-Module-Classes>org.tynamo.security.services.SecurityModule | ||
</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> | ||
<webApp> | ||
<contextPath>/</contextPath> | ||
</webApp> | ||
<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> | ||
|
||
</plugins> | ||
</build> | ||
|
||
|
||
</project> |