Skip to content

Commit 6ba5eca

Browse files
committed
Merge branch 'master' of github.com:wumpz/JSqlParser.git
2 parents 4369929 + c438fdd commit 6ba5eca

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

README.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,3 +48,28 @@ As the project is a Maven project, building is rather simple by running:
4848

4949
This will produce the jsqlparser-VERSION.jar file in the target/ directory.
5050

51+
## Maven Repository
52+
53+
At the moment I created a github maven repository. Starting from now I will deploy there.
54+
To use it this is the repository configuration:
55+
56+
```xml
57+
<repositories>
58+
<repository>
59+
<id>jsqlparser-snapshots</id>
60+
<snapshots>
61+
<enabled>true</enabled>
62+
</snapshots>
63+
<url>https://raw.github.com/wumpz/maven_repo/master/snapshots</url>
64+
</repository>
65+
</repositories>
66+
```
67+
68+
And this is the dependency declaration in your pom:
69+
```xml
70+
<dependency>
71+
<groupId>net.sf.jsqlparser</groupId>
72+
<artifactId>jsqlparser</artifactId>
73+
<version>0.8.1-SNAPSHOT</version>
74+
</dependency>
75+
```

0 commit comments

Comments
 (0)