M
M
monah_tuk2014-08-12 08:44:29
Java
monah_tuk, 2014-08-12 08:44:29

Wowza and IntelliJ IDEA: who crossed?

Question honest brethren, Wowza provides a pre-configured Eclipse, but it so happened that, basically, work with Java is carried out from IntelliJ IDEA.
No one wondered what to cross Wowza and IDEA? Like automatic or semi-automatic plugin deployment, plugin debugging, etc.
Any recommendations are welcome.
Specifications:
Wowza: Wowza Streaming Engine 4.0
IDEA: 13.x
System: Mint 17

Answer the question

In order to leave comments, you need to log in

3 answer(s)
A
Alexander Taratin, 2014-08-12
@Taraflex

Better link https://github.com/arut/nginx-rtmp-module

Y
Yuri Udovichenko, 2014-08-12
@Aquary

Alternatively, you can take our template for Maven: https://github.com/WMSPanel/wowza-maven-template

A
Arthur, 2014-09-30
@Headshrinker

We collect an antom, or from which there are dependencies, you need to put it in the lib folder in the root of the project.

<?xml version="1.0"?>
<project name="module" default="jar" basedir=".">

    <property name="lib.dir" value="lib"/>

    <path id="classpath">
        <fileset dir="${lib.dir}" includes="**/*.jar"/>
    </path>

    <target name="clean">
        <delete dir="target"/>
    </target>

    <target name="compile" depends="clean">
        <mkdir dir="target"/>
        <mkdir dir="target/classes"/>
        <javac srcdir="src" destdir="target/classes" classpathref="classpath"/>
    </target>

    <target name="jar" depends="compile">
        <mkdir dir="target/jar"/>
        <jar destfile="target/jar/module.jar" basedir="target/classes">
        </jar>
    </target>

</project>

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question