Skip to content

Commit

Permalink
Merge pull request #15 from wireapp/WPB-12040
Browse files Browse the repository at this point in the history
feat(implement-mls-support) #WPB-12040

* Update Helium to version 1.5.0
* Update Xenon to version 1.7.0
* Update to JDK 17
* Implement MLS support from Xenon API interface methods
* Add respective request and response classes to its own packages
* Add proper helper function on verifying response status codes
* Throw exception when getting conversation group info fails
* Update java-version to 17 in maven-release
* Add deprecated annotation on _Service class
* Remove _Conv class in API.java as Conversation (from Xenon) can be used
* Adjusted last Xenon changes on receiving members (from Member to Payload.Member)
  • Loading branch information
alexandreferris authored Nov 11, 2024
2 parents 5a2020a + b635485 commit de732b9
Show file tree
Hide file tree
Showing 12 changed files with 465 additions and 46 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/maven-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,15 +51,15 @@ jobs:
- name: Set up JDK
uses: actions/setup-java@v1
with:
java-version: 11
java-version: 17

- name: Build with Maven
run: mvn -DskipTests package

- name: Set up Apache Maven Central
uses: actions/setup-java@v1
with: # running setup-java again overwrites the settings.xml
java-version: 11
java-version: 17
server-id: ossrh
server-username: OSSRH_USERNAME
server-password: OSSRH_PASSWORD
Expand Down
10 changes: 5 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>com.wire</groupId>
<artifactId>helium</artifactId>
<version>1.4.1</version>
<version>1.5.0</version>

<name>Helium</name>
<description>User mode for Wire Bots</description>
Expand Down Expand Up @@ -53,8 +53,8 @@
</distributionManagement>

<properties>
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>

Expand All @@ -65,7 +65,7 @@
<dependency>
<groupId>com.wire</groupId>
<artifactId>xenon</artifactId>
<version>1.6.2</version>
<version>1.7.0</version>
</dependency>
<dependency>
<groupId>jakarta.ws.rs</groupId>
Expand Down Expand Up @@ -156,7 +156,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.2.0</version>
<version>3.5.0</version>
<executions>
<execution>
<id>attach-javadocs</id>
Expand Down
Loading

0 comments on commit de732b9

Please sign in to comment.