Download java-flac-encoder-0.3.7.jar file

Introduction

You can download java-flac-encoder-0.3.7.jar in this page.

License

GNU LGPL(v2.1)

Type List

java-flac-encoder-0.3.7.jar file has the following types.

META-INF.maven.net.sourceforge.javaflacencoder.java-flac-encoder.pom.properties
META-INF.maven.net.sourceforge.javaflacencoder.java-flac-encoder.pom.xml
META-INF/MANIFEST.MF
META-INF/services/javax.sound.sampled.spi.AudioFileWriter
net.sourceforge.javaflacencoder.ArrayRecycler.class
net.sourceforge.javaflacencoder.AudioStreamEncoder.class
net.sourceforge.javaflacencoder.BlockEncodeRequest.class
net.sourceforge.javaflacencoder.BlockThreadManager.class
net.sourceforge.javaflacencoder.CRC16.class
net.sourceforge.javaflacencoder.CRC8.class
net.sourceforge.javaflacencoder.ChannelData.class
net.sourceforge.javaflacencoder.EncodedElement.class
net.sourceforge.javaflacencoder.EncodedElement_32.class
net.sourceforge.javaflacencoder.EncodingConfiguration.class
net.sourceforge.javaflacencoder.FLACEncoder.class
net.sourceforge.javaflacencoder.FLACFileOutputStream.class
net.sourceforge.javaflacencoder.FLACFileWriter.class
net.sourceforge.javaflacencoder.FLACOutputStream.class
net.sourceforge.javaflacencoder.FLACStreamController.class
net.sourceforge.javaflacencoder.FLACStreamIdentifier.class
net.sourceforge.javaflacencoder.FLACStreamOutputStream.class
net.sourceforge.javaflacencoder.FLAC_ConsoleFileEncoder.class
net.sourceforge.javaflacencoder.FLAC_FileEncoder.class
net.sourceforge.javaflacencoder.FLAC_MD5.class
net.sourceforge.javaflacencoder.Frame.class
net.sourceforge.javaflacencoder.FrameHeader.class
net.sourceforge.javaflacencoder.FrameThread.class
net.sourceforge.javaflacencoder.LPC.class
net.sourceforge.javaflacencoder.MetadataBlockHeader.class
net.sourceforge.javaflacencoder.MetadataBlockStreamInfo.class
net.sourceforge.javaflacencoder.RiceEncoder.class
net.sourceforge.javaflacencoder.StreamConfiguration.class
net.sourceforge.javaflacencoder.Subframe.class
net.sourceforge.javaflacencoder.Subframe_Constant.class
net.sourceforge.javaflacencoder.Subframe_Fixed.class
net.sourceforge.javaflacencoder.Subframe_LPC.class
net.sourceforge.javaflacencoder.Subframe_Verbatim.class
net.sourceforge.javaflacencoder.UTF8Modified.class

Pom

java-flac-encoder-0.3.7.pom file content.

<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/xsd/maven-4.0.0.xsd">
  <modelVersion>4.0.0</modelVersion>

  <groupId>net.sourceforge.javaflacencoder</groupId>
  <artifactId>java-flac-encoder</artifactId>
  <version>0.3.7</version>
  <packaging>jar</packaging>

  <name>java-flac-encoder</name>

  <url>https://github.com/amplexus/java-flac-encoder</url>
  <description>
    javaFlacEncoder is a pure java implementation of a FLAC encoder library. It is designed to allow third-party java applications to enable flac encoding without resorting to use of JNI or scripted file conversions. Additionally, a basic console wav->flac encoding tool is included as part of this package.
    Original project can be found here: http://javaflacencoder.sourceforge.net/
  </description>

  <properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  </properties>

  <licenses>
    <license>
      <name>GNU LGPL(v2.1)</name>
      <url>https://github.com/amplexus/java-flac-encoder/blob/master/LICENSE</url>
    </license>
  </licenses>

  <issueManagement>
    <system>Sourceforge</system>
    <url>http://sourceforge.net/p/javaflacencoder/bugs/</url>
  </issueManagement>

  <developers>
    <developer>
      <id>http://sourceforge.net/u/plwww/profile/</id>
      <name>Preston Lacey</name>
      <timezone>+9</timezone>
    </developer>
  </developers>

  <scm>
    <connection>scm:git:git://github.com/amplexus/java-flac-encoder.git</connection>
    <developerConnection>scm:git:git@github.com:amplexus/java-flac-encoder.git</developerConnection>
    <url>http://github.com/amplexus/java-flac-encoder</url>
  </scm>

  <build>
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-release-plugin</artifactId>
        <version>2.2.2</version>
        <configuration>
        <arguments>-Dgpg.passphrase=${gpg.passphrase}</arguments>
        </configuration>
      </plugin>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-source-plugin</artifactId>
        <executions>
          <execution>
            <id>attach-sources</id>
            <goals>
              <goal>jar</goal>
              <goal>jar-no-fork</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-javadoc-plugin</artifactId>
        <executions>
          <execution>
          <id>attach-javadocs</id>
            <goals>
              <goal>jar</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
    </plugins>
  </build>

  <distributionManagement>
    <snapshotRepository>
      <id>sonatype-nexus-snapshots</id>
      <name>Sonatype Nexus snapshot repository</name>
      <url>https://oss.sonatype.org/content/repositories/snapshots</url>
    </snapshotRepository>
    <repository>
      <id>sonatype-nexus-staging</id>
      <name>Sonatype Nexus release repository</name>
      <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
    </repository>
  </distributionManagement>

  <profiles>
    <profile>
      <id>release-sign-artifacts</id>
      <activation>
        <property>
          <name>performRelease</name>
          <value>true</value>
        </property>
      </activation>
      <build>
       <plugins>
         <plugin>
           <groupId>org.apache.maven.plugins</groupId>
           <artifactId>maven-gpg-plugin</artifactId>
           <version>1.4</version>
           <configuration>
             <passphrase>${gpg.passphrase}</passphrase>
           </configuration>
           <executions>
             <execution>
               <id>sign-artifacts</id>
               <phase>verify</phase>
               <goals>
                 <goal>sign</goal>
               </goals>
             </execution>
           </executions>
         </plugin>
       </plugins>
      </build>
    </profile>
  </profiles>

</project>

POM Entry

<dependency>
   <groupId>net.sourceforge.javaflacencoder</groupId>
   <artifactId>java-flac-encoder</artifactId>
   <version>0.3.7</version>
</dependency>

Download

If you think the following java-flac-encoder-0.3.7.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.



Download java-flac-encoder-0.3.7.jar file




PreviousNext

Related