Jump to content
  • Home
  • Files
  • Docs
  • Merch
Topics
  • All Content

  • This Topic
  • This Forum

  • Advanced Search
  • Existing user? Sign In  

    Sign In



    • Not recommended on shared computers


    • Forgot your password?

  • Sign Up
  • All Activity
  • Home
  • Mod Developer Central
  • Modder Support
  • ForgeGradle
  • [1.7.2] gradle conflicts with libtomcat7 & eclipse
1.13 Update Notes for Mod Creators
Sign in to follow this  
Followers 0
Kenkron

[1.7.2] gradle conflicts with libtomcat7 & eclipse

By Kenkron, February 17, 2014 in ForgeGradle

  • Reply to this topic
  • Start new topic

Recommended Posts

Kenkron    1

Kenkron

Kenkron    1

  • Tree Puncher
  • Kenkron
  • Members
  • 1
  • 14 posts
Posted February 17, 2014

Installing gradle seems to conflict with libtomcat-7.  Should I uninstall eclise, downgrade libtomcat, and just install eclipse again, or is there a better way?

 

using Ubuntu 13.10

 

$sudo aptitude install gradle

 

 

Reading package lists...

Building dependency tree...

Reading state information...

Reading extended state information...

Initializing package states...

The following NEW packages will be installed:

  bnd{a} checkstyle{a} gradle groovy{a} ivy{a} libaether-java{a}

  libaopalliance-java{a} libasm4-java{a} libasync-http-client-java{a}

  libatinject-jsr330-api-java{a} libbackport-util-concurrent-java{a}

  libbcpg-java{a} libcdi-api-java{a} libclassworlds-java{a}

  libcodenarc-groovy-java{a} libcommons-configuration-java{a}

  libcommons-jexl2-java{a} libcommons-jxpath-java{a}

  libcommons-net2-java{a} libcommons-vfs-java{a} libconstantine-java{a}

  libdom4j-java{a} libdoxia-java{a} libganymed-ssh2-java{a}

  libgeronimo-interceptor-3.0-spec-java{a} libgmetrics-groovy-java{a}

  libgoogle-collections-java{a} libgoogle-gson-java{a}

  libgradle-core-java{a} libgradle-plugins-java{a} libguava-java{a}

  libhttpclient-java{a} libhttpcore-java{a} libitext1-java{a}

  libjackrabbit-java{a} libjaffl-java{a} libjarjar-java{a} libjaxen-java{a}

  libjcifs-java{a} libjcip-annotations-java{a} libjdom1-java{a}

  libjetty-extra{a} libjetty-extra-java{a} libjffi-java{a} libjffi-jni{a}

  libjnr-posix-java{a} libjnr-x86asm-java{a} libjsoup-java{a}

  libjsr305-java{a} libkryo-java{a} liblogback-java{a}

  libmaven-ant-tasks-java{a} libmaven-parent-java{a} libmaven-scm-java{a}

  libmaven2-core-java{a} libminlog-java{a} libmockobjects-java{a}

  libmodello-java{a} libnative-platform-java{a} libnative-platform-jni{a}

  libnekohtml-java{a} libnetbeans-cvsclient-java{a} libnetty-java{a}

  libobjenesis-java{a} libplexus-ant-factory-java{a}

  libplexus-archiver-java{a} libplexus-bsh-factory-java{a}

  libplexus-build-api-java{a} libplexus-cipher-java{a}

  libplexus-classworlds-java{a} libplexus-classworlds2-java{a}

  libplexus-cli-java{a} libplexus-container-default-java{a}

  libplexus-containers-java{a} libplexus-containers1.5-java{a}

  libplexus-i18n-java{a} libplexus-interactivity-api-java{a}

  libplexus-interpolation-java{a} libplexus-io-java{a}

  libplexus-sec-dispatcher-java{a} libplexus-utils-java{a}

  libplexus-utils2-java{a} libpolyglot-maven-java{a} libqdox-java{a}

  libreflectasm-java{a} libsisu-guice-java{a} libsisu-ioc-java{a}

  libtomcat6-java{a} libwagon-java{a} libwagon2-java{a} libxbean-java{a}

  libxom-java{a} libxpp2-java{a} libxpp3-java{a} libxstream-java{a}

  maven{a} testng{a}

0 packages upgraded, 97 newly installed, 0 to remove and 1 not upgraded.

Need to get 56.8 MB of archives. After unpacking 86.8 MB will be used.

The following packages have unmet dependencies:

libtomcat7-java : Conflicts: libtomcat6-java but 6.0.37-1 is to be installed.

The following actions will resolve these dependencies:

 

    Remove the following packages:

1)    eclipse                   

2)    eclipse-jdt               

3)    eclipse-pde               

4)    eclipse-platform           

5)    eclipse-platform-data     

6)    libtomcat7-java           

 

 

 

Accept this solution? [Y/n/q/?] Abandoning all efforts to resolve these dependencies.

Abort.

 

 

  • Quote

Share this post


Link to post
Share on other sites

Parker8283    10

Parker8283

Parker8283    10

  • Creeper Killer
  • Parker8283
  • Forge Modder
  • 10
  • 164 posts
Posted February 17, 2014

There is no need to install Gradle; Forge comes with its own modified Gradle wrapper.

  • Quote

Share this post


Link to post
Share on other sites

diesieben07    6692

diesieben07

diesieben07    6692

  • Reality Controller
  • diesieben07
  • Forum Team
  • 6692
  • 45730 posts
Posted February 17, 2014

It's not forge's wrapper, this is the default and recommended way to use gradle in your project. The GradleWrapper is created by gradle itself and all it does is download gradle, so it would probably conflict anyways.

But it's worth a try.

  • Quote

Share this post


Link to post
Share on other sites

LexManos    1519

LexManos

LexManos    1519

  • Reality Controller
  • LexManos
  • Forge Code God
  • 1519
  • 8573 posts
Posted February 17, 2014

Gradle wrapper is unmodified, it's directly from the original source.

As for a better way, using the wrapper would be the way to go as it doesn't install all the other libraries just the small package that is Gradle itself. It is your package manager that has the library issue not Forge or Gradle.

  • Quote

Share this post


Link to post
Share on other sites

Kenkron    1

Kenkron

Kenkron    1

  • Tree Puncher
  • Kenkron
  • Members
  • 1
  • 14 posts
Posted February 18, 2014

Okay, I think I get it.  I just rune the gradlew file instead for all the gradle commands, right?

  • Quote

Share this post


Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Insert image from URL
×
  • Desktop
  • Tablet
  • Phone
Sign in to follow this  
Followers 0
Go To Topic Listing



  • Recently Browsing

    No registered users viewing this page.

  • Posts

    • Oliviafrostpaw
      [1.14.4] Injecting into Existing Loot Tables, Blocks

      By Oliviafrostpaw · Posted 12 minutes ago

      After some poking, the function is not firing whatsoever
    • RaphGamingz
      [1.14.4] Dimensions

      By RaphGamingz · Posted 1 hour ago

      Anyone?
    • RaphGamingz
      [1.14.4] Injecting into Existing Loot Tables, Blocks

      By RaphGamingz · Posted 1 hour ago

      Are you sure this is correct, shouldn’t it be  new ResourceLocation(“minecraft”,”grass”) And is the function firing?
    • mervinrasquinha
      Introducing Stonecage

      By mervinrasquinha · Posted 3 hours ago

      If you’re interested in a modpack with a little bit of tech, a little bit of magic, and a lot of adventure, I would love for you to try out my modpack Stonecage. Stonecage takes mods you might have seen before (and many you might not have), and adds a twist to them to make them fresh again. The main gimmick of the pack is that it makes stone unmineable, meaning you’ll have to explore caves and dungeons the way they were intended, and find solutions to problems you never knew existed. It aims to be a hardcore pack that’s more fair than most, and leaves you to seek combat and adventure on your own terms. While you may start out weak, you’ll find magical artifacts known as curios in your adventures that can be crafted into powerful baubles that will help you in combat and elsewhere. You’ll also find pieces of ancient machines that with research can be deciphered and put back together, bringing industry back to a world that has long been without it. The pack is heavily centered around researching these lost machines, and the research table will guide you through the modpack while giving you more freedom than a quest book would. With a small, curated list of mods, most computers will likely be able to run it, and the many, many lines of scripting keep these mods integrated into what feels like a cohesive whole. If this sounds like fun to you, I encourage you to check it out. If you do, I hope you have as much fun playing it as I did creating it.
    • Darth_Cobalt
      Forge 1.14.4 crashes.

      By Darth_Cobalt · Posted 4 hours ago

      Hi I just downloaded forge and every time i try to load it, it crashes. I have tried 1.14.4 - 28.1.0 and 1.14.4 - 28.1.106. It crashes with both versions. I couldn't figure out how to upload the crash files, could somebody explain how I can do that?
  • Topics

    • Oliviafrostpaw
      7
      [1.14.4] Injecting into Existing Loot Tables, Blocks

      By Oliviafrostpaw
      Started December 8

    • RaphGamingz
      1
      [1.14.4] Dimensions

      By RaphGamingz
      Started Yesterday at 07:45 AM

    • mervinrasquinha
      0
      Introducing Stonecage

      By mervinrasquinha
      Started 3 hours ago

    • Darth_Cobalt
      0
      Forge 1.14.4 crashes.

      By Darth_Cobalt
      Started 4 hours ago

    • leonardsores
      0
      Fun mod interactions

      By leonardsores
      Started 4 hours ago

  • Who's Online (See full list)

    • Oliviafrostpaw
    • xerca
    • Redstoneguy129
    • Raelsyl
  • All Activity
  • Home
  • Mod Developer Central
  • Modder Support
  • ForgeGradle
  • [1.7.2] gradle conflicts with libtomcat7 & eclipse
  • Theme
  • Contact Us
  • Discord

Copyright © 2019 ForgeDevelopment LLC · Ads by Curse Powered by Invision Community