Maven ( pom.xml) for RTC Plain Java API
I am looking for pom.xml for RTC Plain Java API. Do we have one?
|
2 answers
Thanks Scott,
Here is what I have done. 1) Unzip the RTC-Client-plainJavaLib-4.0.zip in a directory, 2) Created Dependency: for i in `ls -1 *jar`; do name=$i ; echo "<dependency> <groupId> $name </groupId><artifactId>$name</artifactId><version>4.0</version></dependency>";done Copied the output of above command into pom.xml. 3) Maven install for i in `ls -1 *jar`; do echo $i; mvn install:install-file -Dfile=$i -DgroupId=$i -DartifactId=$i -Dversion=4.0 -Dpackaging=jar ;done |
Hi Desh,
The Plain Java Client Libraries is not a maven project, so there is no pom.xml for them. However, if your project is using maven, you can include the libraries into your project's pom.xml. This thread describes some approaches. http://stackoverflow.com/questions/364114/can-i-add-jars-to-maven-2-build-classpath-without-installing-them Hope that helps, Scott |
Your answer
Dashboards and work items are no longer publicly available, so some links may be invalid. We now provide similar information through other means. Learn more here.