Defines the Data Interfaces and Operations used by the various Aroma Services.
These Data Operations are used by Business Logic living within the various Aroma Services.
For example, the Application Service needs the MessageRepository to store messages, and the Aroma Service needs it to retrieve Messages.
To use, simply add the following maven dependency.
<dependency>
<groupId>tech.aroma</groupId>
<artifactId>aroma-data-operations</artifactId>
<version>2.1.2</version>
</dependency>
First add the Snapshot Repository
<repository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</repository>
<dependency>
<groupId>tech.aroma</groupId>
<artifactId>aroma-data-operations</artifactId>
<version>2.2-SNAPSHOT</version>
</dependency>