Sha256: fcd2923447e6398fab19ce4c78b93245afeb6b56d232eeeac3bf021673fb0e4c
Contents?: true
Size: 1007 Bytes
Versions: 1
Compression:
Stored size: 1007 Bytes
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>com.example</groupId> <artifactId>example</artifactId> <version>1.0.0</version> <packaging>pom</packaging> <properties> <version.jdk>1.7</version.jdk> </properties> <dependencies> <dependency> <groupId>com.example</groupId> <artifactId>example-dep-1</artifactId> <version>4.0</version> <type>jar</type> <scope>test</scope> <optional>true</optional> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>example-dep-2</artifactId> <version>4.0</version> <type>jar</type> <scope>test</scope> <optional>true</optional> </dependency> </dependencies> </project>
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
maven_pom-0.0.2 | spec/fixtures/pom.xml |