zucchini-examples
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>de.codecentric.zucchini</groupId>
<artifactId>zucchini-examples</artifactId>
<version>1.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> <artifactId>zucchini-parent</artifactId> <groupId>de.codecentric.zucchini</groupId> <version>1.1.0</version> <relativePath>../zucchini-parent</relativePath> </parent> <groupId>de.codecentric.zucchini</groupId> <artifactId>zucchini-examples</artifactId> <version>1.1.0</version> <packaging>jar</packaging> <name>Zucchini Examples</name> <description>Web testing examples.</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> <build> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>1.8</source> <target>1.8</target> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>de.codecentric.zucchini</groupId> <artifactId>zucchini-web</artifactId> <version>1.1.0</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-simple</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> </dependency> </dependencies> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> </project>