Skip to content

Commit

Permalink
omit sample deployment to any repository
Browse files Browse the repository at this point in the history
change version number so that maven hopefully auto increments on next release
  • Loading branch information
sannies committed Jun 29, 2011
1 parent 744942e commit f8ee233
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 13 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<groupId>org.springframework.security.extensions</groupId>
<artifactId>spring-security-saml2-parent</artifactId>
<packaging>pom</packaging>
<version>1.0.1-CL-RC1-SNAPSHOT</version>
<version>1.0.1-CL_RC-2-SNAPSHOT</version>
<name>Spring Security SAML v2</name>

<description>Spring Security Extensions SAML v2</description>
Expand Down
2 changes: 1 addition & 1 deletion saml2-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<artifactId>spring-security-saml2-parent</artifactId>
<groupId>org.springframework.security.extensions</groupId>
<version>1.0.1-CL-RC1-SNAPSHOT</version>
<version>1.0.1-CL_RC-2-SNAPSHOT</version>
</parent>

<modelVersion>4.0.0</modelVersion>
Expand Down
2 changes: 1 addition & 1 deletion saml2-doc/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<artifactId>spring-security-saml2-parent</artifactId>
<groupId>org.springframework.security.extensions</groupId>
<version>1.0.1-CL-RC1-SNAPSHOT</version>
<version>1.0.1-CL_RC-2-SNAPSHOT</version>
</parent>

<modelVersion>4.0.0</modelVersion>
Expand Down
29 changes: 19 additions & 10 deletions saml2-sample/pom.xml
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
<?xml version="1.0"?>
<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">
<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">

<parent>
<artifactId>spring-security-saml2-parent</artifactId>
<groupId>org.springframework.security.extensions</groupId>
<version>1.0.1-CL-RC1-SNAPSHOT</version>
<version>1.0.1-CL_RC-2-SNAPSHOT</version>
</parent>

<modelVersion>4.0.0</modelVersion>
Expand All @@ -15,6 +16,14 @@

<build>
<finalName>spring-security-saml2-sample</finalName>
<plugins>
<plugin>
<artifactId>maven-deploy-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
</plugins>
</build>

<dependencies>
Expand All @@ -30,12 +39,12 @@
<artifactId>spring-web</artifactId>
<version>${spring.version}</version>
</dependency>

<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
<version>${spring.version}</version>
</dependency>
</dependency>

<dependency>
<groupId>org.springframework.security</groupId>
Expand All @@ -55,12 +64,12 @@
<version>2.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>jstl</artifactId>
<version>1.2</version>
</dependency>

<dependency>
<groupId>javax.servlet</groupId>
<artifactId>jstl</artifactId>
<version>1.2</version>
</dependency>

<dependency>
<groupId>junit</groupId>
Expand Down

0 comments on commit f8ee233

Please sign in to comment.