Skip to content

Commit

Permalink
🐛 Fixing mci bug
Browse files Browse the repository at this point in the history
Well, with `clean` you delete the project cache of Maven which makes the build much slower. With `install`, the artifact will be copied to the `~/.m2` directory, which you don't want in this case. You want just to build the artifact, so `mvn package` is the correct command…
  • Loading branch information
McPringle authored Oct 6, 2020
1 parent 9a90624 commit ca00ecd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ _The missing emoji library for java._
</dependency>
```

You can also download the project, build it with `mvn clean install` and add the generated jar to your buildpath.
You can also download the project, build it with `mvn package` and add the generated jar to your buildpath.

##### Via Gradle:

Expand Down

0 comments on commit ca00ecd

Please sign in to comment.