graphwalker
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.graphwalker</groupId> <artifactId>graphwalker</artifactId> <version>2.6.2</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/maven-v4_0_0.xsd"> <parent> <artifactId>oss-parent</artifactId> <groupId>org.sonatype.oss</groupId> <version>5</version> <relativePath>../pom.xml/pom.xml</relativePath> </parent> <modelVersion>4.0.0</modelVersion> <groupId>org.graphwalker</groupId> <artifactId>graphwalker</artifactId> <name>graphwalker</name> <version>2.6.2</version> <description>GraphWalker is a tool for generating offline and online test sequences from Finite State Machines and Extended Finite State Machines.</description> <url>http://graphwalker.org</url> <prerequisites> <maven>2.2.1</maven> </prerequisites> <developers> <developer> <id>krikar</id> <name>Kristian Karl</name> <email>kristian.hermann.karl@gmail.com</email> </developer> <developer> <id>johtej</id> <name>Johan Tejle</name> <email>johan.tejle@systemverification.com</email> </developer> </developers> <contributors> <contributor> <name>Fedrik Gustafsson</name> </contributor> <contributor> <name>Johan Walles</name> </contributor> <contributor> <name>Stefan Vahlgren</name> </contributor> <contributor> <name>Peter Johansson</name> </contributor> <contributor> <name>Ola Sundin</name> </contributor> <contributor> <name>Johan Brorson</name> </contributor> <contributor> <name>Harald Hartwig</name> </contributor> <contributor> <name>Fredrik Gustafsson</name> </contributor> <contributor> <name>Oscar Carlsson</name> </contributor> <contributor> <name>Mattias Nilsson</name> </contributor> </contributors> <licenses> <license> <name>MIT License</name> <url>http://www.opensource.org/licenses/mit-license.php</url> <distribution>repo</distribution> </license> </licenses> <scm> <connection>scm:git:git://github.com:KristianKarl/GraphWalker.git</connection> <developerConnection>scm:git:git@github.com:KristianKarl/GraphWalker.git</developerConnection> <url>https://github.com/KristianKarl/GraphWalker</url> </scm> <build> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>3.1</version> <configuration> <source>1.6</source> <target>1.6</target> </configuration> </plugin> <plugin> <artifactId>maven-shade-plugin</artifactId> <version>1.7.1</version> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> <configuration> <transformers> <transformer> <mainClass>org.graphwalker.CLI</mainClass> </transformer> </transformers> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>jaxws-maven-plugin</artifactId> <version>1.12</version> <executions> <execution> <id>wsgen</id> <goals> <goal>wsgen</goal> </goals> <configuration> <sei>org.graphwalker.SoapServices</sei> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-gpg-plugin</artifactId> <version>1.4</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.11</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>hamcrest-core</artifactId> <groupId>org.hamcrest</groupId> </exclusion> </exclusions> </dependency> </dependencies> <reporting> <plugins> <plugin> <artifactId>maven-surefire-report-plugin</artifactId> <version>2.15</version> <configuration> <skipTests>true</skipTests> </configuration> </plugin> </plugins> </reporting> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> </project>