Sha256: d8a34bc09eb7573fd151b22e3769932fb3943b87bce49f5ee20c8a4a607d32e4
Contents?: true
Size: 1.31 KB
Versions: 25
Compression:
Stored size: 1.31 KB
Contents
<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> <groupId>cukes</groupId> <artifactId>jbehave-example</artifactId> <packaging>jar</packaging> <version>0.2-SNAPSHOT</version> <name>Cucumber JBehave Example</name> <url>http://cukes.info/</url> <repositories> <repository> <id>codehaus</id> <url>http://repository.codehaus.org</url> </repository> </repositories> <dependencies> <dependency> <groupId>org.jbehave</groupId> <artifactId>jbehave-core</artifactId> <version>2.1.1</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.4</version> </dependency> </dependencies> <build> <pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>2.0.2</version> <configuration> <source>1.5</source> <target>1.5</target> </configuration> </plugin> </plugins> </pluginManagement> </build> </project>
Version data entries
25 entries across 25 versions & 3 rubygems