Skip to content

Commit

Permalink
More CI testing
Browse files Browse the repository at this point in the history
  • Loading branch information
dhadka committed Nov 28, 2023
1 parent 917cb83 commit 5c0f1f5
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 3 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@ jobs:
with:
java-version: ${{ matrix.java }}
distribution: zulu
- name: Install required software
run: |
sudo apt install xmlstarlet
- name: Get project settings
run: |
shortname=$(xmlstarlet sel -N x="http://maven.apache.org/POM/4.0.0" -t -v "//x:project/x:artifactId/text()" pom.xml)
Expand Down
14 changes: 11 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,18 @@ these steps:
#### Setup Benchmarks Library

If using the source or binary distribution of the MOEA Framework, you will need to obtain `real-world-benchmarks-{version}.jar`
and place it in the `${MOEAFRAMEWORK_ROOT}/lib` folder. You can download this file from one of the official releases on
GitHub or build it by running `mvn package`.
and place it in the `${MOEAFRAMEWORK_ROOT}/lib` folder. You can download this file from the
[releases page](https://github.com/MOEAFramework/MOEAFramework/releases) or build the latest by running `mvn package -DskipTests`.

Maven users can simply add a dependency for this library to `pom.xml`.
Maven users can simply add a dependency for this library to `pom.xml`:

```xml
<dependency>
<groupId>org.moeaframework</groupId>
<artifactId>real-world-benchmarks</artifactId>
<version>1.0.0</version>
</dependency>
```

## Usage

Expand Down

0 comments on commit 5c0f1f5

Please sign in to comment.