<dependency>
<groupId>com.ericsson.otp</groupId>
<artifactId>otp-jar</artifactId>
<version>1.0</version>
</dependency>
groovy
compile group: 'com.ericsson.otp', name: 'otp-jar', version: '1.0'
import com.ericsson.otp.erlang.OtpNode;
import com.ericsson.otp.erlang.OtpMbox;
public class MainApplication {
public static void main(String[] args) {
OtpNode node = new OtpNode("java_node");
// ...
// ...
// ...
// ...
// ...
}
}
// ...