Home / OldFiles
Name Modified Size InfoDownloads / Week
Parent folder
scampi-web-1.0-README.txt 2008-09-30 1.6 kB
scampi-worker-1.0-README.txt 2008-09-30 716 Bytes
README.txt 2008-09-30 1.6 kB
scampi-worker-1.0-src.tar.bz2 2008-09-30 33.8 kB
scampi-worker-1.0-full.tar.bz2 2008-09-30 84.3 MB
scampi-worker-1.0-doc.tar.bz2 2008-09-30 48.6 kB
scampi-web-1.0-src.tar.bz2 2008-09-30 1.1 MB
scampi-web-1.0-full.tar.bz2 2008-09-30 6.5 MB
scampi-web-1.0-doc.tar.bz2 2008-09-30 103.1 kB
Totals: 9 Items   92.0 MB 0
SCAMPI-Web version 1.0
(c) 2007-2008 Susanne Pfeifer <scampi@susanne-pfeifer.de>

This program is Free Software licensed under the terms of the GNU GPL
v3. Please see LICENSE.txt for further information.

== Building SCAMPI-Web ==

SCAMPi-Web is provided as Maven2 [1] project. To build a WAR
file. Just type
  mvn package
in the project's root directory.

The provided pom.xml also contains information for the Tomcat
plugin[2] , which can be used to deploy new created WAR archives to a
given Tomcat server. Therefor you have to add a <server> entry named
'scampiweb' to your Maven 2 configuration in the settings.xml file. An
example can be found below. The URI of the Tomcat Manager can be
adjusted within the pom.xml configuration file. If everything is set,
you can use 
  mvn tomcat:deploy 
to build and deploy SCAMPI-Web to your servlet container.

 [1] http://maven.apache.org
 [2] http://mojo.codehaus.org/tomcat-maven-plugin/

=== Example settings.xml ===
<settings 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/xsd/settings-1.0.0.xsd">
  <localRepository/>
  <interactiveMode/>
  <usePluginRegistry/>
  <offline/>
  <pluginGroups/>

  <servers>
        <server>
                <id>scampiweb</id>
                <username>admin</username>
                <password>secret</password>
        </server>
  </servers>

  <mirrors/>
  <proxies/>
  <profiles/>
  <activeProfiles/>
</settings>
Source: scampi-web-1.0-README.txt, updated 2008-09-30