Answer the question
In order to leave comments, you need to log in
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
Alternatively, you can take our template for Maven: https://github.com/WMSPanel/wowza-maven-template
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 questionAsk a Question
731 491 924 answers to any question