WildenChen / java-universal-tween-engine

Automatically exported from code.google.com/p/java-universal-tween-engine
1 stars 0 forks source link

Maven artifact #19

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
It wouldn't be such a big deal if maven could link to local (or remote) jars, 
but that is only possible when dependency scope is set to system.

The current workaround is to manually install the jar into the local repository:

mvn install:install-file \
  -DgroupId=com.aurelienribon \
  -DartifactId=tween-engine-api \
  -Dpackaging=jar \
  -Dversion=6.3.3 \
  -Dfile=tween-engine-api.jar \
  -DgeneratePom=true

This complicates project management when working in teams or on multiple 
computers.

Original issue reported on code.google.com by junk...@angelhill.net on 20 Mar 2013 at 12:27

GoogleCodeExporter commented 9 years ago
Seconded; or alternatively, please expose the javadoc as a .jar in the 
downloads section.

Original comment by Lume...@gmail.com on 20 May 2013 at 11:53

GoogleCodeExporter commented 9 years ago
It should be enough for local development but with continuous integration 
systems you need a central repository for dependencies

Original comment by simone.m...@gmail.com on 2 Jun 2014 at 8:44