Hi, I am trying build jetspeed through maven plugin.
I have specify following for mave.repo.remote maven.repo.remote = http://www.bluesunrise.com/maven,http://www.ibiblio.org/maven,http://dist.codehaus.org,http://cvs.apache.org/repository,http://ibiblio.lsu.edu/main/maven,http://mirrors.sunsite.dk/maven But I am maven war:install It is giving me error , Attempting to download portals-bridges-common-.jar. Error retrieving artifact from [http://cvs.apache.org/repository/org.apache.port als.bridges/jars/portals-bridges-common-.jar]: java.io.IOException: Unknown erro r downloading; status code was: 302 WARNING: Failed to download portals-bridges-common-.jar. Attempting to download portals-bridges-velocity-.jar. Error retrieving artifact from [http://cvs.apache.org/repository/org.apache.port als.bridges/jars/portals-bridges-velocity-.jar]: java.io.IOException: Unknown er ror downloading; status code was: 302 WARNING: Failed to download portals-bridges-velocity-.jar. Attempting to download derby-.jar. Error retrieving artifact from [http://cvs.apache.org/repository/org.apache.derb y/jars/derby-.jar]: java.io.IOException: Unknown error downloading; status code was: 302 WARNING: Failed to download derby-.jar. The build cannot continue because of the following unsatisfied dependencies: portals-bridges-common-.jar portals-bridges-velocity-.jar derby-.jar So is there anyother resource other than http://cvs.apache.org/repository . Mikko Wuokko wrote: > > Hi. > > You have to create that your self. You can copy build.properties.sample > from the source root or you can use the one I have been using. You > probably have to modify both of them to match your system and settings. > > Change the ones in BOLD. > --- build.properties---> > > # --------------------------------------------------- > # Values to be customised > # --------------------------------------------------- > > # Use / and NOT \ even under Windows. Paths cannot have > # spaces so C:/Program Files/Tomcat won't work and neither > # will "C:/Program Files/Tomcat" so NO quotes either. > # It is also a good practise to use > > # Full path to you eclipse workspace and jetspeed project > # e.g. the path you checked out this project > basedir=PATH_TO_YOUR_JETSPEED_PROJECT_SOURCE > > # Change this to match your tomcat installation folder > # This is the usual place under linux. For Windows it > # could (or should) be c:/tomcat > > tomcat.home=PATH_TO_YOUR_TOMCAT > > # MySQL host > # Change only if you know why and how. > # Preferably use a local MySQL instance. > # MySQL must have root account with password root > # (change from pre-configured section if other) > # and tables j2, j2test > > mysql.host=localhost > > # --------------------------------------------------- > # Pre configured values > # --------------------------------------------------- > > # Repositories for maven > maven.repo.remote = http://www.bluesunrise.com/maven, > http://www.ibiblio.org/maven,http://ibiblio.lsu.edu/main/maven, > http://dist.codehaus.org, http://cvs.apache.org/repository, > http://mirrors.sunsite.dk/maven > > # Set and uncomment these if you are behind a proxy > #maven.proxy.host=PROXY_HOST > #maven.proxy.port=PROXY_PORT > > # Change these to match you mysql user > mysql.user=USERNAME > mysql.password=PASSWORD > > # > ------------------------------------------------------------------------------ > # JETSPEED 2 > # > ------------------------------------------------------------------------------ > > org.apache.jetspeed.project.home=${basedir} > > org.apache.jetspeed.server.home=${tomcat.home} > org.apache.jetspeed.server.shared=${org.apache.jetspeed.server.home}/shared/lib/ > org.apache.jetspeed.deploy.war.dir=${org.apache.jetspeed.server.home}/webapps/ > org.apache.jetspeed.services.autodeployment.user=j2deployer > org.apache.jetspeed.services.autodeployment.password=j2deployer > org.apache.jetspeed.catalina.version.major=5.5 > > # configure MySQL TEST DB > > # Create appropriate databases and users # > > org.apache.jetspeed.test.database.default.name=mysql > org.apache.jetspeed.test.database.url=jdbc:mysql://${mysql.host}/j2test?useServerPrepStmts=false > org.apache.jetspeed.test.database.driver=com.mysql.jdbc.Driver > org.apache.jetspeed.test.database.user=${mysql.user} > org.apache.jetspeed.test.database.password=${mysql.password} > org.apache.jetspeed.test.jdbc.drivers.path=PATH_TO_MYSQL_CONNECTOR_JAR > > # configure MySQL Production DB > > # Create appropriate databases and users # > > org.apache.jetspeed.production.database.default.name=mysql > org.apache.jetspeed.production.database.url=jdbc:mysql://${mysql.host}/j2?useServerPrepStmts=false > org.apache.jetspeed.production.database.driver=com.mysql.jdbc.Driver > org.apache.jetspeed.production.database.user=${mysql.user} > org.apache.jetspeed.production.database.password=${mysql.password} > org.apache.jetspeed.production.jdbc.drivers.path=PATH_TO_MYSQL_CONNECTOR_JAR > > <--- build.properties--- > > hiren wrote: >> Hi I new to jetspeed. >> >> I am trying to build portal. >> >> I have installed Jetspped 2. >> >> But $Home\build.properties file is not created. >> >> Can wht I have to do so tht build.properties is created. >> >> >> >> > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > > > -- View this message in context: http://www.nabble.com/Jetspeed-tf2727467.html#a7620898 Sent from the Jetspeed - User mailing list archive at Nabble.com. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
