forked from DV8FromTheWorld/JAADec
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
58 lines (58 loc) · 2.17 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<groupId>com.showbie</groupId>
<artifactId>jaad</artifactId>
<version>0.8.5.1</version>
<description>JAAD is an AAC decoder and MP4 demultiplexer library written completely in Java. It uses no native libraries, is platform-independent and portable. It can read MP4 container from almost every input-stream (files, network sockets etc.) and decode AAC-LC (Low Complexity) and HE-AAC (High Efficiency/AAC+).</description>
<url>https://github.com/DV8FromTheWorld/JAADec</url>
<licenses>
<license>
<name>Public Domain</name>
<url>https://en.wikipedia.org/wiki/Public_domain</url>
</license>
</licenses>
<developers>
<developer>
<id>in-somnia</id>
<name>in-somnia</name>
<email>https://sourceforge.net/u/in-somnia/profile/</email>
</developer>
<developer>
<id>DV8FromTheWorld</id>
<name>Austin Keener</name>
<email>keeneraustin@yahoo.com</email>
</developer>
<developer>
<id>offbeatwitch</id>
<name>Henry</name>
<email>omgredstone@gmail.com</email>
</developer>
</developers>
<scm>
<connection>scm:git:git@github.com:DV8FromTheWorld/JAADec.git</connection>
<developerConnection>scm:git:git@github.com:DV8FromTheWorld/JAADec.git</developerConnection>
<url>scm:git:git@github.com:DV8FromTheWorld/JAADec.git</url>
</scm>
<distributionManagement>
<repository>
<id>github</id>
<name>GitHub OWNER Apache Maven Packages</name>
<url>https://maven.pkg.github.com/showbie/maven-central-repository</url>
</repository>
</distributionManagement>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.5.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
</plugins>
</build>
</project>