From: <mk...@us...> - 2007-08-27 16:01:14
|
Revision: 19 http://components4oaw.svn.sourceforge.net/components4oaw/?rev=19&view=rev Author: mklink Date: 2007-08-25 11:17:14 -0700 (Sat, 25 Aug 2007) Log Message: ----------- Moved package and added test Modified Paths: -------------- trunk/openofficeconverter/pom.xml Added Paths: ----------- trunk/openofficeconverter/pom.xml.releaseBackup trunk/openofficeconverter/src/main/java/net/ trunk/openofficeconverter/src/main/java/net/components4oaw/ trunk/openofficeconverter/src/main/java/net/components4oaw/openofficeconverter/ Modified: trunk/openofficeconverter/pom.xml =================================================================== --- trunk/openofficeconverter/pom.xml 2007-08-25 18:17:01 UTC (rev 18) +++ trunk/openofficeconverter/pom.xml 2007-08-25 18:17:14 UTC (rev 19) @@ -1,5 +1,7 @@ <?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"> +<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> <artifactId>components4oaw-parent</artifactId> @@ -51,6 +53,15 @@ </windowtitle> </configuration> </plugin> + <plugin> + <groupId>org.codehaus.mojo</groupId> + <artifactId>cobertura-maven-plugin</artifactId> + <configuration> + <formats> + <format>html</format> + </formats> + </configuration> + </plugin> </plugins> </reporting> Added: trunk/openofficeconverter/pom.xml.releaseBackup =================================================================== --- trunk/openofficeconverter/pom.xml.releaseBackup (rev 0) +++ trunk/openofficeconverter/pom.xml.releaseBackup 2007-08-25 18:17:14 UTC (rev 19) @@ -0,0 +1,58 @@ +<?xml version="1.0" encoding="UTF-8"?> +<project> + <modelVersion>4.0.0</modelVersion> + <parent> + <artifactId>components4oaw-parent</artifactId> + <groupId>net.components4oaw</groupId> + <version>1.0.0</version> + <relativePath>../components4oaw-parent</relativePath> + </parent> + <groupId>net.components4oaw</groupId> + <artifactId>openofficeconverter</artifactId> + <version>1.0.1-SNAPSHOT</version> + <name>openofficeconverter</name> + <description> + A component to convert between different file formats which + openoffice can read. Useful to transform OpenDocument XML + formats to Word documents. + </description> + <url>/${artifactId}</url> + + <dependencies> + <dependency> + <groupId>org.fornax.openarchitectureware</groupId> + <artifactId>oaw-core</artifactId> + <version>4.1.2</version> + <type>pom</type> + </dependency> + <dependency> + <groupId>junit</groupId> + <artifactId>junit</artifactId> + <version>4.1</version> + </dependency> + <dependency> + <groupId>com.artofsolving</groupId> + <artifactId>jodconverter</artifactId> + <version>2.2.0</version> + </dependency> + </dependencies> + + <reporting> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-javadoc-plugin</artifactId> + <configuration> + <sourcepath>${compileSourceRoots}</sourcepath> + <aggregate>true</aggregate> + <windowtitle> + components4oaw: + ${project.groupId}:${project.artifactId}:${project.version} + </windowtitle> + </configuration> + </plugin> + </plugins> + </reporting> + +</project> + This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |