Update copyright
[nikiroo-utils.git] / pom.xml
diff --git a/pom.xml b/pom.xml
index fe3d5c0c286b5a33442b16fe454e3cc821847ffb..283aaff89bc89c3654d14cd7dee9f443f82ad828 100644 (file)
--- a/pom.xml
+++ b/pom.xml
@@ -2,13 +2,13 @@
          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.github.klamonte</groupId>
+  <groupId>com.gitlab.klamonte</groupId>
   <artifactId>jexer</artifactId>
   <packaging>jar</packaging>
   <name>Jexer</name>
   <description>Java Text User Interface library that resembles Turbo Vision</description>
-  <version>0.0.6</version>
-  <url>https://github.com/klamonte/jexer</url>
+  <version>0.3.0</version>
+  <url>https://gitlab.com/klamonte/jexer</url>
 
   <licenses>
     <license>
   </properties>
 
   <scm>
-    <connection>scm:git:https://github.com/klamonte/jexer.git</connection>
-    <developerConnection>scm:git:https://github.com/klamonte/jexer.git</developerConnection>
-    <url>https://github.com/klamonte/jexer</url>
+    <connection>scm:git:https://gitlab.com/klamonte/jexer.git</connection>
+    <developerConnection>scm:git:https://gitlab.com/klamonte/jexer.git</developerConnection>
+    <url>https://gitlab.com/klamonte/jexer</url>
     <tag>HEAD</tag>
   </scm>
 
   <issueManagement>
-    <system>github</system>
-    <url>https://github.com/klamonte/jexer/issues</url>
+    <system>gitlab</system>
+    <url>https://gitlab.com/klamonte/jexer/issues</url>
   </issueManagement>
 
   <build>
           <include>**/*</include>
         </includes>
       </resource>
+      <resource>
+        <directory>src</directory>
+        <excludes>
+          <exclude>**/*.java</exclude>
+        </excludes>
+      </resource>
     </resources>
     <plugins>
       <plugin>
           <target>1.6</target>
         </configuration>
       </plugin>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-jar-plugin</artifactId>
+        <version>3.0.2</version>
+        <configuration>
+          <archive>
+            <manifest>
+              <mainClass>
+                jexer.demos.Demo1
+              </mainClass>
+
+            </manifest>
+            <manifestEntries>
+              <Implementation-Version>${project.version}</Implementation-Version>
+            </manifestEntries>
+          </archive>
+        </configuration>
+      </plugin>
     </plugins>
   </build>