Skip to content

Commit

Permalink
Comply with the example naming scheme
Browse files Browse the repository at this point in the history
  • Loading branch information
jharting committed Mar 14, 2011
1 parent ae110b7 commit ebd2c75
Show file tree
Hide file tree
Showing 5 changed files with 29 additions and 12 deletions.
6 changes: 3 additions & 3 deletions dist/pom.xml
Expand Up @@ -66,23 +66,23 @@

<dependency>
<groupId>org.jboss.seam.rest</groupId>
<artifactId>seam-tasks-example</artifactId>
<artifactId>seam-rest-example-tasks</artifactId>
<version>${project.version}</version>
<type>zip</type>
<optional>true</optional>
</dependency>

<dependency>
<groupId>org.jboss.seam.rest</groupId>
<artifactId>seam-tasks-statistics-example</artifactId>
<artifactId>seam-rest-example-exceptions</artifactId>
<version>${project.version}</version>
<type>zip</type>
<optional>true</optional>
</dependency>

<dependency>
<groupId>org.jboss.seam.rest</groupId>
<artifactId>seam-jaxrs-exceptions-example</artifactId>
<artifactId>seam-rest-example-client</artifactId>
<version>${project.version}</version>
<type>zip</type>
<optional>true</optional>
Expand Down
6 changes: 3 additions & 3 deletions dist/src/main/assembly/assembly.xml
Expand Up @@ -65,23 +65,23 @@
<unpack>true</unpack>
<useProjectArtifact>false</useProjectArtifact>
<includes>
<include>org.jboss.seam.rest:seam-tasks-example</include>
<include>org.jboss.seam.rest:seam-rest-example-tasks</include>
</includes>
</dependencySet>
<dependencySet>
<outputDirectory>examples</outputDirectory>
<unpack>true</unpack>
<useProjectArtifact>false</useProjectArtifact>
<includes>
<include>org.jboss.seam.rest:seam-tasks-statistics-example</include>
<include>org.jboss.seam.rest:seam-rest-example-exceptions</include>
</includes>
</dependencySet>
<dependencySet>
<outputDirectory>examples</outputDirectory>
<unpack>true</unpack>
<useProjectArtifact>false</useProjectArtifact>
<includes>
<include>org.jboss.seam.rest:seam-jaxrs-exceptions-example</include>
<include>org.jboss.seam.rest:seam-rest-example-client</include>
</includes>
</dependencySet>

Expand Down
19 changes: 18 additions & 1 deletion examples/client/pom.xml
Expand Up @@ -10,7 +10,7 @@
</parent>

<groupId>org.jboss.seam.rest</groupId>
<artifactId>seam-rest-client-example</artifactId>
<artifactId>seam-rest-example-client</artifactId>
<packaging>war</packaging>
<version>3.0.0-SNAPSHOT</version>
<name>Seam REST Client Example</name>
Expand Down Expand Up @@ -104,9 +104,26 @@
</plugins>
</build>
</profile>
<profile>
<id>distribution</id>
<activation>
<property>
<name>release</name>
</property>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
</plugin>
</plugins>
</build>
</profile>
</profiles>

<build>
<finalName>rest-client</finalName>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
Expand Down
6 changes: 3 additions & 3 deletions examples/tasks/pom.xml
Expand Up @@ -10,10 +10,10 @@
</parent>

<groupId>org.jboss.seam.rest</groupId>
<artifactId>seam-tasks-example</artifactId>
<artifactId>seam-rest-example-tasks</artifactId>
<packaging>war</packaging>
<version>3.0.0-SNAPSHOT</version>
<name>Seam Tasks Example</name>
<name>Seam REST Tasks Example</name>
<url>http://seamframework.org/Seam3/RESTModule</url>

<properties>
Expand Down Expand Up @@ -112,7 +112,7 @@
</dependencies>

<build>
<finalName>seam-tasks</finalName>
<finalName>rest-tasks</finalName>
<plugins>
<plugin>
<!-- no unit tests, surefire would instead run functional tests in incorrect
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Expand Up @@ -307,8 +307,8 @@
<module>dist</module>
<module>docs/reference</module>
<module>examples/tasks</module>
<module>examples/tasks-statistics</module>
<module>examples/jaxrs-exceptions</module>
<module>examples/exceptions</module>
<module>examples/client</module>
</modules>
</profile>
<profile>
Expand Down

0 comments on commit ebd2c75

Please sign in to comment.