easybatch-tutorials
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.benas</groupId> <artifactId>easybatch-tutorials</artifactId> <version>2.1.3</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/xsd/maven-4.0.0.xsd"> <parent> <artifactId>easybatch</artifactId> <groupId>io.github.benas</groupId> <version>2.1.3</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>easybatch-tutorials</artifactId> <packaging>jar</packaging> <name>easybatch-tutorials</name> <description>Easy Batch tutorials module</description> <url>http://benas.github.io/easy-batch</url> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <developers> <developer> <id>benas</id> <email>md.benhassine@gmail.com</email> <roles> <role>Project founder</role> </roles> </developer> </developers> <contributors> <contributor> <name>Nihed MBAREK</name> <email>nihedmm@gmail.com</email> </contributor> </contributors> <scm> <url>git@github.com:benas/easy-batch.git</url> <connection>scm:git:git@github.com:benas/easy-batch.git</connection> <developerConnection>scm:git:git@github.com:benas/easy-batch.git</developerConnection> <tag>easybatch-2.1.3</tag> </scm> <licenses> <license> <name>MIT License</name> <url>http://opensource.org/licenses/mit-license.php</url> </license> </licenses> <dependencies> <dependency> <groupId>io.github.benas</groupId> <artifactId>easybatch-core</artifactId> </dependency> <dependency> <groupId>io.github.benas</groupId> <artifactId>easybatch-flatfile</artifactId> </dependency> <dependency> <groupId>io.github.benas</groupId> <artifactId>easybatch-xml</artifactId> </dependency> <dependency> <groupId>io.github.benas</groupId> <artifactId>easybatch-jdbc</artifactId> </dependency> <dependency> <groupId>io.github.benas</groupId> <artifactId>easybatch-validation</artifactId> </dependency> <dependency> <groupId>io.github.benas</groupId> <artifactId>easybatch-tools</artifactId> </dependency> <dependency> <groupId>io.github.benas</groupId> <artifactId>easybatch-quartz</artifactId> </dependency> <dependency> <groupId>io.github.benas</groupId> <artifactId>easybatch-spring</artifactId> </dependency> <dependency> <groupId>org.hsqldb</groupId> <artifactId>hsqldb</artifactId> </dependency> <dependency> <groupId>org.hibernate</groupId> <artifactId>hibernate-core</artifactId> </dependency> <dependency> <groupId>io.github.benas</groupId> <artifactId>jpopulator</artifactId> <version>1.0.0</version> </dependency> <dependency> <groupId>org.glassfish</groupId> <artifactId>javax.json</artifactId> <version>1.0.4</version> </dependency> <dependency> <groupId>org.apache.activemq</groupId> <artifactId>activemq-core</artifactId> <version>5.7.0</version> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> <version>2.6</version> <executions> <execution> <id>copy</id> <phase>package</phase> <goals> <goal>copy-dependencies</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <profiles> <profile> <id>runCsvBenchmark</id> <build> <defaultGoal>exec:java</defaultGoal> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>exec-maven-plugin</artifactId> <version>1.2.1</version> <configuration> <mainClass>io.github.benas.easybatch.tutorials.bench.Benchmark</mainClass> <arguments> <argument>${project.basedir}/src/main/resources/</argument> <argument>csv</argument> <argument>1000000</argument> </arguments> </configuration> </plugin> </plugins> </build> </profile> <profile> <id>runXmlBenchmark</id> <build> <defaultGoal>exec:java</defaultGoal> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>exec-maven-plugin</artifactId> <version>1.2.1</version> <configuration> <mainClass>io.github.benas.easybatch.tutorials.bench.Benchmark</mainClass> <arguments> <argument>${project.basedir}/src/main/resources/</argument> <argument>xml</argument> <argument>1000000</argument> </arguments> </configuration> </plugin> </plugins> </build> </profile> <profile> <id>runHelloWorldCSVTutorial</id> <build> <defaultGoal>exec:java</defaultGoal> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>exec-maven-plugin</artifactId> <version>1.2.1</version> <configuration> <mainClass>io.github.benas.easybatch.tutorials.helloworld.csv.Launcher</mainClass> <arguments> <argument>${project.basedir}/src/main/resources/greetings.csv</argument> </arguments> </configuration> </plugin> </plugins> </build> </profile> <profile> <id>runHelloWorldFLRTutorial</id> <build> <defaultGoal>exec:java</defaultGoal> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>exec-maven-plugin</artifactId> <version>1.2.1</version> <configuration> <mainClass>io.github.benas.easybatch.tutorials.helloworld.flr.Launcher</mainClass> <arguments> <argument>${project.basedir}/src/main/resources/greetings.flr</argument> </arguments> </configuration> </plugin> </plugins> </build> </profile> <profile> <id>runHelloWorldJDBCTutorial</id> <build> <defaultGoal>exec:java</defaultGoal> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>exec-maven-plugin</artifactId> <version>1.2.1</version> <configuration> <mainClass>io.github.benas.easybatch.tutorials.helloworld.jdbc.Launcher</mainClass> </configuration> </plugin> </plugins> </build> </profile> <profile> <id>runHelloWorldXMLTutorial</id> <build> <defaultGoal>exec:java</defaultGoal> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>exec-maven-plugin</artifactId> <version>1.2.1</version> <configuration> <mainClass>io.github.benas.easybatch.tutorials.helloworld.xml.Launcher</mainClass> <arguments> <argument>${project.basedir}/src/main/resources/greetings.xml</argument> <argument>${project.basedir}/src/main/resources/greetings.xsd</argument> </arguments> </configuration> </plugin> </plugins> </build> </profile> <profile> <id>runHelloWorldInMemoryTutorial</id> <build> <defaultGoal>exec:java</defaultGoal> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>exec-maven-plugin</artifactId> <version>1.2.1</version> <configuration> <mainClass>io.github.benas.easybatch.tutorials.helloworld.memory.Launcher</mainClass> </configuration> </plugin> </plugins> </build> </profile> <profile> <id>runHelloWorldCLITutorial</id> <build> <defaultGoal>exec:java</defaultGoal> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>exec-maven-plugin</artifactId> <version>1.2.1</version> <configuration> <mainClass>io.github.benas.easybatch.tutorials.helloworld.cli.Launcher</mainClass> </configuration> </plugin> </plugins> </build> </profile> <profile> <id>runProductsTutorial</id> <build> <defaultGoal>exec:java</defaultGoal> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>exec-maven-plugin</artifactId> <version>1.2.1</version> <configuration> <mainClass>io.github.benas.easybatch.tutorials.products.Launcher</mainClass> <arguments> <argument>${project.basedir}/src/main/resources/products.csv</argument> </arguments> </configuration> </plugin> </plugins> </build> </profile> <profile> <id>runCustomersTutorial</id> <build> <defaultGoal>exec:java</defaultGoal> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>exec-maven-plugin</artifactId> <version>1.2.1</version> <configuration> <mainClass>io.github.benas.easybatch.tutorials.customers.Launcher</mainClass> </configuration> </plugin> </plugins> </build> </profile> <profile> <id>runBeanValidationTutorial</id> <build> <defaultGoal>exec:java</defaultGoal> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>exec-maven-plugin</artifactId> <version>1.2.1</version> <configuration> <mainClass>io.github.benas.easybatch.tutorials.beanValidation.Launcher</mainClass> <arguments> <argument>${project.basedir}/src/main/resources/products-jsr303.csv</argument> </arguments> </configuration> </plugin> </plugins> </build> </profile> <profile> <id>runParallelSingleFileTutorial</id> <build> <defaultGoal>exec:java</defaultGoal> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>exec-maven-plugin</artifactId> <version>1.2.1</version> <configuration> <mainClass>io.github.benas.easybatch.tutorials.parallel.SingleFileLauncher</mainClass> <arguments> <argument>${project.basedir}/src/main/resources/secret-messages.txt</argument> </arguments> </configuration> </plugin> </plugins> </build> </profile> <profile> <id>runParallelMultipleFilesTutorial</id> <build> <defaultGoal>exec:java</defaultGoal> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>exec-maven-plugin</artifactId> <version>1.2.1</version> <configuration> <mainClass>io.github.benas.easybatch.tutorials.parallel.MultipleFilesLauncher</mainClass> <arguments> <argument>${project.basedir}/src/main/resources/secret-messages-part1.txt</argument> <argument>${project.basedir}/src/main/resources/secret-messages-part2.txt</argument> </arguments> </configuration> </plugin> </plugins> </build> </profile> <profile> <id>runQuartzTutorial</id> <build> <defaultGoal>exec:java</defaultGoal> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>exec-maven-plugin</artifactId> <version>1.2.1</version> <configuration> <mainClass>io.github.benas.easybatch.tutorials.quartz.Launcher</mainClass> <arguments> <argument>${project.basedir}/src/main/resources/greetings.csv</argument> </arguments> </configuration> </plugin> </plugins> </build> </profile> <profile> <id>runSpringTutorial</id> <build> <defaultGoal>exec:java</defaultGoal> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>exec-maven-plugin</artifactId> <version>1.2.1</version> <configuration> <mainClass>io.github.benas.easybatch.tutorials.spring.Launcher</mainClass> </configuration> </plugin> </plugins> </build> </profile> <profile> <id>runJmxTutorial</id> <build> <defaultGoal>exec:java</defaultGoal> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>exec-maven-plugin</artifactId> <version>1.2.1</version> <configuration> <mainClass>io.github.benas.easybatch.tutorials.jmx.Launcher</mainClass> <arguments> <argument>${project.basedir}/src/main/resources/greetings-jmx.csv</argument> </arguments> </configuration> </plugin> </plugins> </build> </profile> <profile> <id>runAdvancedETLTutorial</id> <build> <defaultGoal>exec:java</defaultGoal> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>exec-maven-plugin</artifactId> <version>1.2.1</version> <configuration> <mainClass>io.github.benas.easybatch.tutorials.advanced.Launcher</mainClass> <arguments> <argument>${project.basedir}/src/main/resources/greetings-adv.csv</argument> <argument>${project.basedir}/src/main/resources/greetings-adv.xml</argument> </arguments> </configuration> </plugin> </plugins> </build> </profile> <profile> <id>runRecipesTutorial</id> <build> <defaultGoal>exec:java</defaultGoal> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>exec-maven-plugin</artifactId> <version>1.2.1</version> <configuration> <mainClass>io.github.benas.easybatch.tutorials.recipes.Launcher</mainClass> <arguments> <argument>${project.basedir}/src/main/resources/recipes.csv</argument> </arguments> </configuration> </plugin> </plugins> </build> </profile> <profile> <id>runJmsTutorial</id> <build> <defaultGoal>exec:java</defaultGoal> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>exec-maven-plugin</artifactId> <version>1.2.1</version> <configuration> <mainClass>io.github.benas.easybatch.tutorials.jms.Launcher</mainClass> </configuration> </plugin> </plugins> </build> </profile> <profile> <id>runJmsSender</id> <build> <defaultGoal>exec:java</defaultGoal> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>exec-maven-plugin</artifactId> <version>1.2.1</version> <configuration> <mainClass>io.github.benas.easybatch.tutorials.jms.JMSSenderLauncher</mainClass> </configuration> </plugin> </plugins> </build> </profile> </profiles> </project>