Skip to content

Commit

Permalink
Added module info
Browse files Browse the repository at this point in the history
  • Loading branch information
steely-glint committed Jan 5, 2024
1 parent 2153950 commit 4cd1baa
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 5 deletions.
15 changes: 12 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,21 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.phono</groupId>
<artifactId>srtplight</artifactId>
<version>1.1.10</version>
<version>1.1.11-SNAPSHOT</version>
<packaging>jar</packaging>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.6.1</version>
</plugin>
</plugins>
</build>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
</properties>
<distributionManagement>
<repository>
Expand Down
2 changes: 0 additions & 2 deletions src/main/java/com/phono/srtplight/SRTPProtocolImpl.java
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,6 @@
import java.nio.ByteBuffer;
import java.security.GeneralSecurityException;
import java.util.Properties;
import java.util.logging.Level;
import java.util.logging.Logger;
import javax.crypto.Mac;

/**
Expand Down
3 changes: 3 additions & 0 deletions src/main/java/module-info.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
module com.phono.srtplight {
exports com.phono.srtplight;
}

0 comments on commit 4cd1baa

Please sign in to comment.