yui
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.wicketstuff</groupId> <artifactId>yui</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>yui-parent</artifactId> <version>1.4.21</version> </parent> <artifactId>yui</artifactId> <packaging>jar</packaging> <name>Wicket YUI Integration</name> <description> Wicket Components for the Yahoo User Interface (YUI) library. </description> <inceptionYear>2006</inceptionYear> <organization> <name>Wicket developers</name> <url>http://www.wicketstuff.org</url> </organization> <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>Eelco Hillenius</name> <id>Eelco</id> <email>eelco12 at users.sf.net</email> </developer> <developer> <name>Joshua Lim</name> <id>josh_lim</id> <email> at users.sf.net</email> </developer> </developers> <dependencies> <dependency> <groupId>org.apache.wicket</groupId> <artifactId>wicket-velocity</artifactId> </dependency> <dependency> <groupId>org.apache.wicket</groupId> <artifactId>wicket-extensions</artifactId> </dependency> <dependency> <groupId>javax.servlet</groupId> <artifactId>servlet-api</artifactId> <version>2.5</version> <scope>provided</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> </dependency> <dependency> <groupId>org.devlib.schmidt</groupId> <artifactId>imageinfo</artifactId> <version>1.7</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <scope>compile</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-log4j12</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <!-- TODO - see if this was what was causing TeamCity failure and if so, fix it. Commenting out now to see if error is resolved. IS IT EVEN NEEDED? <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-assembly-plugin</artifactId> <configuration> <descriptor>src/assembly/bin.xml</descriptor> <finalName>${artifactId}-${version}</finalName> <outputDirectory>target/distributions</outputDirectory> <workDirectory>target/assembly/work</workDirectory> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-assembly-plugin</artifactId> <version>2.2.2</version> </plugin> --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-site-plugin</artifactId> <configuration> <templateDirectory>src/site/template/</templateDirectory> <template>wicket-site.vm</template> </configuration> </plugin> </plugins> </build> </project>