Skip to content

Commit

Permalink
Prepare release v3.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jcgay committed Aug 19, 2021
1 parent 99d3897 commit 4cf935a
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 10 deletions.
12 changes: 10 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
# 3.1.1
***

- Generate changelog with JReleaser ([99d3897](http://github.com/jcgay/maven-profiler/commit/99d3897c197e62c30dc862426653a2a59075e126))
- Report ITs in code coverage ([e17bf84](http://github.com/jcgay/maven-profiler/commit/e17bf84aaee99d2bf39a6c35d1e43e4470f4ccff))
- Activate profiling with mvnd ([61ff289](http://github.com/jcgay/maven-profiler/commit/61ff289f47d5228aa03e3b8266127cd80e0d659d))
- Build with GitHub actions ([944447c](http://github.com/jcgay/maven-profiler/commit/944447c3e9bd7ef5598d6e6b81f31845da870e4f))

# 3.0
***

Expand Down Expand Up @@ -35,5 +43,5 @@
# 2.1
***

- Minimize shaded JAR size [[view]](http://github.com/jcgay/maven-profiler/commit/70d5605c95beb7604491ef67c3e55dd5827e1388)
- Generate report in JSON [[view]](http://github.com/jcgay/maven-profiler/commit/f5b95067ee84af2b6934a76a98d30f0773d4cbf6) by [@jasongardnerlv](https://github.com/jasongardnerlv)
- Minimize shaded JAR size [[view]](http://github.com/jcgay/maven-profiler/commit/70d5605c95beb7604491ef67c3e55dd5827e1388)
- Generate report in JSON [[view]](http://github.com/jcgay/maven-profiler/commit/f5b95067ee84af2b6934a76a98d30f0773d4cbf6) by [@jasongardnerlv](https://github.com/jasongardnerlv)
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,24 +25,24 @@ It is based on latest maven release.

### Maven >= 3.3.x

Get [maven-profiler](http://dl.bintray.com/jcgay/maven/fr/jcgay/maven/maven-profiler/3.0/maven-profiler-3.0-shaded.jar) and copy it in `%M2_HOME%/lib/ext` folder.
Get [maven-profiler](https://repo1.maven.org/maven2/fr/jcgay/maven/maven-profiler/3.1.1/maven-profiler-3.1.1-shaded.jar) and copy it in `%M2_HOME%/lib/ext` folder.

*or*

Use the new [core extensions configuration mechanism](http://takari.io/2015/03/19/core-extensions.html) by creating a `${maven.multiModuleProjectDirectory}/.mvn/extensions.xml` file with:
Use the [core extensions configuration mechanism](http://takari.io/2015/03/19/core-extensions.html) by creating a `${maven.multiModuleProjectDirectory}/.mvn/extensions.xml` file with:

<?xml version="1.0" encoding="UTF-8"?>
<extensions>
<extension>
<groupId>fr.jcgay.maven</groupId>
<artifactId>maven-profiler</artifactId>
<version>3.0</version>
<version>3.1.1</version>
</extension>
</extensions>

### Maven >= 3.1.x

Get [maven-profiler](http://dl.bintray.com/jcgay/maven/fr/jcgay/maven/maven-profiler/3.0/maven-profiler-3.0-shaded.jar) and copy it in `%M2_HOME%/lib/ext` folder.
Get [maven-profiler](https://repo1.maven.org/maven2/fr/jcgay/maven/maven-profiler/3.1.1/maven-profiler-3.1.1-shaded.jar) and copy it in `%M2_HOME%/lib/ext` folder.

### Maven 3.0.x
(with limited functionality, kept for compatibility)
Expand All @@ -58,7 +58,7 @@ This will generate a report in `.profiler` folder.

You might also add a profile name, which is included in the [report](#report-format)
and helps identify the experiment:

mvn clean install -Dprofile="No custom JVM options"
export MAVEN_OPTS='-XX:TieredStopAtLevel=1 -XX:+UseParallelGC'
mvn clean install -Dprofile="With custom JVM options=${MAVEN_OPTS}"
Expand All @@ -67,7 +67,7 @@ The extension also works when `mvn` is executed on multiple threads (option `-T`

### Report format

One can choose between `HTML` (by default) or `JSON` report using property `profileFormat`.
One can choose between `HTML` (by default) or `JSON` report using property `profileFormat`.

mvn install -Dprofile -DprofileFormat=HTML

Expand All @@ -83,7 +83,7 @@ Also you can add the property `disableTimeSorting` if you want the reported time

### Report directory

Report default directory (`.profiler`) can be customized.
Report default directory (`.profiler`) can be customized.
You can set it as a Maven property, for example in `pom.xml`:

```
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

<groupId>fr.jcgay.maven</groupId>
<artifactId>maven-profiler</artifactId>
<version>3.1-SNAPSHOT</version>
<version>3.1.1-SNAPSHOT</version>
<description>Log Maven mojos execution time</description>

<prerequisites>
Expand Down

0 comments on commit 4cf935a

Please sign in to comment.