stub maven support
authorKevin Lamonte <kevin.lamonte@gmail.com>
Sat, 5 Aug 2017 15:39:18 +0000 (11:39 -0400)
committerKevin Lamonte <kevin.lamonte@gmail.com>
Sat, 5 Aug 2017 15:39:18 +0000 (11:39 -0400)
docs/worklog.md
pom.xml [new file with mode: 0644]

index be5f0442c5ad8e0da7cf3d283c3cb262f5b03137..a169b68cddb6d99c9386a40052d1694f33548df7 100644 (file)
@@ -1,6 +1,28 @@
 Jexer Work Log
 ==============
 
+July 28, 2017
+
+Got very busy with my meatspace life, now getting a chance to come
+back around.
+
+I gave up on TEditor knowing about graphemes, instead pulling back to
+simple Cells.  This will be better anyway in the long run, as getting
+grapheme support in Screen someday will also get it for me in TEditor
+for free.  But it does mean that TEditor will chew through much more
+RAM than it needs to for a text file.  Performance optimization will
+come someday.  But this means I can also go back to gcj, because I
+really like its warnings about unused imports.
+
+I've got a POM stubbed in, and created an account over at sonatype.
+If it isn't too hard, I will try to get 0.0.5 released into the maven
+universe.  But that is still a bit away, I need TEditor running with
+syntax highlighting first.
+
+July 17, 2017
+
+Focus-follows-mouse is in, as is NOCLOSEBOX.
+
 July 15, 2017
 
 I think I have cleaned up most of the window show/hide/activate mess
diff --git a/pom.xml b/pom.xml
new file mode 100644 (file)
index 0000000..346c14b
--- /dev/null
+++ b/pom.xml
@@ -0,0 +1,127 @@
+<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/maven-v4_0_0.xsd">
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>com.github.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.5</version>
+  <url>https://github.com/klamonte/jexer</url>
+
+  <licenses>
+    <license>
+      <name>MIT License</name>
+      <url>http://www.opensource.org/licenses/mit-license.php</url>
+      <distribution>repo</distribution>
+    </license>
+  </licenses>
+
+  <properties>
+    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+    <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
+  </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>
+    <tag>HEAD</tag>
+  </scm>
+
+  <issueManagement>
+    <system>github</system>
+    <url>https://github.com/klamonte/jexer/issues</url>
+  </issueManagement>
+
+  <build>
+    <sourceDirectory>${project.basedir}/src</sourceDirectory>
+    <resources>
+      <resource>
+        <directory>${project.basedir}/resources</directory>
+        <filtering>false</filtering>
+        <includes>
+          <include>**/*</include>
+        </includes>
+      </resource>
+    </resources>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <version>3.1</version>
+        <configuration>
+          <source>1.6</source>
+          <target>1.6</target>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
+
+  <distributionManagement>
+    <snapshotRepository>
+      <id>ossrh</id>
+      <url>https://oss.sonatype.org/content/repositories/snapshots</url>
+    </snapshotRepository>
+  </distributionManagement>
+
+  <profiles>
+    <profile>
+      <id>release</id>
+      <build>
+        <plugins>
+          <plugin>
+            <groupId>org.apache.maven.plugins</groupId>
+            <artifactId>maven-source-plugin</artifactId>
+            <version>2.2.1</version>
+            <executions>
+              <execution>
+                <id>attach-sources</id>
+                <goals>
+                  <goal>jar-no-fork</goal>
+                </goals>
+              </execution>
+            </executions>
+          </plugin>
+          <plugin>
+            <groupId>org.apache.maven.plugins</groupId>
+            <artifactId>maven-javadoc-plugin</artifactId>
+            <version>2.9.1</version>
+            <executions>
+              <execution>
+                <id>attach-javadocs</id>
+                <goals>
+                  <goal>jar</goal>
+                </goals>
+              </execution>
+            </executions>
+          </plugin>
+
+          <plugin>
+            <groupId>org.apache.maven.plugins</groupId>
+            <artifactId>maven-gpg-plugin</artifactId>
+            <version>1.5</version>
+            <executions>
+              <execution>
+                <id>sign-artifacts</id>
+                <phase>verify</phase>
+                <goals>
+                  <goal>sign</goal>
+                </goals>
+              </execution>
+            </executions>
+          </plugin>
+        </plugins>
+      </build>
+    </profile>
+  </profiles>
+
+  <developers>
+    <developer>
+      <id>klamonte</id>
+      <name>Kevin Lamonte</name>
+      <email>kevin.lamonte@gmail.com</email>
+    </developer>
+  </developers>
+</project>