honeycomb
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>net.lucubrators</groupId>
<artifactId>honeycomb</artifactId>
<version>0.51</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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>5</version>
</parent>
<groupId>net.lucubrators</groupId>
<artifactId>honeycomb</artifactId>
<name>Honeycomb</name>
<version>0.51</version>
<packaging>pom</packaging>
<modules>
<module>honeycomb-core</module>
<module>honeycomb-xml</module>
<module>honeycomb-defaultimpl</module>
<module>honeycomb-guice</module>
<module>honeycomb-example</module>
</modules>
<issueManagement>
<system>Assembla Tickets</system>
<url>http://www.assembla.com/spaces/honeycomb/tickets</url>
</issueManagement>
<inceptionYear>2010</inceptionYear>
<description>Honeycomb is a mvc engine. Its inspired by frameworks like spring mvc or stripes, but is more component oriented. So does every part of your page (called comb) have its own model view and controller. This makes every comb completely standalone and reuseable.</description>
<url>http://www.assembla.com/spaces/honeycomb</url>
<licenses>
<license>
<name>MIT</name>
<url>http://www.opensource.org/licenses/mit-license.php</url>
</license>
</licenses>
<scm>
<connection>scm:svn:http://svn.assembla.com/svn/honeycomb/tags/honeycomb_v0.51</connection>
<developerConnection>scm:svn:http://svn.assembla.com/svn/honeycomb/tags/honeycomb_v0.51</developerConnection>
<url>http://www.assembla.com/code/honeycomb/subversion/nodes/tags/honeycomb_v0.51</url>
</scm>
<organization>
<name>lucubrators</name>
<url>http://www.lucubrators.net</url>
</organization>
<developers>
<developer>
<id>gnalFF</id>
<name>Alois Glomann</name>
<email>gnalff@lucubrators.net</email>
<organization>Lucubrators</organization>
<organizationUrl>http://www.lucubrators.net</organizationUrl>
<roles>
<role>owner</role>
<role>developer</role>
</roles>
</developer>
</developers>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
<plugin>
<groupId>com.mycila.maven-license-plugin</groupId>
<artifactId>maven-license-plugin</artifactId>
<version>1.9.0</version>
<configuration>
<header>${basedir}/MIT-License-Header.txt</header>
<strictCheck>true</strictCheck>
<properties>
<license.year>2010</license.year>
<license.owner>Alois Glomann</license.owner>
<license.email>gnalff@lucubrators.net</license.email>
</properties>
<excludes>
<excludes>**/*.checkstyle</excludes>
</excludes>
<useDefaultExcludes>true</useDefaultExcludes>
<mapping>
<tld>XML_STYLE</tld>
</mapping>
</configuration>
<executions>
<execution>
<phase>compile</phase>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>com.mycila.maven-license-plugin</groupId>
<artifactId>maven-license-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.1.2</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.7</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencyManagement>
<dependencies>
<!-- javax.servlet -->
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
<version>2.5</version>
</dependency>
<dependency>
<groupId>javax.servlet.jsp</groupId>
<artifactId>jsp-api</artifactId>
<version>2.1</version>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>jstl</artifactId>
<version>1.2</version>
</dependency>
<!-- Logging dependencies -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.6.1</version>
</dependency>
<!-- Test dependencies -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.8.2</version>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-all</artifactId>
<version>1.8.1</version>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-all</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>