Commit ca1769095a1eb761cd34e68bfd2e84840236bd41
1 parent
20dee7a7
new release
Showing
3 changed files
with
6 additions
and
8 deletions
docker/Dockerfile
1 | 1 | # Automatically generated Dockerfile |
2 | -# - Build 2017-02-11 09:25 | |
2 | +# - Build 2017-02-11 10:16 | |
3 | 3 | # - Lucene/Solr version 6.4.1 |
4 | -# - Mtas release 20170131 | |
4 | +# - Mtas release 20170211 | |
5 | 5 | # |
6 | 6 | |
7 | 7 | FROM ubuntu:16.04 |
... | ... | @@ -15,7 +15,7 @@ WORKDIR "/root" |
15 | 15 | |
16 | 16 | RUN mkdir lib |
17 | 17 | |
18 | -ADD https://github.com/meertensinstituut/mtas/releases/download/20170131/mtas-6.4.1.jar /root/lib/ | |
18 | +ADD https://github.com/meertensinstituut/mtas/releases/download/20170211/mtas-6.4.1.jar /root/lib/ | |
19 | 19 | |
20 | 20 | RUN apt-get update && apt-get install -y lsof software-properties-common python-software-properties apache2 curl subversion \ |
21 | 21 | && locale-gen en_US.UTF-8 en_US && update-locale LANG=en_US.UTF-8 LANGUAGE=en_US:en \ |
... | ... | @@ -55,9 +55,9 @@ RUN apt-get update && apt-get install -y lsof software-properties-common python- |
55 | 55 | && chmod -R 755 /var/www/html \ |
56 | 56 | && printf "echo\n" >> /start.sh \ |
57 | 57 | && printf "echo \"================ Mtas -- Multi Tier Annotation Search =================\"\n" >> /start.sh \ |
58 | -&& printf "echo \" Timestamp 2017-02-11 09:25\"\n" >> /start.sh \ | |
58 | +&& printf "echo \" Timestamp 2017-02-11 10:16\"\n" >> /start.sh \ | |
59 | 59 | && printf "echo \" Lucene/Solr version 6.4.1\"\n" >> /start.sh \ |
60 | -&& printf "echo \" Mtas release 20170131\"\n" >> /start.sh \ | |
60 | +&& printf "echo \" Mtas release 20170211\"\n" >> /start.sh \ | |
61 | 61 | && printf "echo \" See https://meertensinstituut.github.io/mtas/ for more information\"\n" >> /start.sh \ |
62 | 62 | && printf "echo \"=======================================================================\"\n" >> /start.sh \ |
63 | 63 | && printf "echo\n" >> /start.sh \ |
... | ... |
pom.xml
... | ... | @@ -5,7 +5,7 @@ |
5 | 5 | <maven.build.timestamp.format>yyyy-MM-dd HH:mm</maven.build.timestamp.format> |
6 | 6 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
7 | 7 | <currentDevelopmentVersion>6.4.1</currentDevelopmentVersion> |
8 | - <currentDevelopmentRelease>20170131</currentDevelopmentRelease> | |
8 | + <currentDevelopmentRelease>20170211</currentDevelopmentRelease> | |
9 | 9 | </properties> |
10 | 10 | <modelVersion>4.0.0</modelVersion> |
11 | 11 | <groupId>dev.meertens.mtas</groupId> |
... | ... |
src/mtas/codec/util/CodecCollector.java
... | ... | @@ -2471,7 +2471,6 @@ public class CodecCollector { |
2471 | 2471 | if (docLists.get(key).length > 0) { |
2472 | 2472 | // initialise |
2473 | 2473 | Integer[] subDocSet = docLists.get(key); |
2474 | - System.out.println(key+": "+Arrays.toString(subDocSet)); | |
2475 | 2474 | int length = cf.baseParsers[level].needArgumentsNumber(); |
2476 | 2475 | long[] valueSum = new long[length]; |
2477 | 2476 | long valuePositions = 0; |
... | ... | @@ -2496,7 +2495,6 @@ public class CodecCollector { |
2496 | 2495 | try { |
2497 | 2496 | value = cf.baseParsers[level].getValueLong(valueSum, |
2498 | 2497 | valuePositions); |
2499 | - System.out.println("Add "+key+" - "+value); | |
2500 | 2498 | subDataCollector = dataCollector.add(key, value, |
2501 | 2499 | subDocSet.length); |
2502 | 2500 | } catch (IOException e) { |
... | ... |