From fd5c83104cefe381e11aba69e80ebc475a6260f9 Mon Sep 17 00:00:00 2001
From: Ian Young <ian@iay.org.uk>
Date: Fri, 11 May 2018 08:39:39 +0100
Subject: [PATCH] More POM file boilerplate

---
 pom.xml | 22 +++++++++++++++++++++-
 1 file changed, 21 insertions(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index a61d5c3..46da906 100644
--- a/pom.xml
+++ b/pom.xml
@@ -11,10 +11,17 @@
 
     <groupId>uk.org.iay.incommon.validator</groupId>
     <artifactId>inc-validator</artifactId>
-    <version>1.0.0</version>
+    <version>0.0.1-SNAPSHOT</version>
 
     <packaging>jar</packaging>
 
+    <name>Metadata Validation Micro-Service</name>
+    <description>
+        An metadata validation micro-service, implemented using
+        Spring Boot and the Shibboleth metadata aggregator framework.
+    </description>
+    <inceptionYear>2018</inceptionYear>
+
     <properties>
         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
         <spec.url>https://api.swaggerhub.com/apis/iay/inc-validator/1.0.0</spec.url>
@@ -120,6 +127,10 @@
                 </executions>
             </plugin>
 
+            <!--
+                Ask Spring Boot to enhance the resulting .jar so that it is
+                directly executable.
+            -->
             <plugin>
                 <groupId>org.springframework.boot</groupId>
                 <artifactId>spring-boot-maven-plugin</artifactId>
@@ -185,4 +196,13 @@
         </profile>
     </profiles>
 
+    <developers>
+        <developer>
+            <id>iay</id>
+            <name>Ian Young</name>
+            <organizationUrl>https://iay.org.uk/</organizationUrl>
+            <timezone>0</timezone>
+        </developer>
+    </developers>
+
 </project>