"fers" wrote : Hello,
|
| I want to let you know that I have created Maven packages for Seam 1.2.1.GA.
|
| As usually you can find it on
http://software.softeu.cz/seam/ .
|
| Petr Ferschmann
I've deployed this release in our Maven 2 repository as well, but that's on our
intranet ;-).
Here's a sample pom.xml that anyone can use for ftp deployment of the seam artifacts
to a network-accessible repository:
| <project
xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/maven-v4_0_0.xsd">
| <modelVersion>4.0.0</modelVersion>
|
| <groupId>org.jboss</groupId>
| <artifactId>jboss-seam</artifactId>
| <version>1.2.1</version>
|
| <packaging>jar</packaging>
|
| <build>
|
| <extensions>
| <extension>
| <groupId>org.apache.maven.wagon</groupId>
| <artifactId>wagon-ftp</artifactId>
| <version>1.0-alpha-6</version>
| </extension>
| </extensions>
|
| </build>
|
| </project>
|
put this pom in same directory as the seam jars then execute the following commands and
your own repository will be updated with the jars.
| mvn deploy:deploy-file -DrepositoryId=ftp-repository -DgeneratePom=true \
| -Durl=ftp://YOUR.REPO.COM -Dpackaging=jar \
| -DgroupId=org.jboss -Dversion=1.2.1 -DartifactId=jboss-seam -Dfile=jboss-seam.jar
|
| mvn deploy:deploy-file -DrepositoryId=ftp-repository -DgeneratePom=true \
| -Durl=ftp://YOUR.REPO.COM -Dpackaging=jar \
| -DgroupId=org.jboss -Dversion=1.2.1 -DartifactId=jboss-seam-debug
-Dfile=jboss-seam-debug.jar
|
| mvn deploy:deploy-file -DrepositoryId=ftp-repository -DgeneratePom=true \
| -Durl=ftp://YOUR.REPO.COM -Dpackaging=jar \
| -DgroupId=org.jboss -Dversion=1.2.1 -DartifactId=jboss-seam-pdf
-Dfile=jboss-seam-pdf.jar
|
| mvn deploy:deploy-file -DrepositoryId=ftp-repository -DgeneratePom=true \
| -Durl=ftp://YOUR.REPO.COM -Dpackaging=jar \
| -DgroupId=org.jboss -Dversion=1.2.1 -DartifactId=jboss-seam-ui
-Dfile=jboss-seam-ui.jar
|
| mvn deploy:deploy-file -DrepositoryId=ftp-repository -DgeneratePom=true \
| -Durl=ftp://YOUR.REPO.COM -Dpackaging=jar \
| -DgroupId=org.jboss -Dversion=1.2.1 -DartifactId=jboss-seam-mail
-Dfile=jboss-seam-mail.jar
|
| mvn deploy:deploy-file -DrepositoryId=ftp-repository -DgeneratePom=true \
| -Durl=ftp://YOUR.REPO.COM -Dpackaging=jar \
| -DgroupId=org.jboss -Dversion=1.2.1 -DartifactId=jboss-seam-gen
-Dfile=jboss-seam-gen.jar
|
| mvn deploy:deploy-file -DrepositoryId=ftp-repository -DgeneratePom=true \
| -Durl=ftp://YOUR.REPO.COM -Dpackaging=jar \
| -DgroupId=org.jboss -Dversion=1.2.1 -DartifactId=jboss-seam-ioc
-Dfile=jboss-seam-ioc.jar
|
| mvn deploy:deploy-file -DrepositoryId=ftp-repository -DgeneratePom=true \
| -Durl=ftp://YOUR.REPO.COM -Dpackaging=jar \
| -DgroupId=org.jboss -Dversion=1.2.1 -DartifactId=jboss-seam-remoting
-Dfile=jboss-seam-remoting.jar
|
Happy Maven 2'ing!
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4032326#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...