karurkarthi / xdocreport

Automatically exported from code.google.com/p/xdocreport
0 stars 0 forks source link

Provide one xdocreport.jar JAR which merge the whole XDocReport JARs #264

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
XDocReport is modular (choose your template engine, choose your document kind 
(docx, odt, etc), choose your converter implementation) so we have one JARs per 
module (template engine implementation etc)

If maven is used, it's very easy to download the well JARs. But some people 
doesn't use maven, so it's hard to know which JARs to use it (we have created 
several zip for that to help user who doesn't use maven).

To resolve this problem, we should provide too one JARs which merge the whole 
JARs of XDocReport : 

 * xdocreport.jar : merge template engine, converter etc...
 * xdocreport-gae.jar : same JARs but with GAE

This feature could be done for 1.0.3 version.

Original issue reported on code.google.com by angelo.z...@gmail.com on 23 May 2013 at 8:21

GoogleCodeExporter commented 9 years ago
Sample pom.xml that work for snapshots
<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/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <groupId>fr.opensagres</groupId>
    <artifactId>samples</artifactId>
    <version>0.0.1-SNAPSHOT</version>
    <dependencies>
        <dependency>
            <groupId>fr.opensagres.xdocreport</groupId>
            <artifactId>xdocreport</artifactId>
            <version>1.0.3-SNAPSHOT</version>
        </dependency>
    </dependencies>
    <repositories>
        <repository>
            <id>sonatype</id>
            <snapshots>
                <enabled>true</enabled>
            </snapshots>
            <url>http://oss.sonatype.org/content/repositories/snapshots/</url>
        </repository>
    </repositories>
</project>

Original comment by pascal.leclercq on 30 Sep 2013 at 8:52

GoogleCodeExporter commented 9 years ago
[deleted comment]
GoogleCodeExporter commented 9 years ago

Original comment by angelo.z...@gmail.com on 24 Oct 2013 at 12:06