aroma
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>tech.aroma</groupId> <artifactId>aroma</artifactId> <version>3.3</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> <groupId>tech.aroma</groupId> <artifactId>aroma</artifactId> <version>3.3</version> <name>${project.artifactId}</name> <packaging>pom</packaging> <url>https://github.com/RedRoma/aroma</url> <description> COMMAND your Software. Aroma allows two-way communication between Developers/Product Owners and their Live Software. </description> <organization> <name>RedRoma, Inc.</name> <url>http://RedRoma.tech/</url> </organization> <developers> <developer> <name>Wellington Moreno</name> <email>wellington@redroma.tech</email> <id>SirWellington</id> <organizationUrl>https://github.com/RedRoma</organizationUrl> <roles> <role>owner</role> <role>developer</role> </roles> </developer> </developers> <licenses> <license> <name>Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <issueManagement> <system>GitHub Issues</system> <url>https://github.com/RedRoma/aroma/issues</url> </issueManagement> <scm> <connection>scm:git:git@github.com:RedRoma/aroma.git</connection> <developerConnection>scm:git:git@github.com:RedRoma/aroma.git</developerConnection> <url>git@github.com:RedRoma/aroma.git</url> </scm> <inceptionYear>2015</inceptionYear> <prerequisites> <maven>3.0.3</maven> </prerequisites> <!-- END OF POM METADATA --> <properties> <!--Java Compiler Properties--> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <maven.compiler.source>1.8</maven.compiler.source> <maven.compiler.target>1.8</maven.compiler.target> <kotlin.version>1.3.21</kotlin.version> </properties> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>ossrh</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> <repositories> <!--SNAPSHOT REPOSITORY--> <repository> <id>ossrh-snapshot</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </repository> </repositories> <dependencyManagement> <dependencies> <!--=======================--> <!--ALCHEMY--> <!--=======================--> <dependency> <groupId>tech.sirwellington.alchemy</groupId> <artifactId>alchemy-annotations</artifactId> <version>2.2</version> </dependency> <dependency> <groupId>tech.sirwellington.alchemy</groupId> <artifactId>alchemy-arguments</artifactId> <version>2.3</version> </dependency> <dependency> <groupId>tech.sirwellington.alchemy</groupId> <artifactId>alchemy-collections</artifactId> <version>2.1</version> </dependency> <dependency> <groupId>tech.sirwellington.alchemy</groupId> <artifactId>alchemy-generator</artifactId> <version>2.4.1</version> <scope>test</scope> </dependency> <dependency> <groupId>tech.sirwellington.alchemy</groupId> <artifactId>alchemy-http</artifactId> <version>3.4.1</version> </dependency> <dependency> <groupId>tech.sirwellington.alchemy</groupId> <artifactId>alchemy-http-mock</artifactId> <version>3.4</version> <scope>test</scope> </dependency> <dependency> <groupId>tech.sirwellington.alchemy</groupId> <artifactId>alchemy-thrift</artifactId> <version>2.1</version> </dependency> <dependency> <groupId>tech.sirwellington.alchemy</groupId> <artifactId>alchemy-test</artifactId> <version>2.6.1</version> <scope>test</scope> </dependency> <!--=======================--> <!--KOTLIN--> <!--=======================--> <dependency> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-stdlib-jdk8</artifactId> <version>${kotlin.version}</version> </dependency> <dependency> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-stdlib-jdk7</artifactId> <version>${kotlin.version}</version> </dependency> <dependency> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-reflect</artifactId> <version>${kotlin.version}</version> </dependency> <!--=======================--> <!--LOGGING--> <!--=======================--> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>1.7.25</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-simple</artifactId> <version>1.7.25</version> <scope>test</scope> </dependency> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> <version>1.2.3</version> </dependency> <!--Disables Logging during unit testing--> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-nop</artifactId> <version>1.7.25</version> <scope>test</scope> </dependency> <!--=======================--> <!--APACHE HTTP--> <!--=======================--> <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpclient</artifactId> <version>4.5.8</version> </dependency> <!--=======================--> <!--GUAVA--> <!--=======================--> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> <version>22.0</version> </dependency> <!--=======================--> <!--GSON--> <!--=======================--> <dependency> <groupId>com.google.code.gson</groupId> <artifactId>gson</artifactId> <version>2.8.5</version> </dependency> <!--=======================--> <!--GUICE--> <!--=======================--> <dependency> <groupId>com.google.inject</groupId> <artifactId>guice</artifactId> <version>4.2.2</version> </dependency> <!--=======================--> <!--DECORATOR LIBRARY--> <!--=======================--> <dependency> <groupId>tech.sirwellington.decorice</groupId> <artifactId>decorice</artifactId> <version>1.0</version> </dependency> <!--=======================--> <!--THRIFT--> <!--=======================--> <dependency> <groupId>org.apache.thrift</groupId> <artifactId>libthrift</artifactId> <version>0.12.0</version> </dependency> <!--=======================--> <!--JASYPT (Encryption)--> <!--=======================--> <dependency> <groupId>org.jasypt</groupId> <artifactId>jasypt</artifactId> <version>1.9.2</version> </dependency> <!--=======================--> <!--CASSANDRA--> <!--=======================--> <dependency> <groupId>com.datastax.cassandra</groupId> <artifactId>cassandra-driver-core</artifactId> <version>3.7.1</version> </dependency> <dependency> <groupId>com.datastax.cassandra</groupId> <artifactId>cassandra-driver-mapping</artifactId> <version>3.7.1</version> </dependency> <!--=======================--> <!--SQL--> <!--=======================--> <!--POSTGRESQL--> <dependency> <groupId>org.postgresql</groupId> <artifactId>postgresql</artifactId> <version>42.2.5</version> </dependency> <!--SPRING JDBC TEMPLATES--> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-jdbc</artifactId> <version>5.1.6.RELEASE</version> </dependency> <!-- C3P0 CONNECTION POOLING--> <dependency> <groupId>com.mchange</groupId> <artifactId>c3p0</artifactId> <version>0.9.5.4</version> </dependency> <!--=======================--> <!--THUMBNAIL GENERATION--> <!--=======================--> <dependency> <groupId>net.coobird</groupId> <artifactId>thumbnailator</artifactId> <version>0.4.8</version> </dependency> <!--=======================--> <!--COMMAND LINE OPTIONS--> <!--=======================--> <dependency> <groupId>net.sf.jopt-simple</groupId> <artifactId>jopt-simple</artifactId> <version>5.0.4</version> </dependency> <!--=======================--> <!--UNIT TESTING--> <!--=======================--> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.12</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <version>2.26.0</version> <scope>test</scope> </dependency> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-library</artifactId> <version>1.3</version> <scope>test</scope> </dependency> <!--KOTLIN UNIT TESTS--> <dependency> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-test</artifactId> <version>${kotlin.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-test-junit</artifactId> <version>${kotlin.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>com.natpryce</groupId> <artifactId>hamkrest</artifactId> <version>1.7.0.0</version> <scope>test</scope> </dependency> <!--KOTLIN MOCKITO INTEROPERABILITY--> <dependency> <groupId>com.nhaarman</groupId> <artifactId>mockito-kotlin</artifactId> <version>1.6.0</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>kotlin-stdlib</artifactId> <groupId>org.jetbrains.kotlin</groupId> </exclusion> </exclusions> </dependency> </dependencies> </dependencyManagement> <build> <plugins> <!--DOWNLOAD JAVADOC STYLESHEET--> <plugin> <groupId>com.googlecode.maven-download-plugin</groupId> <artifactId>download-maven-plugin</artifactId> <version>1.3.0</version> <executions> <execution> <id>download-javadoc-stylesheet</id> <phase>generate-resources</phase> <goals> <goal>wget</goal> </goals> <configuration> <url>https://raw.githubusercontent.com/RedRoma/aroma/develop/javadoc-style-sheet.css</url> <outputDirectory>${project.build.directory}/resources/css</outputDirectory> <failOnError>false</failOnError> </configuration> </execution> </executions> </plugin> <!--JAVADOC--> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.1.0</version> <configuration> <failOnError>false</failOnError> <linksource>true</linksource> <links> <link>http://docs.oracle.com/javase/8/docs/api/</link> </links> <stylesheetfile>${project.build.directory}/resources/css/javadoc-style-sheet.css</stylesheetfile> </configuration> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <!--SOURCES--> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.0.1</version> <executions> <execution> <id>attach-sources</id> <phase>verify</phase> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <!--CODE COVERAGE--> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>0.8.3</version> <configuration> <excludes> <!--Exclude Exceptions--> <exclude>**/*Exception.*</exclude> </excludes> </configuration> <executions> <execution> <id>default-prepare-agent</id> <goals> <goal>prepare-agent</goal> </goals> </execution> <execution> <id>default-report</id> <phase>prepare-package</phase> <goals> <goal>report</goal> </goals> </execution> <execution> <id>default-check</id> <goals> <goal>check</goal> </goals> <configuration> <rules> </rules> </configuration> </execution> </executions> </plugin> <!--KOTLIN--> <plugin> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-maven-plugin</artifactId> <version>${kotlin.version}</version> <configuration> <jvmTarget>1.8</jvmTarget> </configuration> <executions> <execution> <id>compile</id> <phase>process-sources</phase> <goals> <goal>compile</goal> </goals> <configuration> <sourceDirs> <sourceDir>${project.basedir}/src/main/java</sourceDir> </sourceDirs> </configuration> </execution> <execution> <id>test-compile</id> <goals> <goal>test-compile</goal> </goals> <configuration> <sourceDirs> <sourceDir>${project.basedir}/src/test/java</sourceDir> </sourceDirs> </configuration> </execution> </executions> </plugin> </plugins> <pluginManagement> <plugins> <!--JAR PLUGIN--> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>3.1.1</version> </plugin> <!--DEPENDENCY PLUGIN--> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> <version>3.0.1</version> <executions> <execution> <id>copy-dependencies</id> <phase>prepare-package</phase> <goals> <goal>copy-dependencies</goal> </goals> <configuration> <outputDirectory>${project.build.directory}/lib</outputDirectory> <overWriteReleases>true</overWriteReleases> <overWriteSnapshots>true</overWriteSnapshots> <overWriteIfNewer>true</overWriteIfNewer> <!--Set This to enabled Timestamped-Snapshot jars--> <!--<useBaseVersion>false</useBaseVersion>--> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-assembly-plugin</artifactId> <version>3.1.1</version> <configuration> <descriptors> <descriptor>${project.basedir}/src/main/assembly/assembly.xml</descriptor> </descriptors> </configuration> <executions> <execution> <phase>package</phase> <goals> <goal>single</goal> </goals> </execution> </executions> </plugin> </plugins> </pluginManagement> </build> <profiles> <profile> <id>release</id> <build> <plugins> <!--CODE SIGNING--> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.6</version> <configuration> <excludes> <exclude>tech.sirwellington.alchemy.thrift.*</exclude> <exclude>tech.sirwellington.alchemy.thrift.*</exclude> <exclude>**/*Exception.*</exclude> </excludes> <gpgArguments> <arg>--pinentry-mode</arg> <arg>loopback</arg> </gpgArguments> </configuration> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <!--RELEASE PLUGIN--> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.8</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> <!--INTEGRATION TESTING ON RELEASE--> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-failsafe-plugin</artifactId> <version>2.22.1</version> <executions> <execution> <goals> <goal>integration-test</goal> <goal>verify</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>