From: <mk...@us...> - 2007-08-27 16:55:07
|
Revision: 17 http://components4oaw.svn.sourceforge.net/components4oaw/?rev=17&view=rev Author: mklink Date: 2007-08-25 11:16:38 -0700 (Sat, 25 Aug 2007) Log Message: ----------- Moved package and added test Modified Paths: -------------- trunk/components4oaw-parent/src/site/site.xml Added Paths: ----------- trunk/components4oaw-parent/pom.xml.releaseBackup Added: trunk/components4oaw-parent/pom.xml.releaseBackup =================================================================== --- trunk/components4oaw-parent/pom.xml.releaseBackup (rev 0) +++ trunk/components4oaw-parent/pom.xml.releaseBackup 2007-08-25 18:16:38 UTC (rev 17) @@ -0,0 +1,147 @@ +<?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> + <groupId>net.components4oaw</groupId> + <artifactId>components4oaw-parent</artifactId> + <version>1.0.0</version> + <packaging>pom</packaging> + + <name>components4oaw</name> + <description> + components4oaw is a collection of components for the MDA + framework open Architectureware. + </description> + <url>http://components4oaw.sourceforge.net/</url> + + <organization> + <name>components4oaw development</name> + <url>http://components4oaw.sourceforge.net/</url> + </organization> + + <modules> + <module>../jar</module> + <module>../openofficeconverter</module> + </modules> + + <properties> + <scm-url-suffix>${artifactId}</scm-url-suffix> + </properties> + + <licenses> + <license> + <name>Eclipse Public License</name> + <url>http://www.eclipse.org/legal/epl-v10.html</url> + <distribution>repo</distribution> + </license> + </licenses> + + <issueManagement> + <system>sourceforge</system> + <url>http://sourceforge.net/tracker/?group_id=203960</url> + </issueManagement> + + <scm> + <connection> + scm:svn:https://components4oaw.svn.sourceforge.net/svnroot/components4oaw/trunk/${scm-url-suffix} + </connection> + <developerConnection> + scm:svn:https://components4oaw.svn.sourceforge.net/svnroot/components4oaw/trunk/${scm-url-suffix} + </developerConnection> + <url> + http://components4oaw.svn.sourceforge.net/viewvc/components4oaw/trunk/${scm-url-suffix}/ + </url> + </scm> + + <build> + <finalName>${artifactId}-${version}</finalName> + <extensions> + <extension> + <groupId>org.apache.maven.wagon</groupId> + <artifactId>wagon-ssh-external</artifactId> + </extension> + </extensions> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-site-plugin</artifactId> + <configuration> + <locales>en</locales> + </configuration> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-javadoc-plugin</artifactId> + <configuration> + <minmemory>128m</minmemory> + <maxmemory>512</maxmemory> + </configuration> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-compiler-plugin</artifactId> + <configuration> + <source>1.5</source> + <target>1.5</target> + </configuration> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-surefire-plugin</artifactId> + <configuration> + <forkMode>pertest</forkMode> + <reportFormat>plain</reportFormat> + </configuration> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-release-plugin</artifactId> + </plugin> + </plugins> + </build> + + <reporting> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId> + maven-project-info-reports-plugin + </artifactId> + <reportSets> + <reportSet> + <reports> + <report>index</report> + <report>dependency-convergence</report> + <report>project-team</report> + <report>mailing-list</report> + <report>issue-tracking</report> + <report>license</report> + <report>scm</report> + </reports> + </reportSet> + </reportSets> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-surefire-report-plugin</artifactId> + </plugin> + </plugins> + </reporting> + + <distributionManagement> + <repository> + <id>components4oaw.rep</id> + <url> + scp://shell.sf.net/home/groups/c/co/components4oaw/htdocs/m2/repository/ + </url> + </repository> + <site> + <id>components4oaw.site</id> + <url> + scp://shell.sf.net/home/groups/c/co/components4oaw/htdocs/ + </url> + </site> + </distributionManagement> +</project> + Modified: trunk/components4oaw-parent/src/site/site.xml =================================================================== --- trunk/components4oaw-parent/src/site/site.xml 2007-08-25 10:07:20 UTC (rev 16) +++ trunk/components4oaw-parent/src/site/site.xml 2007-08-25 18:16:38 UTC (rev 17) @@ -23,10 +23,12 @@ <item name="oaw" href="http://www.openarchitectureware.org/" /> <item name="fornax" href="http://www.fornax-platform.org/" /> - <item name="sourceforge" href="http://sourceforge.net/projects/components4oaw"/> + <item name="sourceforge" + href="http://sourceforge.net/projects/components4oaw" /> </menu> <menu name="Repository"> - <item name="components4oaw" href="http://components4oaw.sourceforge.net/m2/repository/" /> + <item name="components4oaw" + href="http://components4oaw.sourceforge.net/m2/repository/" /> </menu> ${reports} </body> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |