-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move JMAPExtensionConfiguration into its own module
- Because it does not belong to the API module, but we want to share it with other modules that need it e.g. cassandra-jmap-extensions
- Loading branch information
1 parent
3c39b47
commit 7a5c52a
Showing
7 changed files
with
87 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 changes: 2 additions & 1 deletion
3
...ions/src/main/scala/com/linagora/tmail/james/jmap/json/CalendarEventReplySerializer.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 changes: 2 additions & 1 deletion
3
.../src/test/scala/com/linagora/tmail/james/jmap/json/CalendarEventReplySerializerTest.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
<?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>com.linagora.tmail</groupId> | ||
<artifactId>tmail-backend</artifactId> | ||
<version>1.0.0-SNAPSHOT</version> | ||
<relativePath>../../pom.xml</relativePath> | ||
</parent> | ||
|
||
<artifactId>jmap-extensions-configuration</artifactId> | ||
<name>Twake Mail :: JMAP :: Extensions :: Configuration</name> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>${james.groupId}</groupId> | ||
<artifactId>james-server-jmap-rfc-8621</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>${james.groupId}</groupId> | ||
<artifactId>james-server-data-jmap</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>${james.groupId}</groupId> | ||
<artifactId>james-server-guice-configuration</artifactId> | ||
</dependency> | ||
</dependencies> | ||
<build> | ||
<plugins> | ||
<plugin> | ||
<groupId>net.alchim31.maven</groupId> | ||
<artifactId>scala-maven-plugin</artifactId> | ||
</plugin> | ||
<plugin> | ||
<groupId>io.github.evis</groupId> | ||
<artifactId>scalafix-maven-plugin_2.13</artifactId> | ||
<configuration> | ||
<config>${project.parent.parent.basedir}/.scalafix.conf</config> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
</project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters