jdfa-tutorials
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.benas</groupId> <artifactId>jdfa-tutorials</artifactId> <version>1.0.0</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>io.github.benas</groupId> <artifactId>jdfa</artifactId> <version>1.0.0</version> </parent> <artifactId>jdfa-tutorials</artifactId> <version>1.0.0</version> <packaging>jar</packaging> <name>jDFA tutorials module</name> <description>Tutorials module providing samples of how to use jDFA</description> <developers> <developer> <id>benas</id> <email>md.benhassine@gmail.com</email> </developer> </developers> <scm> <url>git@github.com:benas/jDFA.git</url> <connection>scm:git:git@github.com:benas/jDFA.git</connection> <developerConnection>scm:git:git@github.com:benas/jDFA.git</developerConnection> <tag>jdfa-1.0.0</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>jdfa-core</artifactId> <version>1.0.0</version> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.1</version> <configuration> <verbose>true</verbose> <source>1.5</source> <target>1.5</target> <showWarnings>true</showWarnings> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> <version>2.5.1</version> <executions> <execution> <id>copy</id> <phase>package</phase> <goals> <goal>copy-dependencies</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <profiles> <profile> <id>runTurnstileTutorial</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.jdfa.tutorials.turnstile.Launcher</mainClass> </configuration> </plugin> </plugins> </build> </profile> </profiles> </project>