Skip to content

Instantly share code, notes, and snippets.

@ezhov-da
Last active March 10, 2019 12:14
Show Gist options
  • Save ezhov-da/e28b1fdfa51494dee241c2d3380c4c61 to your computer and use it in GitHub Desktop.
Save ezhov-da/e28b1fdfa51494dee241c2d3380c4c61 to your computer and use it in GitHub Desktop.
подключение jar файлов локально
<!--http://roufid.com/3-ways-to-add-local-jar-to-maven-project/-->
<dependency>
<groupId>com.roufid.tutorials</groupId>
<artifactId>example-app</artifactId>
<version>1.0</version>
<scope>system</scope>
<systemPath>${basedir}/lib/yourJar.jar</systemPath>
</dependency>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment