diff options
Diffstat (limited to 'spec/fixtures/java/maven')
| -rw-r--r-- | spec/fixtures/java/maven/custom-tls/pom.xml | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/spec/fixtures/java/maven/custom-tls/pom.xml b/spec/fixtures/java/maven/custom-tls/pom.xml new file mode 100644 index 0000000..6c647c0 --- /dev/null +++ b/spec/fixtures/java/maven/custom-tls/pom.xml @@ -0,0 +1,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>license-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> |
