Skip to content

Commit

Permalink
Removing reference to gradle
Browse files Browse the repository at this point in the history
  • Loading branch information
noconnor committed Feb 22, 2021
1 parent 2b0f398 commit 9a96980
Showing 1 changed file with 10 additions and 6 deletions.
16 changes: 10 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,15 @@ This library interface was heavily influenced by the interface in the deprecated

## Install Instructions

`JUnitPerf` is available in [maven central](http://bit.ly/2idQDvA)
`JUnitPerf` is available in [maven central](https://search.maven.org/artifact/com.github.noconnor/junitperf/)

To add the latest version of `JunitPerf` to your gradle project add the following line to your build.gradle files dependencies:

`compile 'com.github.noconnor:junitperf:+'`
```
<dependency>
<groupId>com.github.noconnor</groupId>
<artifactId>junitperf</artifactId>
<version>1.17.0</version>
</dependency>
```

<br />

Expand Down Expand Up @@ -369,9 +373,9 @@ public JUnitPerfRule perfTestRule = new JUnitPerfRule(new CustomStatisticsCalcul

## Build Instructions

To compile this project and run tests execute the following command from the root project directory: `./gradlew clean test`
To compile this project and run tests execute the following command from the root project directory: ` mvn clean test`

To generate a library jar execute: `./gradlew clean assemble -x sign` or `./gradlew clean jar`
To generate a library jar execute: `mvn clean package`

**Intellij 14 Setup**

Expand Down

0 comments on commit 9a96980

Please sign in to comment.