Skip to content

Commit

Permalink
domain socket support foldin
Browse files Browse the repository at this point in the history
  • Loading branch information
Hellblazer committed Dec 2, 2023
1 parent 7702f93 commit 13822b4
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 50 deletions.
8 changes: 4 additions & 4 deletions domain-epoll/pom.xml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.salesforce.apollo</groupId>
Expand All @@ -8,13 +9,12 @@
<artifactId>domain-epoll</artifactId>
<name>Domain EPoll</name>
<description>Linux Unix Domain Socket Support</description>

<dependencies>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-transport-native-epoll</artifactId>
<version>${netty.version}</version>
<classifier>${os.detected.classifier}</classifier>
</dependency>
</dependencies>
</project>
</project>
6 changes: 3 additions & 3 deletions domain-kqueue/pom.xml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.salesforce.apollo</groupId>
Expand All @@ -14,7 +15,6 @@
<groupId>io.netty</groupId>
<artifactId>netty-transport-native-kqueue</artifactId>
<version>${netty.version}</version>
<classifier>${os.detected.classifier}</classifier>
</dependency>
</dependencies>
</project>
</project>
45 changes: 2 additions & 43 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@
<module>gorgoneion</module>
<module>gorgoneion-client</module>
<module>cryptography</module>
<module>domain-epoll</module>
<module>domain-kqueue</module>
</modules>

<properties>
Expand Down Expand Up @@ -596,49 +598,6 @@
</snapshots>
</pluginRepository>
</pluginRepositories>
<profiles>
<profile>
<id>pre</id>
<activation>
<activeByDefault>false</activeByDefault>
</activation>
<modules>
<module>h2-deterministic</module>
</modules>
</profile>
<profile>
<id>isolates</id>
<activation>
<activeByDefault>false</activeByDefault>
</activation>
<modules>
<module>isolates</module>
<module>isolate-ftesting</module>
</modules>
</profile>
<profile>
<id>mac-domain</id>
<activation>
<os>
<family>mac</family>
</os>
</activation>
<modules>
<module>domain-kqueue</module>
</modules>
</profile>
<profile>
<id>linux-domain</id>
<activation>
<os>
<name>linux</name>
</os>
</activation>
<modules>
<module>domain-epoll</module>
</modules>
</profile>
</profiles>
<build>
<extensions>
<extension>
Expand Down

0 comments on commit 13822b4

Please sign in to comment.