Skip to content

Commit

Permalink
Moving all the oauth demos into oauth-examples folder
Browse files Browse the repository at this point in the history
git-svn-id: file:///Users/billburke/jboss/resteasy/resteasy-git/svn-server-sync/resteasy/trunk@1231 2b1ed4c4-5db3-0410-90e4-80a7a6204c25
  • Loading branch information
sberyozk committed Sep 16, 2010
1 parent d225b62 commit 399c328
Show file tree
Hide file tree
Showing 75 changed files with 40 additions and 12 deletions.
Expand Up @@ -8,7 +8,7 @@
<modelVersion>4.0.0</modelVersion>

<groupId>org.jboss.resteasy</groupId>
<artifactId>oauth-examples-pom</artifactId>
<artifactId>oauth-examples-authenticator-pom</artifactId>
<packaging>pom</packaging>

<build>
Expand Down
Expand Up @@ -4,7 +4,7 @@
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.jboss.resteasy.examples</groupId>
<artifactId>examples-oauth-push-messaging-openid</artifactId>
<artifactId>examples-oauth-push-messaging-openid-provider</artifactId>
<version>2.1-SNAPSHOT</version>
<packaging>war</packaging>
<name>Example: OAuth Push Messaging OpenId Provider</name>
Expand Down
Expand Up @@ -4,11 +4,11 @@
<artifactId>resteasy-jaxrs-all</artifactId>
<version>2.1-SNAPSHOT</version>
</parent>
<name>Example: OAuth Push Messaging SSO Modules</name>
<name>Example: OAuth Push Messaging OpenId Modules</name>
<modelVersion>4.0.0</modelVersion>

<groupId>org.jboss.resteasy</groupId>
<artifactId>examples-oauth-push-messaging-sso-all</artifactId>
<artifactId>examples-oauth-push-messaging-openid-all</artifactId>
<packaging>pom</packaging>

<modules>
Expand Down
Expand Up @@ -7,7 +7,7 @@
<artifactId>examples-oauth-push-messaging-sso</artifactId>
<version>2.1-SNAPSHOT</version>
<packaging>war</packaging>
<name>Example: OAuth Push Messaging Single SignOn</name>
<name>Example: OAuth Push Messaging SSO</name>
<description/>

<properties>
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
Expand Up @@ -29,10 +29,9 @@
<filter>
<filter-name>OAuth Filter</filter-name>
<!-- Enable this filter when deploying to JBoss only -->
<!--
<!--
<filter-class>org.jboss.resteasy.examples.oauth.OAuthBasicAuthenticationFilter</filter-class>
-->

-->
<filter-class>org.jboss.resteasy.examples.oauth.OAuthDBFilter</filter-class>

</filter>
Expand Down
32 changes: 32 additions & 0 deletions jaxrs/examples/oauth-examples/pom.xml
@@ -0,0 +1,32 @@
<project>
<parent>
<groupId>org.jboss.resteasy</groupId>
<artifactId>resteasy-jaxrs-all</artifactId>
<version>2.1-SNAPSHOT</version>
</parent>
<name>OAuth Examples</name>
<modelVersion>4.0.0</modelVersion>

<groupId>org.jboss.resteasy</groupId>
<artifactId>oauth-examples-pom</artifactId>
<packaging>pom</packaging>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
</plugins>
</build>

<modules>
<module>oauth</module>
<module>oauth-push-messaging</module>
<module>oauth-push-messaging-openid</module>
<module>oauth-catalina-authenticator</module>
</modules>
</project>
5 changes: 1 addition & 4 deletions jaxrs/examples/pom.xml
Expand Up @@ -33,9 +33,6 @@
<module>api-clients</module>
<module>resteasy-springMVC</module>
<module>oreilly-workbook</module>
<module>oauth</module>
<module>oauth-push-messaging</module>
<module>oauth-push-messaging-sso</module>
<module>oauth-authenticator</module>
<module>oauth-examples</module>
</modules>
</project>

0 comments on commit 399c328

Please sign in to comment.