diff --git a/pom.xml b/pom.xml index db8ad3600e773ab1e1d59edcb4d605542f6a66ac..61ffcd7f840caf19aaedb7b472a566372fa87b98 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>