From 2fef9c6eaa2ba32e7a14ea1e469ec471b05019a2 Mon Sep 17 00:00:00 2001 From: Kevin Lamonte Date: Sat, 5 Aug 2017 11:39:18 -0400 Subject: [PATCH] stub maven support --- docs/worklog.md | 22 +++++++++ pom.xml | 127 ++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 149 insertions(+) create mode 100644 pom.xml diff --git a/docs/worklog.md b/docs/worklog.md index be5f044..a169b68 100644 --- a/docs/worklog.md +++ b/docs/worklog.md @@ -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 index 0000000..346c14b --- /dev/null +++ b/pom.xml @@ -0,0 +1,127 @@ + + 4.0.0 + com.github.klamonte + jexer + jar + Jexer + Java Text User Interface library that resembles Turbo Vision + 0.0.5 + https://github.com/klamonte/jexer + + + + MIT License + http://www.opensource.org/licenses/mit-license.php + repo + + + + + UTF-8 + UTF-8 + + + + scm:git:https://github.com/klamonte/jexer.git + scm:git:https://github.com/klamonte/jexer.git + https://github.com/klamonte/jexer + HEAD + + + + github + https://github.com/klamonte/jexer/issues + + + + ${project.basedir}/src + + + ${project.basedir}/resources + false + + **/* + + + + + + org.apache.maven.plugins + maven-compiler-plugin + 3.1 + + 1.6 + 1.6 + + + + + + + + ossrh + https://oss.sonatype.org/content/repositories/snapshots + + + + + + release + + + + org.apache.maven.plugins + maven-source-plugin + 2.2.1 + + + attach-sources + + jar-no-fork + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + 2.9.1 + + + attach-javadocs + + jar + + + + + + + org.apache.maven.plugins + maven-gpg-plugin + 1.5 + + + sign-artifacts + verify + + sign + + + + + + + + + + + + klamonte + Kevin Lamonte + kevin.lamonte@gmail.com + + + -- 2.27.0