Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Vincent Charpentier
ZmqpubsubJava
Commits
f47cd10d
Commit
f47cd10d
authored
Apr 28, 2022
by
Vincent Charpentier
Browse files
feat: added the ZMQ library in the pom.xml and in the Main class.
parent
3889d735
Changes
2
Hide whitespace changes
Inline
Side-by-side
pom.xml
View file @
f47cd10d
...
...
@@ -8,6 +8,17 @@
<artifactId>
zmq
</artifactId>
<version>
1.0-SNAPSHOT
</version>
<dependencies>
<!-- https://mvnrepository.com/artifact/org.zeromq/jeromq -->
<dependency>
<groupId>
org.zeromq
</groupId>
<artifactId>
jeromq
</artifactId>
<version>
0.5.2
</version>
</dependency>
</dependencies>
<properties>
<maven.compiler.source>
15
</maven.compiler.source>
<maven.compiler.target>
15
</maven.compiler.target>
...
...
src/main/java/Main.java
View file @
f47cd10d
import
org.zeromq.ZMQ
;
import
org.zeromq.ZContext
;
public
class
Main
{
public
static
void
main
(
String
[]
args
)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment