zucchini-web-junit
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>de.codecentric.zucchini</groupId> <artifactId>zucchini-web-junit</artifactId> <version>2.1.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- ~ Copyright 2014 the original author or authors. ~ ~ Licensed under the Apache License, Version 2.0 (the "License"); ~ you may not use this file except in compliance with the License. ~ You may obtain a copy of the License at ~ ~ http://www.apache.org/licenses/LICENSE-2.0 ~ ~ Unless required by applicable law or agreed to in writing, software ~ distributed under the License is distributed on an "AS IS" BASIS, ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ~ See the License for the specific language governing permissions and ~ limitations under the License. --> <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>de.codecentric.zucchini</groupId> <artifactId>zucchini-parent</artifactId> <version>2.1.0</version> <relativePath>../zucchini-parent/pom.xml</relativePath> </parent> <groupId>de.codecentric.zucchini</groupId> <artifactId>zucchini-web-junit</artifactId> <version>2.1.0</version> <packaging>jar</packaging> <name>Zucchini Web JUnit</name> <description>Web testing tools integration for JUnit.</description> <url>https://github.com/codecentric/zucchini</url> <licenses> <license> <name>Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <organization> <name>codecentric AG</name> <url>http://www.codecentric.de</url> </organization> <scm> <url>https://github.com/codecentric/zucchini</url> <connection>scm:git:git://github.com:codecentric/zucchini.git</connection> <developerConnection>scm:git:git://github.com:codecentric/zucchini.git</developerConnection> </scm> <developers> <developer> <name>Alexander Müller</name> <email>alexander.mueller@codecentric.de</email> <organization>codecentric AG</organization> </developer> </developers> <dependencies> <dependency> <groupId>de.codecentric.zucchini</groupId> <artifactId>zucchini-bdd</artifactId> </dependency> <dependency> <groupId>de.codecentric.zucchini</groupId> <artifactId>zucchini-web</artifactId> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> </dependency> </dependencies> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> </project>