Skip to content

Commit 9f865ea

Browse files
authoredJan 23, 2018
📝 Bintray repository config
Adding the required configuration to specify the remote bintray repository
1 parent 8cdca38 commit 9f865ea

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed
 

‎README.md

+19
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,25 @@ The official version Not yet deployed to sonatype.
5252

5353
Please find the required instruction to configure [bintray.com](https://bintray.com/jsonschema-javaui/sf-java-ui/sf-java-ui) repository to your setting.xml
5454

55+
Or you can configure the repository directly in your pom.xml file:
56+
```xml
57+
// Your pom file
58+
<dependencies>...</dependencies>
59+
60+
// To be added in the pom file in order to specify the remote repo to download the library
61+
<repositories>
62+
<repository>
63+
<snapshots>
64+
<enabled>false</enabled>
65+
</snapshots>
66+
<id>bintray-jsonschema-javaui-sf-java-ui</id>
67+
<name>bintray-plugins</name>
68+
<url>https://dl.bintray.com/jsonschema-javaui/sf-java-ui</url>
69+
</repository>
70+
</repositories>
71+
72+
```
73+
5574
#### Using spring boot
5675

5776
If you a are using spring boot to develop your project, you can add the annotation below to your main spring boot class in order to run the servlet context loader to inialize the library

0 commit comments

Comments
 (0)
Please sign in to comment.