databene-benerator
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.databene</groupId> <artifactId>databene-benerator</artifactId> <version>0.9.8</version> </dependency>
<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>org.databene</groupId> <artifactId>databene-benerator</artifactId> <version>0.9.8</version> <packaging>jar</packaging> <name>Databene Benerator</name> <description> 'Benerator' is a framework for creating realistic and valid high-volume test data, used for testing (unit/integration/load) and showcase setup. Metadata constraints are imported from systems and/or configuration files. Data can imported from and exported to files and systems, anonymized or generated from scratch. Domain packages provide reusable generators for creating domain-specific data as names and addresses internationalizable in language and region. It is strongly customizable with plugins and configuration options. </description> <url>http://databene.org/databene-benerator</url> <inceptionYear>2006</inceptionYear> <properties> <build_number>${buildNumber}</build_number> <jdbacl_version>0.8.19</jdbacl_version> <formats_version>1.0.0</formats_version> <script_version>1.0.0</script_version> <contiperf_version>2.3.4</contiperf_version> <commons_version>1.0.0</commons_version> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <licenses> <license> <name>GNU Public License</name> <url>http://www.fsf.org/licensing/licenses/gpl.txt</url> <distribution>manual</distribution> <comments> Redistribution and use in source and binary forms, with or without modification, is permitted under the terms of the GNU General Public License. </comments> </license> <license> <name>Commercial License</name> <url>http://databene.org/commercial_license.txt</url> <distribution>manual</distribution> <comments> For redistributing this software or a derivative work under a license other than the GPL-compatible Free Software License as defined by the Free Software Foundation or approved by OSI, you must first obtain a commercial license for this software from Volker Bergmann. </comments> </license> </licenses> <organization> <name>Volker Bergmann</name> <url>http://www.bergmann-it.de</url> </organization> <developers> <developer> <name>Volker Bergmann</name> <id>vbergmann</id> <email>volker.bergmann@bergmann-it.de</email> <organization>Volker Bergmann IT Consulting</organization> <organizationUrl>http://www.bergmann-it.de</organizationUrl> <timezone>+1</timezone> <roles> <role>project founder</role> <role>architect</role> <role>developer</role> </roles> </developer> </developers> <contributors> <contributor> <name>Daniela Crescenzio</name> </contributor> </contributors> <dependencies> <!-- Databene dependencies --> <dependency> <groupId>org.databene</groupId> <artifactId>jdbacl</artifactId> <version>${jdbacl_version}</version> </dependency> <dependency> <groupId>org.databene</groupId> <artifactId>databene-script</artifactId> <version>${script_version}</version> </dependency> <dependency> <groupId>org.databene</groupId> <artifactId>databene-formats</artifactId> <version>${formats_version}</version> </dependency> <dependency> <groupId>org.databene</groupId> <artifactId>databene-commons</artifactId> <version>${commons_version}</version> </dependency> <dependency> <groupId>org.databene</groupId> <artifactId>contiperf</artifactId> <version>${contiperf_version}</version> </dependency> <dependency> <groupId>javax.validation</groupId> <artifactId>validation-api</artifactId> <version>1.0.0.GA</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.11</version> <!-- NOT in test scope because Benerator provides test helper classes --> </dependency> <!-- test dependencies --> <!-- Open source JDBC driver dependencies --> <dependency> <groupId>net.sourceforge.jtds</groupId> <!-- MS SQL server and Sybase --> <artifactId>jtds</artifactId> <version>1.2</version> <scope>provided</scope> </dependency> <dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> <version>5.1.12</version> <scope>provided</scope> </dependency> <dependency> <groupId>hsqldb</groupId> <artifactId>hsqldb</artifactId> <version>1.8.0.7</version> <scope>provided</scope> </dependency> <dependency> <groupId>com.h2database</groupId> <artifactId>h2</artifactId> <version>1.2.136</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.derby</groupId> <artifactId>derbyclient</artifactId> <version>10.6.1.0</version> <scope>provided</scope> </dependency> <dependency> <groupId>postgresql</groupId> <artifactId>postgresql</artifactId> <version>8.4-701.jdbc4</version> <scope>provided</scope> </dependency> <dependency> <groupId>net.sf.squirrel-sql.thirdparty-non-maven</groupId> <artifactId>jaybird</artifactId> <version>2.1.6</version> <scope>provided</scope> </dependency> <dependency> <!-- Needed by Jaybird --> <groupId>javax.resource</groupId> <artifactId>connector-api</artifactId> <version>1.5</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.antlr</groupId> <artifactId>antlr-runtime</artifactId> <version>3.3</version> </dependency> <dependency> <groupId>org.freemarker</groupId> <artifactId>freemarker</artifactId> <version>2.3.20</version> </dependency> <!-- Dependencies to JDBC drivers that are closed source or not available on the maven repository --> <!-- <dependency> <groupId>com.oracle</groupId> <artifactId>ojdbc6</artifactId> <version>11.1.0.7</version> <scope>runtime</scope> </dependency> <dependency> <groupId>com.ibm</groupId> <artifactId>db2jcc</artifactId> <version>3.50.152</version> <scope>runtime</scope> </dependency> --> <!-- logging --> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-log4j12</artifactId> <version>1.6.4</version> <scope>provided</scope> </dependency> <dependency> <groupId>log4j</groupId> <artifactId>log4j</artifactId> <version>1.2.16</version> <scope>provided</scope> </dependency> </dependencies> <build> <resources> <resource> <filtering>false</filtering> <directory>${basedir}/src/main/resources</directory> <includes> <include>**/*.xml</include> <include>**/*.properties</include> <include>**/*.dtd</include> <include>**/*.xsd</include> <include>**/*.csv</include> <include>**/*.txt</include> <include>**/*.xls</include> <include>**/*.java</include> <include>**/*.sql</include> <include>**/*.gif</include> <include>**/*.ftl</include> </includes> <excludes> <exclude>log4j.xml</exclude> <exclude>**/version.properties</exclude> </excludes> </resource> <resource> <filtering>true</filtering> <directory>${basedir}/src/main/resources</directory> <includes> <include>**/version.properties</include> </includes> </resource> <resource> <filtering>false</filtering> <directory>${basedir}/src/demo/resources</directory> <includes> <include>**/*</include> </includes> </resource> <resource> <filtering>false</filtering> <directory>${basedir}</directory> <includes> <include>license.txt</include> </includes> </resource> </resources> <testResources> <testResource> <filtering>false</filtering> <directory>${basedir}/src/test/resources</directory> <includes> <include>**/*</include> </includes> </testResource> </testResources> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.1</version> <configuration> <source>1.6</source> <target>1.6</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-resources-plugin</artifactId> <version>2.6</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-assembly-plugin</artifactId> <version>2.4.1</version> <configuration> <descriptors> <descriptor>src/main/assembly/dist-assembly.xml</descriptor> </descriptors> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-site-plugin</artifactId> <version>3.4</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>2.5</version> <configuration> <archive> <manifest> <mainClass>org.databene.benerator.main.Benerator</mainClass> <addClasspath>true</addClasspath> <classpathPrefix>lib/</classpathPrefix> </manifest> </archive> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>buildnumber-maven-plugin</artifactId> <version>1.0</version> <executions> <execution> <phase>validate</phase> <goals> <goal>create</goal> </goals> </execution> </executions> <configuration> <doCheck>false</doCheck> <doUpdate>false</doUpdate> <format>{0,number,#####}</format> <items> <item>buildNumber0</item> </items> <revisionOnScmFailure>x</revisionOnScmFailure> </configuration> </plugin> </plugins> </build> <reporting> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-report-plugin</artifactId> <version>2.17</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-pmd-plugin</artifactId> <version>3.2</version> <configuration> <linkXref>true</linkXref> <minimumTokens>100</minimumTokens> <targetJdk>1.6</targetJdk> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>jdepend-maven-plugin</artifactId> <version>2.0</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-project-info-reports-plugin</artifactId> <version>2.7</version> <reportSets> <reportSet> <reports> <report>dependencies</report> <report>project-team</report> <report>license</report> </reports> </reportSet> </reportSets> </plugin> </plugins> </reporting> <profiles> <profile> <id>release</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.3</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.9.1</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.5</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>ossrh</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> <scm> <connection>scm:svn:http://svn.code.sf.net/p/benerator/code/benerator</connection> <developerConnection>scm:svn:https://svn.code.sf.net/p/benerator/code/benerator</developerConnection> <url>https://sourceforge.net/p/benerator/code/HEAD/tree/benerator/</url> </scm> </project>