Its manual as just a subset of the artifacts go into the jboss repo. Here is a sh script I
have used to copy the artifacts from the maven repo into the jboss repo microcontainer/lib
directory for a release.
| [starksm@succubus jbossmc]$ cat ../install.sh
| #!/bin/sh
|
| VER=2.0.0.Beta10
|
M2=/home/svn/repository.jboss.com/maven2/org/jboss/microcontainer
|
JBOSS=/home/svn/repository.jboss.com/jboss/microcontainer
| JARS="jboss-aop-mc-int jboss-classloader jboss-container jboss-container-metadata
jboss-container-metadata-spi jboss-dependency jboss-deployers-client
jboss-deployers-client-spi jboss-deployers-core jboss-deployers-core-spi
jboss-deployers-impl jboss-deployers-spi jboss-deployers-structure-spi jboss-deployers-vfs
jboss-deployers-vfs-spi jboss-kernel jboss-managed jboss-metatype"
|
| mkdir $JBOSS/$VER
| mkdir $JBOSS/$VER/lib
| for j in $JARS
| do
| jar=`find $M2 -name $j-${VER}.jar`
| if [ -n $jar ]
| then
| cp $jar $JBOSS/$VER/lib/$j.jar
| fi
| sjar=`find $M2 -name $j-${VER}-sources.jar`
| if [ -n $sjar ]
| then
| cp $sjar $JBOSS/$VER/lib/${j}-sources.jar
| fi
| done
|
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4123190#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...