diff options
| author | mo khan <mo.khan@gmail.com> | 2020-09-14 16:40:00 -0600 |
|---|---|---|
| committer | mo khan <mo.khan@gmail.com> | 2020-09-14 16:40:00 -0600 |
| commit | 0dc0c0cec97cbdea04e278143e4711cfa0d3bd03 (patch) | |
| tree | a650f1421d0e57b13024df1fb4efe5aa76b96dfb /spec/fixtures/java/maven | |
| parent | cea7d78e2d7f1a8f98880819b8589925b5daef1a (diff) | |
test: add spec to run gemnasium-maven scanner
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> |
