Skip to content

Commit

Permalink
Migrating to JUnit 5.10.2
Browse files Browse the repository at this point in the history
  • Loading branch information
marigostra committed Feb 20, 2024
1 parent 66081cd commit cb8a7a9
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 27 deletions.
21 changes: 16 additions & 5 deletions parent.pom
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
<inlandes.version>0.3.0</inlandes.version>
<bookdoc.version>0.5.0</bookdoc.version>
<jna.version>5.11.0</jna.version>
<junit.version>5.10.2</junit.version>
<pty4j.version>0.12.7</pty4j.version>
<rhvoice.version>1.2.3</rhvoice.version>
<tdlib.version>1.8.0</tdlib.version>
Expand Down Expand Up @@ -257,15 +258,20 @@
<dependency>
<groupId>org.eclipse.jgit</groupId>
<artifactId>org.eclipse.jgit</artifactId>
<version>6.3.0.202209071007-r</version>
<version>6.3.0.202209071007-r</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>

<dependency>
<groupId>social.bigbone</groupId>
<artifactId>bigbone</artifactId>
Expand Down Expand Up @@ -303,6 +309,11 @@
</repositories>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.2.3</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
Expand Down
14 changes: 2 additions & 12 deletions scripts/lwr-nightly
Original file line number Diff line number Diff line change
Expand Up @@ -2,25 +2,15 @@
# Copyright 2012-2024 Michael Pozhidaev <[email protected]>
# The LUWRAIN Project, GPL v.3

TEMP_DIR=$(mktemp -d /tmp/.nightly-XXXXXX)

if [ "$1" == '--tmpfs' ]; then
echo "Creating tmpfs at $TEMP_DIR"
sudo mount -t tmpfs -o size=20g tmpfs "$TEMP_DIR"
else
echo "Working in $TEMP_DIR"
fi

rm -f /tmp/nightly
ln -s $TEMP_DIR /tmp/nightly
TEMP_DIR=$(mktemp -d)

cd $TEMP_DIR

echo 'Downloading files'
git clone --recursive https://github.com/luwrain/parent/ &> log
mv parent src
cd src/base/scripts
./lwr-prepare &>> ../../../log
./lwr-ant-gen-all

DEST="luwrain-nightly-`date -I`"
./lwr-dist-src $TEMP_DIR/$DEST
Expand Down
10 changes: 0 additions & 10 deletions scripts/lwr-prepare

This file was deleted.

0 comments on commit cb8a7a9

Please sign in to comment.