able-example
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>net.lightbody.able</groupId>
<artifactId>able-example</artifactId>
<version>1.0-beta-2</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>
<artifactId>able-example</artifactId>
<name>Able Example</name>
<packaging>jar</packaging>
<parent>
<groupId>net.lightbody.able</groupId>
<artifactId>able</artifactId>
<version>1.0-beta-2</version>
</parent>
<profiles>
<profile>
<id>heroku</id>
<activation>
<property>
<name>maven.repo.local</name>
<value>/app/tmp/repo.git/.cache/.m2/repository</value>
</property>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>appassembler-maven-plugin</artifactId>
<version>1.1.1</version>
<configuration>
<repositoryLayout>flat</repositoryLayout>
<repositoryName>lib</repositoryName>
<programs>
<program>
<mainClass>net.lightbody.able.example.Main</mainClass>
<name>able-example</name>
</program>
</programs>
</configuration>
<executions>
<execution>
<id>make-assembly</id>
<phase>install</phase>
<goals>
<goal>assemble</goal>
</goals>
</execution>
</executions>
</plugin>
<!--<plugin>-->
<!--<artifactId>maven-assembly-plugin</artifactId>-->
<!--<configuration>-->
<!--<descriptors>-->
<!--<descriptor>src/main/assembly.xml</descriptor>-->
<!--</descriptors>-->
<!--</configuration>-->
<!--<executions>-->
<!--<execution>-->
<!--<id>make-assembly</id>-->
<!--<phase>install</phase>-->
<!--<goals>-->
<!--<goal>single</goal>-->
<!--</goals>-->
<!--</execution>-->
<!--</executions>-->
<!--</plugin>-->
</plugins>
</build>
</profile>
</profiles>
<dependencies>
<dependency>
<groupId>net.lightbody.able</groupId>
<artifactId>able-core</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>net.lightbody.able</groupId>
<artifactId>able-loggly</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>net.lightbody.able</groupId>
<artifactId>able-jetty</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>net.lightbody.able</groupId>
<artifactId>able-mongo</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>net.lightbody.able</groupId>
<artifactId>able-hibernate</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>net.lightbody.able</groupId>
<artifactId>able-stripes</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>net.lightbody.able</groupId>
<artifactId>able-freemarker</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.google.sitebricks</groupId>
<artifactId>sitebricks</artifactId>
</dependency>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>5.1.18</version>
</dependency>
</dependencies>
</project>