converter3
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.sta-soft</groupId> <artifactId>converter3</artifactId> <version>3.119</version> </dependency>
<?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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>com.sta-soft</groupId> <artifactId>masterpom</artifactId> <version>1.11</version> </parent> <artifactId>converter3</artifactId> <version>3.119</version> <packaging>jar</packaging> <name>Converter3</name> <description>Tool to convert CSV and XLS to XML, to transform XML and to convert XML to CSV, HTML, other text files, PDF etc., useful as command line tool and integrated in other projects.</description> <url>http://www.sta-soft.com</url> <organization> <name>>StA-Soft<</name> <url>http://www.sta-soft.com</url> </organization> <inceptionYear>2001-2021, 2023</inceptionYear> <developers> <developer> <name>Steffen Albrecht</name> <email>steffen.albrecht.ef@sta-soft.com</email> <organization>>StA-Soft<</organization> <organizationUrl>http://www.sta-soft.com</organizationUrl> </developer> </developers> <licenses> <license> <name>The Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <scm> <connection>scm:svn:http://ubuntu2/svn/myrepo/Converter3/trunk</connection> <developerConnection>scm:svn:http://ubuntu2/svn/myrepo/Converter3/trunk</developerConnection> <url>http://ubuntu2/svn/myrepo/Converter3/trunk/</url> </scm> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <executions> <execution> <id>default-jar</id> <configuration> <archive> <manifest> <mainClass>com.sta.cts.ConvRunner</mainClass> </manifest> </archive> </configuration> </execution> </executions> </plugin> <!-- <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> </plugin> --> <!-- Testweise hier wird das Shade-Plug-In verwendet, obwohl es sich NICHT um ein Blatt-Projekt handelt, da es weiter verwendet wird. --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-shade-plugin</artifactId> <configuration> <shadedArtifactAttached>true</shadedArtifactAttached> <!--shadedArtifactId>converter3-full</shadedArtifactId--> <!--finalName>converter3-full</finalName--> <shadedClassifierName>full</shadedClassifierName> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>exec-maven-plugin</artifactId> <configuration> <mainClass>com.sta.cts.ConvRunner</mainClass> </configuration> </plugin> </plugins> </build> <dependencies> <!-- MLogger --> <dependency> <groupId>com.sta-soft</groupId> <artifactId>mlogger</artifactId> <version>1.41</version> </dependency> <!-- DTD-Parser --> <dependency> <groupId>com.wutka</groupId> <artifactId>dtdparser</artifactId> <version>1.13</version> <!-- alt: 1.13, aktuell: 1.21 --> </dependency> <!-- FOP --> <dependency> <groupId>org.apache.xmlgraphics</groupId> <artifactId>fop</artifactId> <version>2.1</version> </dependency> <dependency> <groupId>org.apache.pdfbox</groupId> <artifactId>fontbox</artifactId> <version>1.8.5</version> </dependency> <!-- Xalan --> <dependency> <groupId>xalan</groupId> <artifactId>xalan</artifactId> <version>2.7.2</version> </dependency> <!-- Vorsicht! Eine Problem-Klasse wird im Projekt gepatcht! <dependency> <groupId>xalan</groupId> <artifactId>serializer</artifactId> <version>2.7.0</version> </dependency> --> <!-- Xerces --> <dependency> <groupId>xerces</groupId> <artifactId>xercesImpl</artifactId> <version>2.9.1</version> </dependency> <!-- POI --> <dependency> <groupId>org.apache.poi</groupId> <artifactId>poi</artifactId> <version>1.5.1</version> <!-- alt: 1.5.1, aktuell: 3.17 (dann funktioniert jedoch einiges nicht mehr wie bisher --> <!--version>3.0-FINAL</version--> <!--version>4.1.2</version--> </dependency> <!-- <dependency> <groupId>javax.mail</groupId> <artifactId>javax.mail-api</artifactId> <version>1.6.1</version> </dependency> <dependency> <groupId>javax.activation</groupId> <artifactId>activation</artifactId> <version>1.1.1</version> </dependency> --> <!-- Test --> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> </dependency> </dependencies> </project>