blaze-core
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.github.testing-blaze</groupId> <artifactId>blaze-core</artifactId> <version>1.4.6</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.github.testing-blaze</groupId> <artifactId>blaze-epic</artifactId> <version>1.0.5</version> </parent> <artifactId>blaze-core</artifactId> <packaging>jar</packaging> <version>1.4.6</version> <name>Testing Blaze Core</name> <description>An Intelligent BDD Test Automation Framework</description> <url>http://www.github.com/testing-blaze</url> <licenses> <license> <name>The Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <developers> <developer> <name>Nauman Shahid</name> <email>write.nauman@gmail.com</email> <organization>Creator</organization> </developer> <developer> <name>Jitendra Pisal</name> </developer> <developer> <name>John Philips</name> </developer> </developers> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>${jacadoc.version}</version> <configuration> <doclint>none</doclint> <javadocExecutable>${java.home}/bin/javadoc</javadocExecutable> </configuration> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>${mave.source.plugin}</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project>