We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bf64e99 commit 92ed5ffCopy full SHA for 92ed5ff
README.md
@@ -61,3 +61,25 @@ Clone from the GitHub repository
61
mvn package
62
```
63
64
+## Use snapshots
65
+
66
+Add the Maven repository for the OpenAPI workflow parser snapshots:
67
+```xml
68
+ <repositories>
69
+ <repository>
70
+ <id>github</id>
71
+ <url>https://maven.pkg.github.com/API-Flows/openapi-workflow-parser</url>
72
+ <snapshots>
73
+ <enabled>true</enabled>
74
+ </snapshots>
75
+ </repository>
76
+ </repositories>
77
+```
78
+Add the SNAPSHOT dependency ([check latest](pom.xml) available) in your POM file:
79
80
+ <dependency>
81
+ <groupId>com.api-flows</groupId>
82
+ <artifactId>openapi-workflow-parser</artifactId>
83
+ <version>0.0.2-SNAPSHOT</version>
84
+ </dependency>
85
0 commit comments