--
You received this message because you are subscribed to the Google Groups "Lift" group.
To view this discussion on the web visit https://groups.google.com/d/msg/liftweb/-/UbqDXVEv5eEJ.
To post to this group, send email to lif...@googlegroups.com.
To unsubscribe from this group, send email to liftweb+u...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/liftweb?hl=en.
mvn install:install-file -DgroupId=<your_group_name> \
-DartifactId=<your_artifact_name> \
-Dversion=<snapshot> \
-Dfile=<path_to_your_jar_file> \
-Dpackaging=jar \
-DgeneratePom=true
This will install the jar into your local repository (.m2 dir). You will
then be able to refer to it in your pom
<dependency>
<groupId>javax.comm</groupId>
<artifactId>comm</artifactId>
<version>${commVersion}</version>
</dependency>
Hope this helps
best regards
Peter Petersson
> --
> You received this message because you are subscribed to the Google
> Groups "Lift" group.
Like this
mvn install:install-file -DgroupId=<your_group_name> \
-DartifactId=<your_artifact_name> \
-Dversion=<snapshot> \
-Dfile=<path_to_your_jar_file> \
-Dpackaging=jar \
-DgeneratePom=true
This will install the jar into your local repository (.m2 dir). You will then be able to refer to it in your pom
<dependency>
<groupId>javax.comm</groupId>
<artifactId>comm</artifactId>
<version>${commVersion}</version>
</dependency>
Hope this helps
best regards
Peter Petersson
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
-Dversion=<2.0.3> \
-Dfile=<path_to_your_jar_file> \ ====>> Which Path ??
-Dpackaging=jar \ ====>> ??
-DgeneratePom=true ====>> ??