Skip to content

Commit

Permalink
Minor updates to the pom
Browse files Browse the repository at this point in the history
Fix for issue #2
  • Loading branch information
mondain committed May 28, 2016
1 parent d6ae2a5 commit d508477
Showing 1 changed file with 14 additions and 91 deletions.
105 changes: 14 additions & 91 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@
<description>Red5 RTSP Restreamer</description>
<url>https://github.com/mondain/red5-rtsp-restreamer</url>
<inceptionYear>2005</inceptionYear>
<organization>
<name>Red5</name>
<url>https://code.google.com/p/red5</url>
</organization>
<organization>
<name>Red5</name>
<url>https://github.com/Red5</url>
</organization>
<licenses>
<license>
<name>Apache 2</name>
Expand All @@ -30,7 +30,7 @@
</mailingLists>
<issueManagement>
<system>github</system>
<url>https://github.com/mondain/red5-rtsp-restreamer/issues</url>
<url>https://github.com/Red5/red5-rtsp-restreamer/issues</url>
</issueManagement>
<developers>
<developer>
Expand All @@ -44,110 +44,33 @@
</developers>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<red5-server.version>1.0.3-SNAPSHOT</red5-server.version>
<red5-client.version>1.0.3-SNAPSHOT</red5-client.version>
<red5-io.version>1.0.4-SNAPSHOT</red5-io.version>
<spring.version>4.0.3.RELEASE</spring.version>
<mina.version>2.0.7</mina.version>
<red5-server.version>1.0.7-RELEASE</red5-server.version>
<red5-client.version>1.0.7-RELEASE</red5-client.version>
<red5-io.version>1.0.7-RELEASE</red5-io.version>
<spring.version>4.2.6.RELEASE</spring.version>
<mina.version>2.0.13</mina.version>
<slf4j.version>1.7.5</slf4j.version>
<logback.version>1.0.13</logback.version>
<junit.version>4.11</junit.version>
<junit.version>4.12</junit.version>
</properties>
<repositories>
<repository>
<id>Red5</id>
<url>http://red5.googlecode.com/svn/repository</url>
</repository>
<repository>
<id>Xuggle</id>
<url>http://xuggle.googlecode.com/svn/trunk/repo/share/java/</url>
</repository>
<repository>
<id>repo1.maven.org</id>
<url>http://repo1.maven.org/maven2</url>
</repository>
<repository>
<id>springsource-repo</id>
<name>SpringSource Repository</name>
<url>http://repo.springsource.org/release</url>
</repository>
<repository>
<id>maven2-repository.dev.java.net</id>
<url>http://download.java.net/maven/2</url>
</repository>
<repository>
<id>opensymphony-releases</id>
<name>Opensymphony Releases</name>
<url>https://oss.sonatype.org/content/repositories/opensymphony-releases</url>
</repository>
<repository>
<id>jboss-public-repository-group</id>
<name>JBoss Public Maven Repository Group</name>
<url>https://repository.jboss.org/nexus/content/groups/public-jboss</url>
<layout>default</layout>
<releases>
<enabled>true</enabled>
<updatePolicy>never</updatePolicy>
</releases>
<snapshots>
<enabled>true</enabled>
<updatePolicy>never</updatePolicy>
</snapshots>
</repository>
</repositories>
<build>
<pluginManagement>
<plugins>
<plugin>
<artifactId>maven-eclipse-plugin</artifactId>
<version>2.7</version>
<configuration>
<downloadSources>true</downloadSources>
<classpathContainers>
<classpathContainer>org.eclipse.jdt.launching.JRE_CONTAINER</classpathContainer>
<classpathContainer>org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER</classpathContainer>
<classpathContainer>org.eclipse.jdt.junit.JUNIT_CONTAINER/4</classpathContainer>
</classpathContainers>
</configuration>
</plugin>
<plugin>
<groupId>org.eclipse.m2e</groupId>
<artifactId>lifecycle-mapping</artifactId>
<version>1.0.0</version>
<configuration>
<lifecycleMappingMetadata>
<pluginExecutions>
<pluginExecution>
<pluginExecutionFilter>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<versionRange>[1.0.0,)</versionRange>
<goals>
<goal>copy-dependencies</goal>
<goal>unpack</goal>
</goals>
</pluginExecutionFilter>
<action>
<ignore />
</action>
</pluginExecution>
</pluginExecutions>
</lifecycleMappingMetadata>
</configuration>
</plugin>
</plugins>
</pluginManagement>
<defaultGoal>package</defaultGoal>
<directory>${basedir}/target</directory>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<compilerVersion>1.6</compilerVersion>
<compilerVersion>1.7</compilerVersion>
<fork>true</fork>
<source>1.6</source>
<target>1.6</target>
<source>1.7</source>
<target>1.7</target>
</configuration>
</plugin>
<plugin>
Expand Down

0 comments on commit d508477

Please sign in to comment.