scriptaculous-examples
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.wicketstuff</groupId> <artifactId>scriptaculous-examples</artifactId> <version>1.4.21</version> </dependency>
<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> <parent> <groupId>org.wicketstuff</groupId> <artifactId>scriptaculous-parent</artifactId> <version>1.4.21</version> </parent> <artifactId>scriptaculous-examples</artifactId> <packaging>war</packaging> <name>Scriptaculous Integration - Examples</name> <description> <![CDATA[The Wicket Contrib Scriptaculous project showcases one possible way to integrate the scriptaculous ajax framework.]]> </description> <organization> <name>Wicket Stuff</name> <url>http://wicket-stuff.sourceforge.net</url> </organization> <inceptionYear>2006</inceptionYear> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <name>Ryan Sonnek</name> <id>wireframe6464</id> <email>wireframe6464 at users.sourceforge.net</email> </developer> <developer> <name>Nino Martinez</name> <id>nmwael</id> <email>nmwael at users.sourceforge.net</email> </developer> </developers> <dependencies> <dependency> <groupId>org.wicketstuff</groupId> <artifactId>scriptaculous</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-log4j12</artifactId> </dependency> <dependency> <groupId>log4j</groupId> <artifactId>log4j</artifactId> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.mortbay.jetty</groupId> <artifactId>maven-jetty-plugin</artifactId> <version>6.1.5</version> <configuration> <webAppSourceDirectory>${basedir}/src/main/webapp</webAppSourceDirectory> <scanIntervalSeconds>10</scanIntervalSeconds> <contextPath>/</contextPath> </configuration> </plugin> </plugins> </build> </project>