Files
2018-08-30 10:48:05 +01:00

33 lines
958 B
XML

<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>com.semmle</groupId>
<artifactId>parent</artifactId>
<version>1.0</version>
</parent>
<groupId>com.semmle</groupId>
<artifactId>my-project</artifactId>
<packaging>jar</packaging>
<dependencies>
<dependency>
<groupId>com.semmle</groupId>
<artifactId>another-project</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
</dependency>
<dependency>
<groupId>semmle-test</groupId>
<artifactId>semmle-test</artifactId>
<version>1.0</version>
</dependency>
</dependencies>
</project>