From 5d7e245416f98a78474566c7ab2d11cc2ce78732 Mon Sep 17 00:00:00 2001 From: "tom.ryser" <tom.ryser@etu.hesge.ch> Date: Mon, 24 Feb 2025 16:06:23 +0100 Subject: [PATCH] Add Pom.xml for pipeline testing --- pom.xml | 43 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 pom.xml diff --git a/pom.xml b/pom.xml new file mode 100644 index 00000000..b0f26bfd --- /dev/null +++ b/pom.xml @@ -0,0 +1,43 @@ +<?xml version="1.0" encoding="UTF-8"?> +<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> + + <groupId>com.example</groupId> + <artifactId>test-pipeline</artifactId> + <version>1.0-SNAPSHOT</version> + <packaging>jar</packaging> + + <name>Test Pipeline</name> + <url>http://maven.apache.org</url> + + <dependencies> + <!-- Dependency for testing --> + <dependency> + <groupId>junit</groupId> + <artifactId>junit</artifactId> + <version>4.13.1</version> + <scope>test</scope> + </dependency> + </dependencies> + + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-compiler-plugin</artifactId> + <version>3.8.1</version> + <configuration> + <source>1.8</source> + <target>1.8</target> + </configuration> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-surefire-plugin</artifactId> + <version>2.22.2</version> + </plugin> + </plugins> + </build> +</project> -- GitLab