summaryrefslogtreecommitdiff
path: root/spec/fixtures/java/example/pom.xml
diff options
context:
space:
mode:
authormo khan <mo.khan@gmail.com>2020-07-20 15:55:59 -0600
committermo khan <mo.khan@gmail.com>2020-07-21 16:46:02 -0600
commitb3faccb3e3007ddfd41ef251ad8a925542fe2500 (patch)
treec2389439b9d41193079daf29a7bb82b6127e1e88 /spec/fixtures/java/example/pom.xml
parente1bb260b43763a36536b7d3fa4d73108ffb604d4 (diff)
Update maven/gradle offline tests
* Let maven figure out the version of the license plugin that it is compatible with * Print the error when the setup fails * Add tests for multiple versions of maven and java * Install packages into a project specific directory to prevent cross test pollution * Specify the list of supported Maven versions * Update CHANGELOG and bump the version
Diffstat (limited to 'spec/fixtures/java/example/pom.xml')
-rw-r--r--spec/fixtures/java/example/pom.xml39
1 files changed, 0 insertions, 39 deletions
diff --git a/spec/fixtures/java/example/pom.xml b/spec/fixtures/java/example/pom.xml
deleted file mode 100644
index b59f809..0000000
--- a/spec/fixtures/java/example/pom.xml
+++ /dev/null
@@ -1,39 +0,0 @@
-<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>example</artifactId>
- <packaging>jar</packaging>
- <version>1.0</version>
- <name>example</name>
- <url>http://maven.apache.org</url>
- <licenses>
- <license>
- <name>MIT</name>
- <url>https://opensource.org/licenses/MIT</url>
- </license>
- </licenses>
- <dependencies>
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <version>3.8.1</version>
- <scope>test</scope>
- </dependency>
- </dependencies>
- <repositories>
- <repository>
- <id>gitlab-maven</id>
- <url>https://gitlab.com/api/v4/projects/6130122/packages/maven</url>
- </repository>
- </repositories>
- <distributionManagement>
- <repository>
- <id>gitlab-maven</id>
- <url>https://gitlab.com/api/v4/projects/6130122/packages/maven</url>
- </repository>
- <snapshotRepository>
- <id>gitlab-maven</id>
- <url>https://gitlab.com/api/v4/projects/6130122/packages/maven</url>
- </snapshotRepository>
- </distributionManagement>
-</project>