Skip to content

Commit

Permalink
Better comments to get and install 3rd part JAR
Browse files Browse the repository at this point in the history
  • Loading branch information
garydgregory committed Feb 23, 2025
1 parent 29ccda7 commit a75338d
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -391,13 +391,16 @@
<version>2.4.0</version>
<scope>test</scope>
</dependency>

<!--
Not in Maven Central, download manually from http://kasparov.skife.org/csv/csv-1.0.jar and install with:
curl https://repo.marketcetera.org/maven/org/skife/kasparov/csv/1.0/csv-1.0.jar -o $TMPDIR/csv-1.0.jar
mvn install:install-file -Dfile=$TMPDIR/csv-1.0.jar -DgroupId=org.skife.kasparov -DartifactId=csv -Dversion=1.0 -Dpackaging=jar
-->
<dependency>
<!--
org.skife.kasparov:csv:1.0 is not in Maven Central, download manually from http://kasparov.skife.org/csv/csv-1.0.jar and install with:
- Linux
curl https://repo.marketcetera.org/maven/org/skife/kasparov/csv/1.0/csv-1.0.jar -o $TMPDIR/csv-1.0.jar
mvn install:install-file -Dfile=$TMPDIR/csv-1.0.jar -DgroupId=org.skife.kasparov -DartifactId=csv -Dversion=1.0 -Dpackaging=jar
- Windows
curl https://repo.marketcetera.org/maven/org/skife/kasparov/csv/1.0/csv-1.0.jar -o %TMPDIR%/csv-1.0.jar
mvn install:install-file -Dfile=%TMPDIR%/csv-1.0.jar -DgroupId=org.skife.kasparov -DartifactId=csv -Dversion=1.0 -Dpackaging=jar
-->
<groupId>org.skife.kasparov</groupId>
<artifactId>csv</artifactId>
<version>1.0</version>
Expand Down

0 comments on commit a75338d

Please sign in to comment.