Revision: 1427
          http://svn.sourceforge.net/spring-rich-c/?rev=1427&view=rev
Author:   jhoskens
Date:     2006-09-21 00:58:32 -0700 (Thu, 21 Sep 2006)

Log Message:
-----------
changing full and release module to correct version 0.2.1 to create release

Modified Paths:
--------------
    branches/spring-richclient-0.2.X/full/pom.xml
    branches/spring-richclient-0.2.X/release/pom.xml

Modified: branches/spring-richclient-0.2.X/full/pom.xml
===================================================================
--- branches/spring-richclient-0.2.X/full/pom.xml       2006-09-21 07:54:57 UTC 
(rev 1426)
+++ branches/spring-richclient-0.2.X/full/pom.xml       2006-09-21 07:58:32 UTC 
(rev 1427)
@@ -1 +1 @@
-<?xml version="1.0" encoding="UTF-8"?>
<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>
    <parent>
        <groupId>org.springframework.richclient</groupId>
        <artifactId>spring-richclient</artifactId>
        <version>0.2.1-SNAPSHOT</version>
    </parent>

    <artifactId>spring-richclient-full</artifactId>
    <!--
        TODO HACK packaging is pom but actually a jar is assembled and deployed
        and used ar packaging jar in the release module.
        Specifing it jar probably won't work as an empty jar would replace the 
assembly jar in the repo.
    -->
    <packaging>pom</packaging>
    <name>Spring richclient full (all modules)</name>
    <description>
        A convenience union of all of the modules (except sandbox and tiger).
    </description>

    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-assembly-plugin</artifactId>
                <executions>
                    <execution>
                                                <id>bin</id>
                        <phase>package</phase>
                        <configuration>
                            <descriptor>src/assembly/artifact.xml</descriptor>
                        </configuration>
                        <goals>
                            <goal>attached</goal>
                        </goals>
                    </execution>
                    <execution>
                        <id>src</id>
                        <phase>package</phase>
                        <configuration>
                            <descriptor>src/assembly/source.xml</descriptor>
                        </configuration>
                        <goals>
                            <goal>attached</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
        </plugins>
    </build>

    <dependencies>
        <!-- Internal -->
        <dependency>
            <groupId>org.springframework.richclient</groupId>
            <artifactId>spring-richclient-resources</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.richclient</groupId>
            <artifactId>spring-richclient-core</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.richclient</groupId>
            <artifactId>spring-richclient-binding</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.richclient</groupId>
            <artifactId>spring-richclient-form</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.richclient</groupId>
            <artifactId>spring-richclient-support</artifactId>
        </dependency>
    </dependencies>

</project>
\ No newline at end of file
+<?xml version="1.0" encoding="UTF-8"?>
<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>
    <parent>
        <groupId>org.springframework.richclient</groupId>
        <artifactId>spring-richclient</artifactId>
        <version>0.2.1</version>
    </parent>

    <artifactId>spring-richclient-full</artifactId>
    <!--
        TODO HACK packaging is pom but actually a jar is assembled and deployed
        and used ar packaging jar in the release module.
        Specifing it jar probably won't work as an empty jar would replace the 
assembly jar in the repo.
    -->
    <packaging>pom</packaging>
    <name>Spring richclient full (all modules)</name>
    <description>
        A convenience union of all of the modules (except sandbox and tiger).
    </description>

    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-assembly-plugin</artifactId>
                <executions>
                    <execution>
                                                <id>bin</id>
                        <phase>package</phase>
                        <configuration>
                            <descriptor>src/assembly/artifact.xml</descriptor>
                        </configuration>
                        <goals>
                            <goal>attached</goal>
                        </goals>
                    </execution>
                    <execution>
                        <id>src</id>
                        <phase>package</phase>
                        <configuration>
                            <descriptor>src/assembly/source.xml</descriptor>
                        </configuration>
                        <goals>
                            <goal>attached</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
        </plugins>
    </build>

    <dependencies>
        <!-- Internal -->
        <dependency>
            <groupId>org.springframework.richclient</groupId>
            <artifactId>spring-richclient-resources</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.richclient</groupId>
            <artifactId>spring-richclient-core</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.richclient</groupId>
            <artifactId>spring-richclient-binding</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.richclient</groupId>
            <artifactId>spring-richclient-form</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.richclient</groupId>
            <artifactId>spring-richclient-support</artifactId>
        </dependency>
    </dependencies>

</project>
\ No newline at end of file

Modified: branches/spring-richclient-0.2.X/release/pom.xml
===================================================================
--- branches/spring-richclient-0.2.X/release/pom.xml    2006-09-21 07:54:57 UTC 
(rev 1426)
+++ branches/spring-richclient-0.2.X/release/pom.xml    2006-09-21 07:58:32 UTC 
(rev 1427)
@@ -7,7 +7,7 @@
     <parent>
         <groupId>org.springframework.richclient</groupId>
         <artifactId>spring-richclient</artifactId>
-        <version>0.2.1-SNAPSHOT</version>
+        <version>0.2.1</version>
     </parent>
 
     <artifactId>spring-richclient-release</artifactId>


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.

-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
spring-rich-c-cvs mailing list
spring-rich-c-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/spring-rich-c-cvs

Reply via email to