Skip to content

Instantly share code, notes, and snippets.

@anmsid
Created January 15, 2019 08:12
Show Gist options
  • Save anmsid/f197d6de51a91c730d3ab239cbedfaed to your computer and use it in GitHub Desktop.
Save anmsid/f197d6de51a91c730d3ab239cbedfaed to your computer and use it in GitHub Desktop.
How to include IBM spssjavaplugin.jar into local maven repository on Mac
# Install the jar
mvn install:install-file -Dfile=/Applications/IBMSPSSStatistics/Subscription/SPSSStatisticsSubscription.app/Contents/bin/spssjavaplugin.jar -DgroupId=com.ibm.statistics -DartifactId=spssjavaplugin -Dversion=1.0 -Dpackaging=jar
# Include the package in pom.xml
<dependency>
<groupId>com.ibm.statistics</groupId>
<artifactId>spssjavaplugin</artifactId>
<version>1.0</version>
</dependency>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment