NullNoname/jorbis


Unofficial mirror of JOrbis, a pure Java Ogg Vorbis decoder

Download


Step 1. Add the JitPack repository to your build file

Add it in your root settings.gradle at the end of repositories:

	dependencyResolutionManagement {
		repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
		repositories {
			mavenCentral()
			maven { url 'https://jitpack.io' }
		}
	}

Add it in your settings.gradle.kts at the end of repositories:

	dependencyResolutionManagement {
		repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
		repositories {
			mavenCentral()
			maven { url = uri("https://jitpack.io") }
		}
	}

Add to pom.xml

	<repositories>
		<repository>
		    <id>jitpack.io</id>
		    <url>https://jitpack.io</url>
		</repository>
	</repositories>

Add it in your build.sbt at the end of resolvers:

 
    resolvers += "jitpack" at "https://jitpack.io"
        
    

Add it in your project.clj at the end of repositories:

 
    :repositories [["jitpack" "https://jitpack.io"]]
        
    

Step 2. Add the dependency

	dependencies {
		implementation 'com.github.NullNoname:jorbis:0.0.18'
	}
	dependencies {
		implementation("com.github.NullNoname:jorbis:0.0.18")
	}
	<dependency>
	    <groupId>com.github.NullNoname</groupId>
	    <artifactId>jorbis</artifactId>
	    <version>0.0.18</version>
	</dependency>

                            
    libraryDependencies += "com.github.NullNoname" % "jorbis" % "0.0.18"
        
        

                            
    :dependencies [[com.github.NullNoname/jorbis "0.0.18"]]
        
        

Readme


JOrbis - Pure Java Ogg Vorbis Decoder

The original README file is available as 'README.original' in the root directory.

This repository is an unofficial mirror of JOrbis, a pure Java Ogg Vorbis decoder. It is mostly the same as the one in Maven Central repository, but this one requires Java 1.6. My unofficial mirror should be compatible with Java 1.3.

License is GNU Lesser General Public License 2.1. See COPYING.LIB for more information.