forked from lwes/lwes-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathREADME
More file actions
27 lines (20 loc) · 849 Bytes
/
README
File metadata and controls
27 lines (20 loc) · 849 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
This is the Java API for the Light Weight Event System.
***
Prerequisites
- JDK 1.5.x (http://java.sun.com/) or later
- Maven 3.0.4 (http://apache.maven.org/) or later
- GPG, if you are going to deploy a release (http://www.gnupg.org/download)
***
How to build:
% mvn clean package
To create a release:
% mvn release:prepare release:perform
NOTE: you cannot use batch-mode anymore. Deploying to central requires a gpg key
and it needs to prompt you for your passphrase. It will error out if you have
specified batch-mode.
NOTE: Read this document for deploying releases to central:
https://docs.sonatype.org/display/Repository/Sonatype+OSS+Maven+Repository+Usage+Guide
***
To increase the read buffer size on the multicast socket, set the system property
MulticastReceiveBufferSize. For example,
java -DMulticastReceiveBufferSize=8388608 ...