<?xml version="1.0" encoding="UTF-8"?>
<project>
    <modelVersion>4.0.0</modelVersion>

    <groupId>me</groupId>
    <artifactId>second</artifactId>
    <name>Second</name>
    <packaging>jar</packaging>
    
    <parent>
        <groupId>me</groupId>
        <artifactId>root</artifactId>
        <version>1.0-SNAPSHOT</version> 
        <relativePath>../pom.xml</relativePath>
    </parent>
    
    <dependencies>
       <dependency>
          <groupId>me</groupId>
          <artifactId>first</artifactId>
          <classifier>tests</classifier>
          <version>1.0-SNAPSHOT</version>
          <scope>compile</scope>
       </dependency>
    </dependencies>
</project>

