From ddbe6936f603911dce89887525044e545251aeb5 Mon Sep 17 00:00:00 2001 From: Eleanor McMurtry <elmcmurtry1@gmail.com> Date: Thu, 13 Aug 2020 10:22:41 +1000 Subject: [PATCH] add scm to pom --- pom.xml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/pom.xml b/pom.xml index db8ad36..61ffcd7 100644 --- a/pom.xml +++ b/pom.xml @@ -7,6 +7,7 @@ <groupId>au.edu.unimelb</groupId> <artifactId>bagel</artifactId> <version>1.9.2</version> + <packaging>jar</packaging> <name>${project.groupId}:${project.artifactId}</name> <description> @@ -32,6 +33,12 @@ </developer> </developers> + <scm> + <connection>scm:git:git://gitlab.eng.unimelb.edu.au/emcmurtry/bagel-public.git</connection> + <developerConnection>scm:git:ssh://gitlab.eng.unimelb.edu.au/emcmurtry/bagel-public.git</developerConnection> + <url>https://gitlab.eng.unimelb.edu.au/emcmurtry/bagel-public</url> + </scm> + <build> <plugins> <plugin> @@ -39,6 +46,9 @@ <configuration> <source>11</source> <target>11</target> + <excludes> + <exclude>**/test/**/*</exclude> + </excludes> </configuration> </plugin> </plugins> -- GitLab