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

  • SEARCH
  • Home
  • 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 8326283
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T00:42:48+00:00 2026-06-09T00:42:48+00:00

Mina seems to be deploying their artifacts as *.bundle files these days, which, at

  • 0

Mina seems to be deploying their artifacts as *.bundle files these days, which, at the very least, is annoying and at best downright evil.

If I depend on Mina in Maven like this:

<dependency>
    <groupId>org.apache.mina</groupId>
    <artifactId>mina-core</artifactId>
    <version>${mina.version}</version>
    <type>jar</type>
</dependency>
<dependency>
    <groupId>org.apache.mina</groupId>
    <artifactId>mina-integration-beans</artifactId>
    <version>${mina.version}</version>
    <type>jar</type>
</dependency>
<dependency>
    <groupId>org.apache.mina</groupId>
    <artifactId>mina-integration-jmx</artifactId>
    <version>${mina.version}</version>
    <type>jar</type>
</dependency>

…then I get the following error:

Multiple annotations found at this line:
- Missing artifact org.apache.mina:mina-integration-ognl:bundle:2.0.4
- Missing artifact org.apache.mina:mina-core:bundle:2.0.4
- Missing artifact org.apache.mina:mina-integration-beans:bundle:2.0.4

I’m not sure why it’s still looking for *.bundle files instead of *.jar files. Why is it not looking for and finding the JAR files?

This is especially frustrating because I have projects which depend on this project and they all fail without the Mina JARs. Whatever happened to good-old Java JARs?

  • 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-09T00:42:49+00:00Added an answer on June 9, 2026 at 12:42 am

    First i have found out that using only the core it works without any problem, but if you start to use mina-integration-bean or mina-integration-jmx you will get the problem. Furthermore i have found the following issue in the JIRA tracker of Mina project which exactly states your problem.

    On the other hand you can exclude those bundle dependencies in maven like this:

      <dependencies>
        <dependency>
          <groupId>org.apache.mina</groupId>
          <artifactId>mina-core</artifactId>
          <version>2.0.4</version>
          <type>jar</type>
        </dependency>
        <dependency>
          <groupId>org.apache.mina</groupId>
          <artifactId>mina-integration-beans</artifactId>
          <version>2.0.4</version>
          <type>jar</type>
          <exclusions>
            <exclusion>
              <groupId>org.apache.mina</groupId>
              <artifactId>mina-core</artifactId>
            </exclusion>
          </exclusions>
        </dependency>
        <dependency>
          <groupId>org.apache.mina</groupId>
          <artifactId>mina-integration-ognl</artifactId>
          <version>2.0.4</version>
          <type>jar</type>
          <exclusions>
            <exclusion>
              <groupId>org.apache.mina</groupId>
              <artifactId>mina-core</artifactId>
            </exclusion>
            <exclusion>
              <groupId>org.apache.mina</groupId>
              <artifactId>mina-integration-beans</artifactId>
            </exclusion>
          </exclusions>
        </dependency>
        <dependency>
          <groupId>org.apache.mina</groupId>
          <artifactId>mina-integration-jmx</artifactId>
          <version>2.0.4</version>
          <type>jar</type>
          <exclusions>
            <exclusion>
              <groupId>org.apache.mina</groupId>
              <artifactId>mina-core</artifactId>
            </exclusion>
            <exclusion>
              <groupId>org.apache.mina</groupId>
              <artifactId>mina-integration-beans</artifactId>
            </exclusion>
            <exclusion>
              <groupId>org.apache.mina</groupId>
              <artifactId>mina-integration-ognl</artifactId>
            </exclusion>
          </exclusions>
        </dependency>
      </dependencies>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

The application uses quickfixj library, which uses Apache Mina . This application keeps a
I have been studying Netty and Mina but am confused as to the best
stackoverflow! We are developing system, which should be horizontal scalable. So, messaging system seems
I'm playing for a few days with apache mina and I want to ask
In using Apache MINA, I'm sending a login request from the client, which is
I am facing a strange issue with apache MINA. I have server application which
I am very new to apache mina and I have a problem with sending
I am using MINA 2.0.0 M6 and there are lots of exceptions as follows
I am building a socketserver using Apache Mina and I am trying to make
I am new to Apache MINA kindly guide me how to read from IoSession.

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.