--
---
You received this message because you are subscribed to the Google Groups "red5" group.
To unsubscribe from this group and stop receiving emails from it, send an email to red5interest...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
Also, can we have maven auto resolve lib/red-server* form local repo? I think this is doable in the pom ..
--
---
You received this message because you are subscribed to the Google Groups "red5" group.
To unsubscribe from this group and stop receiving emails from it, send an email to red5interest...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
<plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-install-plugin</artifactId> <executions> <execution>
<id>hack-binary-xml</id> <phase>initialize</phase> <configuration> <file>${basedir}/lib/red5-0-8/xml-apis-2.9.1.jar</file> <repositoryLayout>default</repositoryLayout> <groupId>javax.xml.stream</groupId> <artifactId>com.springsource.javax.xml.stream</artifactId> <version>1.0.1</version> <packaging>jar</packaging> <generatePom>true</generatePom> </configuration> <goals> <goal>install-file</goal> </goals> </execution> </executions> </plugin> <dependency> <groupId>org.bouncycastle</groupId> <artifactId>bcprov-jdk15</artifactId> <version>1.47</version> <scope>system</scope> <systemPath>${project.basedir}/lib/red5-0-8/bcprov-jdk16-139.jar</systemPath> </dependency>