Skip to content

Commit

Permalink
feat: add net module (#12)
Browse files Browse the repository at this point in the history
  • Loading branch information
sverrehu committed Oct 20, 2023
1 parent 03855f9 commit 9a48a30
Show file tree
Hide file tree
Showing 11 changed files with 1,029 additions and 0 deletions.
29 changes: 29 additions & 0 deletions net/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
<?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">

<parent>
<groupId>no.shhsoft</groupId>
<artifactId>shhsoft4</artifactId>
<version>0.1.1-SNAPSHOT</version>
</parent>

<modelVersion>4.0.0</modelVersion>
<artifactId>shhsoft4-net</artifactId>
<packaging>jar</packaging>
<name>shhsoft4-net</name>

<dependencies>

<dependency>
<groupId>no.shhsoft</groupId>
<artifactId>shhsoft4-utils</artifactId>
</dependency>

<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
</dependency>

</dependencies>

</project>
Loading

0 comments on commit 9a48a30

Please sign in to comment.