forked from mondain/red5
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
6 changed files
with
281 additions
and
0 deletions.
There are no files selected for viewing
10 changes: 10 additions & 0 deletions
10
repository/org/red5/red5-service/1.0.2-RELEASE/maven-metadata.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<metadata> | ||
<groupId>org.red5</groupId> | ||
<artifactId>red5-service</artifactId> | ||
<versioning> | ||
<latest>1.0.2-RELEASE</latest> | ||
<release>1.0.2-RELEASE</release> | ||
<lastUpdated>20140407181501</lastUpdated> | ||
</versioning> | ||
</metadata> |
Binary file added
BIN
+81.2 KB
repository/org/red5/red5-service/1.0.2-RELEASE/red5-service-1.0.2-RELEASE-javadoc.jar
Binary file not shown.
Binary file added
BIN
+15.4 KB
repository/org/red5/red5-service/1.0.2-RELEASE/red5-service-1.0.2-RELEASE-sources.jar
Binary file not shown.
Binary file added
BIN
+20.1 KB
repository/org/red5/red5-service/1.0.2-RELEASE/red5-service-1.0.2-RELEASE.jar
Binary file not shown.
258 changes: 258 additions & 0 deletions
258
repository/org/red5/red5-service/1.0.2-RELEASE/red5-service-1.0.2-RELEASE.pom
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,258 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
<artifactId>red5-service</artifactId> | ||
<packaging>jar</packaging> | ||
<name>Red5 :: Service</name> | ||
<description>The Red5 server service daemon</description> | ||
<groupId>org.red5</groupId> | ||
<version>1.0.2-RELEASE</version> | ||
<url>https://github.com/Red5/red5-service</url> | ||
<inceptionYear>2005</inceptionYear> | ||
<organization> | ||
<name>Red5</name> | ||
<url>https://github.com/Red5</url> | ||
</organization> | ||
<licenses> | ||
<license> | ||
<name>Apache 2</name> | ||
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> | ||
<distribution>repo</distribution> | ||
<comments>A business-friendly OSS license</comments> | ||
</license> | ||
</licenses> | ||
<mailingLists> | ||
<mailingList> | ||
<name>red5-interest</name> | ||
<post>https://groups.google.com/forum/?fromgroups#!forum/red5interest</post> | ||
</mailingList> | ||
</mailingLists> | ||
<issueManagement> | ||
<system>google-code</system> | ||
<url>https://code.google.com/p/red5/issues/list</url> | ||
</issueManagement> | ||
<developers> | ||
<developer> | ||
<id>Dominick Accattato</id> | ||
<email>[email protected]</email> | ||
</developer> | ||
<developer> | ||
<id>Paul Gregoire</id> | ||
<email>[email protected]</email> | ||
</developer> | ||
<developer> | ||
<id>Dan Rossi</id> | ||
<email>[email protected]</email> | ||
</developer> | ||
<developer> | ||
<id>Tiago Jacobs</id> | ||
<email>[email protected]</email> | ||
</developer> | ||
</developers> | ||
<properties> | ||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | ||
<slf4j.version>1.7.5</slf4j.version> | ||
<logback.version>1.0.13</logback.version> | ||
<commons-daemon.version>1.0.15</commons-daemon.version> | ||
</properties> | ||
<scm> | ||
<connection>scm:git:https://github.com/Red5/red5-service.git</connection> | ||
<developerConnection>scm:git:https://github.com/Red5/red5-service.git</developerConnection> | ||
<tag>HEAD</tag> | ||
</scm> | ||
<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>install</defaultGoal> | ||
<directory>${basedir}/target</directory> | ||
<plugins> | ||
<plugin> | ||
<artifactId>maven-compiler-plugin</artifactId> | ||
<version>2.3.2</version> | ||
<configuration> | ||
<compilerVersion>1.6</compilerVersion> | ||
<fork>true</fork> | ||
<source>1.6</source> | ||
<target>1.6</target> | ||
</configuration> | ||
</plugin> | ||
<plugin> | ||
<artifactId>maven-source-plugin</artifactId> | ||
<executions> | ||
<execution> | ||
<id>attach-sources</id> | ||
<phase>package</phase> | ||
<goals> | ||
<goal>jar</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
<plugin> | ||
<artifactId>maven-jar-plugin</artifactId> | ||
<version>2.4</version> | ||
<executions> | ||
<execution> | ||
<configuration> | ||
<archive> | ||
<manifest> | ||
<addDefaultImplementationEntries>true</addDefaultImplementationEntries> | ||
</manifest> | ||
<manifestEntries> | ||
<SCM-Revision>${buildNumber}</SCM-Revision> | ||
<Implementation-Build>${buildNumber}</Implementation-Build> | ||
</manifestEntries> | ||
</archive> | ||
</configuration> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
<plugin> | ||
<artifactId>maven-dependency-plugin</artifactId> | ||
<version>2.6</version> | ||
<executions> | ||
<execution> | ||
<id>copy-dependencies</id> | ||
<phase>package</phase> | ||
<goals> | ||
<goal>copy-dependencies</goal> | ||
</goals> | ||
<configuration> | ||
<outputDirectory>${project.build.directory}/lib</outputDirectory> | ||
<overWriteReleases>false</overWriteReleases> | ||
<overWriteSnapshots>false</overWriteSnapshots> | ||
<overWriteIfNewer>true</overWriteIfNewer> | ||
<excludeTransitive>true</excludeTransitive> | ||
</configuration> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
<plugin> | ||
<artifactId>maven-assembly-plugin</artifactId> | ||
<version>2.4</version> | ||
<configuration> | ||
<descriptors> | ||
<descriptor>src/main/assembly/daemon.xml</descriptor> | ||
</descriptors> | ||
</configuration> | ||
<executions> | ||
<execution> | ||
<id>make-assembly</id> | ||
<!-- this is used for inheritance merges --> | ||
<phase>package</phase> | ||
<!-- bind to the packaging phase --> | ||
<goals> | ||
<goal>single</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.felix</groupId> | ||
<artifactId>maven-bundle-plugin</artifactId> | ||
<version>2.3.7</version> | ||
<extensions>true</extensions> | ||
</plugin> | ||
<plugin> | ||
<artifactId>maven-scm-plugin</artifactId> | ||
<version>1.8.1</version> | ||
<configuration> | ||
<connectionType>connection</connectionType> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
<resources> | ||
<resource> | ||
<directory>src/main/resources</directory> | ||
</resource> | ||
<resource> | ||
<directory>src/main/java</directory> | ||
<includes> | ||
<include>**/*.xml</include> | ||
</includes> | ||
</resource> | ||
</resources> | ||
<testResources> | ||
<testResource> | ||
<directory>src/test/java</directory> | ||
<excludes> | ||
<exclude>**/*.java</exclude> | ||
</excludes> | ||
</testResource> | ||
<testResource> | ||
<directory>src/test/resources</directory> | ||
</testResource> | ||
</testResources> | ||
</build> | ||
<repositories> | ||
<repository> | ||
<id>Red5</id> | ||
<url>http://red5.googlecode.com/svn/repository</url> | ||
</repository> | ||
<repository> | ||
<id>repo1.maven.org</id> | ||
<url>http://repo1.maven.org/maven2</url> | ||
</repository> | ||
<repository> | ||
<id>maven2-repository.dev.java.net</id> | ||
<url>http://download.java.net/maven/2</url> | ||
</repository> | ||
</repositories> | ||
<dependencies> | ||
<dependency> | ||
<groupId>org.slf4j</groupId> | ||
<artifactId>slf4j-api</artifactId> | ||
<version>${slf4j.version}</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>ch.qos.logback</groupId> | ||
<artifactId>logback-core</artifactId> | ||
<version>${logback.version}</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>commons-daemon</groupId> | ||
<artifactId>commons-daemon</artifactId> | ||
<version>1.0.15</version> | ||
</dependency> | ||
</dependencies> | ||
</project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<metadata> | ||
<groupId>org.red5</groupId> | ||
<artifactId>red5-service</artifactId> | ||
<versioning> | ||
<latest>1.0.2-RELEASE</latest> | ||
<release>1.0.2-RELEASE</release> | ||
<versions> | ||
<version>1.0.2-RELEASE</version> | ||
</versions> | ||
<lastUpdated>20140407181301</lastUpdated> | ||
</versioning> | ||
</metadata> |