aroma-service
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>tech.aroma</groupId>
<artifactId>aroma-service</artifactId>
<version>2.0</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<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>tech.aroma</groupId>
<artifactId>aroma</artifactId>
<version>2.2</version>
</parent>
<artifactId>aroma-service</artifactId>
<version>2.0</version>
<name>${project.artifactId}</name>
<packaging>jar</packaging>
<url>https://github.com/RedRoma/aroma-service</url>
<description>
Part of the Aroma Project.
Simplicity is paramount.
Aroma allows two-way communication between Developers and their Applications.
COMMAND your Software with Aroma.
</description>
<issueManagement>
<system>GitHub Issues</system>
<url>https://github.com/RedRoma/aroma-service/issues</url>
</issueManagement>
<scm>
<connection>scm:git:git@github.com:RedRoma/aroma-service.git</connection>
<developerConnection>scm:git:git@github.com:RedRoma/aroma-service.git</developerConnection>
<url>git@github.com:RedRoma/aroma-service.git</url>
</scm>
<inceptionYear>2015</inceptionYear>
<prerequisites>
<maven>3.0.3</maven>
</prerequisites>
<!-- END OF POM METADATA -->
<dependencies>
<!--=======================-->
<!--TEST DEPENDENCIES-->
<!--=======================-->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-library</artifactId>
</dependency>
<dependency>
<groupId>tech.sirwellington.alchemy</groupId>
<artifactId>alchemy-test</artifactId>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-nop</artifactId>
</dependency>
<!--=======================-->
<!--ALCHEMY-->
<!--=======================-->
<dependency>
<groupId>tech.sirwellington.alchemy</groupId>
<artifactId>alchemy-annotations</artifactId>
</dependency>
<dependency>
<groupId>tech.sirwellington.alchemy</groupId>
<artifactId>alchemy-collections</artifactId>
</dependency>
<dependency>
<groupId>tech.sirwellington.alchemy</groupId>
<artifactId>alchemy-generator</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>tech.sirwellington.alchemy</groupId>
<artifactId>alchemy-http</artifactId>
</dependency>
<dependency>
<groupId>tech.sirwellington.alchemy</groupId>
<artifactId>alchemy-thrift</artifactId>
</dependency>
<!--=======================-->
<!--AROMA-->
<!--=======================-->
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>aroma-thrift</artifactId>
<version>2.0.2</version>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>aroma-thrift-generators</artifactId>
<version>2.0.1</version>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>aroma-data-operations</artifactId>
<version>2.1</version>
</dependency>
<!--=======================-->
<!--GUAVA-->
<!--=======================-->
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
</dependency>
<!--=======================-->
<!--GUICE-->
<!--=======================-->
<dependency>
<groupId>com.google.inject</groupId>
<artifactId>guice</artifactId>
</dependency>
<!--Guice Decoration Library-->
<dependency>
<groupId>tech.sirwellington.decorice</groupId>
<artifactId>decorice</artifactId>
</dependency>
<!--=======================-->
<!--ENCRYPTION-->
<!--=======================-->
<dependency>
<groupId>org.jasypt</groupId>
<artifactId>jasypt</artifactId>
</dependency>
<!--=======================-->
<!--THUMBNAIL GENERATION-->
<!--=======================-->
<dependency>
<groupId>net.coobird</groupId>
<artifactId>thumbnailator</artifactId>
</dependency>
<!--=======================-->
<!--LOGGING-->
<!--=======================-->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<scope>runtime</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.0.2</version>
<configuration>
<archive>
<manifest>
<addClasspath>true</addClasspath>
<classpathPrefix>lib/</classpathPrefix>
<useUniqueVersions>false</useUniqueVersions>
<mainClass>tech.aroma.service.server.TcpServer</mainClass>
</manifest>
</archive>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>