hanyuqianye / bluebell

Automatically exported from code.google.com/p/bluebell
0 stars 1 forks source link

Generate checksum files for internal maven repository artifacts #33

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
Exists an internal Maven repository inside parent pom /lib folder used to 
store artifacts not found in any other existing Maven repository.

These artifacts includes pom file, binary file and sometimes sources, but not 
the checksum files. This causes an annoying warning while building.

Original issue reported on code.google.com by julioarg...@gmail.com on 18 May 2010 at 7:56

GoogleCodeExporter commented 9 years ago
Generated md5 y sha1 files using maven install plugin as tool following 
instructions 
on http://maven.apache.org/plugins/maven-install-plugin/examples/installing-
checksums.html.

The order for pom files was:
P:\Bluebell\05-Construccion\Bluebell\trunk\bluebell-richclient>mvn 
install:install-
file -DcreateChecksum=true -DgroupId=foo -DartifactId=foo -Dversion=foo -
Dpackaging=pom -Dfile=trident-1.2-SNAPSHOT.pom

The order for jar files was:
P:\Bluebell\05-Construccion\Bluebell\trunk\bluebell-richclient>mvn 
install:install-
file -DcreateChecksum=true -DgroupId=foo -DartifactId=foo -Dversion=foo -
Dpackaging=jar -Dfile=trident-1.2-SNAPSHOT.jar

The .md5 and .sha1 files are generated into ".m2/repository/foo/foo/foo/"

Original comment by julioarg...@gmail.com on 18 May 2010 at 7:26