Files

34 lines
1.1 KiB
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> <!-- $ Alert[java/unused-maven-source-dependency] -->
<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
</dependency> <!-- $ Alert[java/unused-maven-binary-dependency] -->
<dependency>
<groupId>semmle-test</groupId>
<artifactId>semmle-test</artifactId>
<version>1.0</version>
</dependency> <!-- $ Alert[java/unused-maven-binary-dependency] -->
</dependencies>
</project>