Skip to content
This repository has been archived by the owner on Sep 21, 2021. It is now read-only.

Commit

Permalink
added assembly build config
Browse files Browse the repository at this point in the history
  • Loading branch information
dmitry.kan committed Jan 20, 2016
1 parent ed9b241 commit 9c30957
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 4 deletions.
24 changes: 22 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
<version>${lucene.version}</version>

<properties>
<jdk.version>1.6</jdk.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<lucene.version>5.2.1</lucene.version>
<ehcache.version>2.9.0</ehcache.version>
Expand Down Expand Up @@ -266,15 +267,34 @@
<groupId>org.apache.maven.plugins</groupId>
<version>${maven-compiler-plugin.version}</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
<source>${jdk.version}</source>
<target>${jdk.version}</target>
<encoding>UTF-8</encoding>
<compilerArgs>
<arg>-Xlint:deprecation</arg>
</compilerArgs>
</configuration>
</plugin>

<!-- release assembly -->
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<version>${maven-assembly-plugin.version}</version>
<configuration>
<descriptors>
<descriptor>src/main/assembly/assembly.xml</descriptor>
</descriptors>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>

</plugins>
</build>

Expand Down
5 changes: 3 additions & 2 deletions src/main/resources/xml/about.xml
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<dialog modal="true" name="about" columns="1" gap="8" icon="/img/luke.gif" text=" About" left="4" right="4" bottom="4" top="4" close="remove(about)">
<label halign="center" valign="center" text="v 4.10.3 (2015-02-23)" font="10" icon="/img/luke-big.gif"/>
<label halign="center" valign="center" text="v 5.2.1 (2016-01-20)" font="10" icon="/img/luke-big.gif"/>
<button type="link" tooltip="Go to Luke home page" action="goUrl(this)" halign="center" property="url=https://github.com/DmitryKey/luke" foreground="#5aaa88" text="Lucene Index Toolbox" font="18 bold"/>
<label halign="center" font="13" text="Created by Andrzej Bialecki &lt;ab@getopt.org&gt;"/>
<label halign="center" font="13" text="Maintained and further developed by Dmitry Kan &lt;dmitry.lucene@gmail.com&gt;"/>
<label halign="center" font="13" text="Further developed by: Dmitry Kan &lt;dmitry.lucene@gmail.com&gt;, Tomoko Uchida &lt;https://twitter.com/moco_beta&gt;"/>
<label halign="center" font="13" text="Baked by pull-requests from our fantastic community. Thanks to all of you!"/>
<label halign="center" font="italic 11" text="GUI client of the best Java search library"/>
<button type="link" icon="/img/lucene.gif" tooltip="Go to Lucene home page" action="goUrl(this)" halign="center" property="url=http://lucene.apache.org/" foreground="#5aaa88" text="Apache Lucene - home page"/>
<label halign="center" font="11" name="lver" text=""/>
Expand Down

0 comments on commit 9c30957

Please sign in to comment.