Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8682541
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T21:48:17+00:00 2026-06-12T21:48:17+00:00

I am a (very) amateur programmer. I am using Groovy to edit MP3 file

  • 0

I am a (very) amateur programmer. I am using Groovy to edit MP3 file tags. Previously (about two years ago), I added the JAudiotagger class library to my Java installation using the detailed instructions given in the JAudiotagger readme file, and then called the required classes from my Groovy script. However, there is no readme file (that I can find) in the latest version of JAudiotagger, and I have so far failed to work out what to do.

Please can someone give me simple instructions on how to add JAudiotagger to Java, e.g. what files do I need to download, from where and what do I do with them.

I am running Windows 7.

All help gratefully appreciated.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-12T21:48:18+00:00Added an answer on June 12, 2026 at 9:48 pm

    The easiest way is to simply download the jar of jAutioTagger and put it in your classpath, so when the program launch, the classes in the jar should be accessible: java classpath

    Now if you want a more generic way of handling dependencies altogether, i suggest you start reading about maven (which a build tool with dependecny managment).

    You can also use gradle which looks more for groovy but I do not know about it.

    As for starting a new project with maven it requires some steps. Here is a lightweight tutorial:

    1. Create a maven project
    2. Add the desired dependencies in your pom.xml
    3. Build the project with libraries embedded
    4. Run the program

    Create a maven project

    Type in the following command in your command line:

    mvn archetype:generate -DarchetypeGroupId=org.apache.maven.archetypes -DarchetypeArtifactId=maven-archetype-quickstart -DarchetypeVersion=5-SNAPSHOT

    It will ask you some questions like the group id and the artifact id as well as the project name.

    Add the desired dependencies in your pom.xml

    The pom.xml is where you configure your project, like build things and dependencies, to have audiotagger as a dependency add the following:

      <dependency>
          <groupId>org.jaudiotagger</groupId>
          <artifactId>jaudiotagger</artifactId>
          <version>2.0.1</version>
      </dependency>
    

    This will add jaudiotagger to the dependencies of your project, you can add groovy as well. You’ll also need dependencies too groovy and the groovy compiler.

    Hint: I use sonatype to find dependencies

    Build the project with libraries embedded

    Now to build your project with maven. Just type the following command:

    mvn clean install

    but this will not add the dependencies to your jar, so you need to embedd them by adding a plugin to your pom.xml configuration:

       <artifactId>maven-assembly-plugin</artifactId>
       <configuration>
           <archive>
               <manifest>
                   <mainClass>be.phury.audiotagger.Audiotagger</mainClass>
               </manifest>
           </archive>
           <descriptorRefs>
               <descriptorRef>jar-with-dependencies</descriptorRef>
           </descriptorRefs>
       </configuration>
    

    You can now generate a jar with dependencies by typing in the command line:

    mvn clean install assembly:single

    Run the program

    Just run the jar

    Hope this helps

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am a long-time, self-taught, amateur VB programmer who is now trying to teach
i have recently started working on C# and i am very amateur at it
Very simple, I need to match the # symbol using a regex. I'm working
This is a very amateur question (don't rate me down for it) but how
Quick one: I'm still a NetBeans amateur, however I've grown very fond of it
Very new to .Net. Everything was working fine until I added <Tracking> to my
Let me clarify it first that I am still a very amateur android developer
Really amateur question here - body background-gradient isn't working in chrome, very strange, I've
Very simple template <script type=text/x-handlebars data-template-name=win-edit-foot> {{name}} </script> ContainerView class: App.WinElementEditView = Em.ContainerView.extend({ classNames:['edit'],
Very simple...I just want to display a local pdf file that I have saved

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.