Skip to content

Commit

Permalink
[Maven] Do not install third party jar in local repo but use system s…
Browse files Browse the repository at this point in the history
…cope instand.
  • Loading branch information
Ignishky committed Jun 8, 2017
1 parent e927703 commit e309ebc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 8 deletions.
8 changes: 0 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,5 @@
# How to install

## Add third party libs to in the local maven repo

In order, for the project to build, run this command in the project root directory :

```bash
mvn install:install-file -Dfile=./libs/osmonaut-1.0.2.4.jar -DgroupId=net.morbz -DartifactId=osmonaut -Dversion=1.0.2.4 -Dpackaging=jar
```

## Compile source code

This project use maven in order to compile source file :
Expand Down
2 changes: 2 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -161,6 +161,8 @@
<groupId>net.morbz</groupId>
<artifactId>osmonaut</artifactId>
<version>1.0.2.4</version>
<scope>system</scope>
<systemPath>${project.basedir}/libs/osmonaut-1.0.2.4.jar</systemPath>
</dependency>
<dependency>
<groupId>org.geotools</groupId>
Expand Down

0 comments on commit e309ebc

Please sign in to comment.