Skip to content

Commit

Permalink
git-svn-id: file:///Users/billburke/jboss/resteasy/resteasy-git/svn-s…
Browse files Browse the repository at this point in the history
…erver-sync/resteasy/trunk/rest-star/messaging@1173 2b1ed4c4-5db3-0410-90e4-80a7a6204c25
  • Loading branch information
patriot1burke committed Aug 6, 2010
1 parent 67bec6e commit f813b85
Show file tree
Hide file tree
Showing 8 changed files with 74 additions and 16 deletions.
13 changes: 13 additions & 0 deletions pom.xml
Expand Up @@ -30,6 +30,14 @@
<url>http://resteasy.svn.sourceforge.net/viewvc/resteasy/trunk/star-messaging</url>
</scm>

<distributionManagement>
<repository>
<id>jboss-releases-repository</id>
<name>JBoss Releases Repository</name>
<url>https://repository.jboss.org/nexus/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>

<issueManagement>
<system>JIRA</system>
<url>http://jira.jboss.com/jira/browse/RESTEASY</url>
Expand Down Expand Up @@ -157,6 +165,11 @@
</plugin>
-->

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>2.4</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
Expand Down
16 changes: 15 additions & 1 deletion session-interface/docbook/reference/en/master.xml
Expand Up @@ -149,6 +149,14 @@ Content-Type: application/xml
&lt;artifactId&gt;myapp&lt;/artifactId&gt;
&lt;packaging&gt;war&lt;/packaging&gt;
&lt;name&gt;My App&lt;/name&gt;
&lt;repositories&gt;
&lt;repository&gt;
&lt;id&gt;jboss&lt;/id&gt;
&lt;url&gt;http://repository.jboss.org/nexus/content/groups/public/&lt;/url&gt;
&lt;/repository&gt;
&lt;/repositories&gt;


&lt;build&gt;
&lt;plugin&gt;
&lt;groupId&gt;org.apache.maven.plugins&lt;/groupId&gt;
Expand Down Expand Up @@ -224,7 +232,13 @@ Content-Type: application/xml
&lt;artifactId&gt;myapp&lt;/artifactId&gt;
&lt;packaging&gt;war&lt;/packaging&gt;
&lt;name&gt;My App&lt;/name&gt;
&lt;build&gt;
&lt;repositories&gt;
&lt;repository&gt;
&lt;id&gt;jboss&lt;/id&gt;
&lt;url&gt;http://repository.jboss.org/nexus/content/groups/public/&lt;/url&gt;
&lt;/repository&gt;
&lt;/repositories&gt;
&lt;build&gt;
&lt;plugin&gt;
&lt;groupId&gt;org.apache.maven.plugins&lt;/groupId&gt;
&lt;artifactId&gt;maven-compiler-plugin&lt;/artifactId&gt;
Expand Down
6 changes: 6 additions & 0 deletions session-interface/examples/dup-send/pom.xml
Expand Up @@ -10,6 +10,12 @@
<artifactId>dup-send</artifactId>
<packaging>war</packaging>
<name>Duplicate Send Demo</name>
<repositories>
<repository>
<id>jboss</id>
<url>http://repository.jboss.org/nexus/content/groups/public/</url>
</repository>
</repositories>
<build>
<finalName>order-flow</finalName>
<plugins>
Expand Down
8 changes: 7 additions & 1 deletion session-interface/examples/javascript-chat/pom.xml
Expand Up @@ -10,7 +10,13 @@
<artifactId>javascript-chat</artifactId>
<packaging>war</packaging>
<name>Browser Chat App</name>
<build>
<repositories>
<repository>
<id>jboss</id>
<url>http://repository.jboss.org/nexus/content/groups/public/</url>
</repository>
</repositories>
<build>
<finalName>chat</finalName>
<plugins>
<!--
Expand Down
6 changes: 6 additions & 0 deletions session-interface/examples/jms-to-rest/pom.xml
Expand Up @@ -10,6 +10,12 @@
<artifactId>mixed-jms-rest</artifactId>
<packaging>war</packaging>
<name>Mixed JMS and REST Producers/Consumers</name>
<repositories>
<repository>
<id>jboss</id>
<url>http://repository.jboss.org/nexus/content/groups/public/</url>
</repository>
</repositories>
<build>
<finalName>order-flow</finalName>
<plugins>
Expand Down
6 changes: 6 additions & 0 deletions session-interface/examples/push/pom.xml
Expand Up @@ -10,6 +10,12 @@
<artifactId>push</artifactId>
<packaging>war</packaging>
<name>Push Subscriptions</name>
<repositories>
<repository>
<id>jboss</id>
<url>http://repository.jboss.org/nexus/content/groups/public/</url>
</repository>
</repositories>
<build>
<finalName>order-flow</finalName>
<plugins>
Expand Down
22 changes: 21 additions & 1 deletion session-interface/pom.xml
Expand Up @@ -7,8 +7,28 @@
<version>1.0</version>
<packaging>pom</packaging>

<distributionManagement>
<repository>
<id>jboss-releases-repository</id>
<name>JBoss Releases Repository</name>
<url>https://repository.jboss.org/nexus/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>

<modules>
<module>session</module>
<module>examples</module>
</modules>
<!-- this is only here for RESTEasy automated testing of examples build. You can remove if you are copying this
pom.xml as a template -->
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
</plugins>
</build>
</project>
13 changes: 0 additions & 13 deletions session-interface/session/pom.xml
Expand Up @@ -12,14 +12,6 @@
<packaging>jar</packaging>
<name>HornetQ REST Interface Implementation</name>

<distributionManagement>
<repository>
<id>jboss-releases-repository</id>
<name>JBoss Releases Repository</name>
<url>https://repository.jboss.org/nexus/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>

<dependencies>
<dependency>
<groupId>org.hornetq</groupId>
Expand Down Expand Up @@ -94,11 +86,6 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>2.4</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
Expand Down

0 comments on commit f813b85

Please sign in to comment.