Skip to content

Commit

Permalink
Merge pull request #30 from slytechs-repos/release-2.0.0-alpha.2
Browse files Browse the repository at this point in the history
Release 2.0.0 alpha.2
  • Loading branch information
Mark Bednarczyk committed Apr 6, 2023
2 parents 97ee543 + 1ffed2f commit 4aacf37
Show file tree
Hide file tree
Showing 40 changed files with 1,745 additions and 2,080 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,5 @@ target
.classpath
.project
.settings/
/bin/
/pom.xml.versionsBackup
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@
## Overview
**jNetPcap** provides out of the box [*libpcap*][libpcap] library in *Java*. By using [*Foreign Function*][jep424] features of *Java 19* or above, **jNetPcap** can bind directly to the native *libpcap* library. All native *libpcap* functions are accessible through easy to use [*Java API*][javadocs]. In addition, the latest [*Npcap*][npcap] and legacy [*WinPcap*][winpcap] tools and their API extensions on *Microsoft Windows* platforms are supported as well.

## Documentation
See [*Wiki pages*][wiki] for user guides and examples.

See [*Javadocs*][javadocs] reference documentation.

## Examples
To get started lets take a look at a couple of examples.

Expand Down Expand Up @@ -149,11 +154,6 @@ Latest release: [*download link*][release]
### Compile From Source
You will find instructions on how to compile from source on our [*Wiki Pages*][wiki].

## Documentation
See [*Wiki pages*][wiki]

See [*Javadocs*][javadocs] reference documentation

## Contact
* `[email protected]` for commercial and licensing questions
* [*jNetPcap Issue Tracker*][bugs]
Expand Down
5 changes: 4 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.slytechs.jnet</groupId>
<artifactId>jnetpcap</artifactId>
<version>2.0.0-alpha.1</version>
<!-- mvn versions:set -DnewVersion=_new_version_ -->
<version>2.0.0-alpha.2</version>
<name>jNetPcap</name>
<description>A Java wrapper for native libpcap library</description>
<url>https://www.jnetpcap.org</url>
Expand Down Expand Up @@ -116,6 +117,7 @@
${java.preview}
</additionalOptions>
<show>public</show>
<excludePackageNames>*.internal</excludePackageNames>
</configuration>
</plugin>
<plugin>
Expand Down Expand Up @@ -155,6 +157,7 @@
<additionalOptions>
${java.preview}
</additionalOptions>
<excludePackageNames>*.internal</excludePackageNames>
</configuration>
<reportSets>
<reportSet>
Expand Down
3 changes: 3 additions & 0 deletions src/main/java/module-info.java
Original file line number Diff line number Diff line change
Expand Up @@ -243,4 +243,7 @@
exports org.jnetpcap.windows;
exports org.jnetpcap.constant;
exports org.jnetpcap.util;

exports org.jnetpcap.internal to
com.slytechs.jnet.jnetpcap.pro;
}
Loading

0 comments on commit 4aacf37

Please sign in to comment.