summaryrefslogtreecommitdiff
path: root/spec/fixtures/java/maven/custom-tls/pom.xml
blob: dc2b3b082e5f81d680663c53871b480e383de993 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<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/maven-v4_0_0.xsd">
  <modelVersion>4.0.0</modelVersion>
  <groupId>com.gitlab.secure</groupId>
  <artifactId>dependency-scanning</artifactId>
  <packaging>jar</packaging>
  <version>1.0-SNAPSHOT</version>
  <name>example</name>
  <dependencies>
    <dependency>
      <groupId>com.fasterxml.jackson.core</groupId>
      <artifactId>jackson-core</artifactId>
      <version>2.10.0</version>
    </dependency>
  </dependencies>
  <repositories>
    <repository>
      <id>custom</id>
      <url>https://maven.test/maven2</url>
    </repository>
  </repositories>
  <distributionManagement>
    <repository>
      <id>custom</id>
      <url>https://maven.test/maven2</url>
    </repository>
  </distributionManagement>
</project>