Skip to content

Commit 0887cd8

Browse files
committed
Fix version rcptt-maven-plugin/antrun-plugin. Better log name
1 parent 8922742 commit 0887cd8

9 files changed

Lines changed: 9 additions & 19 deletions

File tree

KernFunktionen/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@
143143
</testOptions>
144144
<aut>
145145
<!-- use the product build in elexis-${useBranch} -->
146-
<explicit>${aut}</explicit>
146+
<explicit>${autExplicit}</explicit>
147147
<args>
148148
<arg>-nl</arg>
149149
<arg>${language}_CH</arg>

devenv.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@
7171
{name = "elexis_rcptt_it";}
7272
{name = "elexis";}
7373
];
74-
services.mysql.enable = true;
74+
services.mysql.enable = false;
7575
services.mysql.ensureUsers = [
7676
{
7777
name = "elexis";

h2/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
<plugins>
2727
<plugin>
2828
<artifactId>maven-antrun-plugin</artifactId>
29-
<version>1.8</version>
29+
<version>3.1.0</version>
3030
<executions>
3131
<execution>
3232
<id>Create ${project.basedir}/target/results</id>

mysql/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
<plugins>
3838
<plugin>
3939
<artifactId>maven-antrun-plugin</artifactId>
40-
<version>1.8</version>
40+
<version>3.1.0</version>
4141
<executions>
4242
<execution>
4343
<id>Create ${project.basedir}/target/results</id>

pom.xml

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -6,17 +6,8 @@
66
<version>0.1</version>
77
<packaging>pom</packaging>
88
<properties>
9-
<tycho.version>4.0.13</tycho.version>
9+
<tycho.version>4.0.12</tycho.version>
1010
<tycho-groupid>org.eclipse.tycho</tycho-groupid>
11-
<!-- we need a version > 2.3.0 because we need the proc find-all to extract the language from the nl parameter
12-
commit 265067eb1ce14428ea4d33e97606934a6238d9e8
13-
Author: Alexander Dudaev <aleksandr.dudayev@xored.com>
14-
Date: Wed Jul 25 20:56:41 2018 +0700
15-
Added new ECL Command "find-all"
16-
-->
17-
<!--rcptt-maven-version>2.4.0-20181219.003252-175</rcptt-maven-version-->
18-
<!-- we do not need a snapshot version as they change too often rcptt-maven-version>2.4.0-SNAPSHOT</rcptt-maven-version !-->
19-
<!--rcptt-maven-version>2.5.2-SNAPSHOT</rcptt-maven-version-->
2011
<rcptt-maven-version>2.5.5</rcptt-maven-version>
2112
<rcptt-resources>${user.home}/elexis/rcptt</rcptt-resources>
2213
<suite2run>SmokeTestSuite</suite2run>

postgresql/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
<plugin>
4848
<groupId>org.eclipse.rcptt</groupId>
4949
<artifactId>rcptt-maven-plugin</artifactId>
50-
<version>2.5.1</version>
50+
<version>${rcptt-maven-version}</version>
5151
<extensions>true</extensions>
5252
<configuration>
5353
<timeout>5402</timeout>

run_postgresql_3.12.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ cd `dirname $0`
66
# -Dsuite2run=QuickTestSuite
77
# -DuseBranch=3.12
88
set -v
9-
mvn -V --batch-mode clean install --settings=$PWD/postgresql/settings.xml -f $PWD/postgresql/pom.xml -DuseBranch=3.12 2>&1 | tee `basename --suffix=.sh $0`-3.log;
9+
mvn -V --batch-mode clean install --settings=$PWD/postgresql/settings.xml -f $PWD/postgresql/pom.xml -DuseBranch=3.12 2>&1 | tee mvn-`date '+%Y-%m-%d-%H-%M'`.log;
1010
echo done

run_test.fish

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,7 @@ end
5252
set zip_file elexis-$branch/target/products/*zip
5353
echo zip_file is $zip_file
5454
set cmd mvn -V --batch-mode clean install --settings=$dbtype/settings.xml -f $dbtype/pom.xml -DuseBranch=$branch -Dlanguage=$language -DautExplicit=$autDir/Elexis3
55-
echo $cmd
56-
$cmd
55+
$cmd 2>&1 | tee mvn-(date '+%Y-%m-%d-%H-%M').log
5756
set result $status
5857
echo "Maven returned $result mit $status branch $_flag_branch"
5958
ls -lh Kernfunktionen/target/results/Kernfunktionen.html

setup/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@
195195
</plugin>
196196
<plugin>
197197
<artifactId>maven-antrun-plugin</artifactId>
198-
<version>1.8</version>
198+
<version>3.1.0</version>
199199
<executions>
200200
<execution>
201201
<id>copy-datafiles</id>

0 commit comments

Comments
 (0)