Skip to content

Commit 74f7405

Browse files
author
Maksim Kostromin
committed
Fix Maven and GitHub Actions.
1 parent 5dd7d4e commit 74f7405

19 files changed

+377
-1138
lines changed

.github/workflows/ci.yaml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: CI
2+
on: [push]
3+
jobs:
4+
tests:
5+
runs-on: ubuntu-latest
6+
steps:
7+
- uses: actions/checkout@v4
8+
#- uses: graalvm/setup-graalvm@v1
9+
# with:
10+
# java-version: '22' # See 'Options' section below for all supported versions
11+
# distribution: 'graalvm' # See 'Options' section below for all available distributions
12+
# github-token: ${{ secrets.GITHUB_TOKEN }}
13+
- uses: actions/setup-java@v4
14+
with:
15+
java-version: '8' # See supported versions https://github.com/actions/setup-java?tab=readme-ov-file#supported-version-syntax
16+
distribution: 'corretto' # See the section below for all available distributions https://github.com/actions/setup-java?tab=readme-ov-file#supported-distributions
17+
- run: |
18+
echo "JAVA_HOME: $JAVA_HOME"
19+
java -version
20+
- run: ./mvnw

.mvn/wrapper/MavenWrapperDownloader.java

Lines changed: 0 additions & 117 deletions
This file was deleted.

.mvn/wrapper/maven-wrapper.jar

-49.5 KB
Binary file not shown.

.mvn/wrapper/maven-wrapper.properties

Lines changed: 19 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,19 @@
1-
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.6.2/apache-maven-3.6.2-bin.zip
2-
wrapperUrl=https://repo.maven.apache.org/maven2/io/takari/maven-wrapper/0.5.5/maven-wrapper-0.5.5.jar
1+
# Licensed to the Apache Software Foundation (ASF) under one
2+
# or more contributor license agreements. See the NOTICE file
3+
# distributed with this work for additional information
4+
# regarding copyright ownership. The ASF licenses this file
5+
# to you under the Apache License, Version 2.0 (the
6+
# "License"); you may not use this file except in compliance
7+
# with the License. You may obtain a copy of the License at
8+
#
9+
# http://www.apache.org/licenses/LICENSE-2.0
10+
#
11+
# Unless required by applicable law or agreed to in writing,
12+
# software distributed under the License is distributed on an
13+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14+
# KIND, either express or implied. See the License for the
15+
# specific language governing permissions and limitations
16+
# under the License.
17+
wrapperVersion=3.3.2
18+
distributionType=only-script
19+
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.9/apache-maven-3.9.9-bin.zip

.travis.yml

Lines changed: 0 additions & 72 deletions
This file was deleted.

README.md

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,6 @@ __requires Docker up and running!__
1010
./mvnw clean test
1111
```
1212

13-
## gradle
14-
15-
```bash
16-
./gradlew clean test
17-
```
18-
1913
_resources_
2014

2115
* https://github.com/selenide-examples/testcontainers/blob/master/src/test/java/org/selenide/examples/GoogleTestWithDocker.java

build.gradle.kts

Lines changed: 0 additions & 108 deletions
This file was deleted.

gradle.properties

Lines changed: 0 additions & 5 deletions
This file was deleted.

gradle/wrapper/gradle-wrapper.jar

-54.3 KB
Binary file not shown.

gradle/wrapper/gradle-wrapper.properties

Lines changed: 0 additions & 5 deletions
This file was deleted.

0 commit comments

Comments
 (0)