0
votes
0answers
12 views
Tomcat Server not responding when adding tomcat-catalina dependency
I'm having problems using Websockets on a Tomcat 7 (JBoss EWS 2.0)- Server on Openshift. It seems that once I add a dependency for the tomcat-catalina package in the pom file and deploy, the server ...
2
votes
1answer
31 views
Explanation of module dependencies Java
I'm sure this is probably a duplicate question, but I'm trying to understand why...
A, B and C are plain old Java modules - A and B are libraries, C is an application.
if B depends on A
and C ...
0
votes
0answers
14 views
JDialog influence each other [closed]
I set an JDialog for plotting, Plot object.
And I call it twice, like:
double[] data1 = new double[m][n];
double[] data2 = new double[m][n];
// initialize data1, data2
Plot plot1 = new Plot(data1);
...
0
votes
1answer
49 views
+150
CloudBees Runtime Classpath
I just read the CloudBees whitepaper "CloudBees Advantages: A Guide for Java Developers". In it there is a sentence that reads:
The database is simply available as a JNDI resource as soon as it is ...
1
vote
2answers
39 views
Maven - Set Properties for Dependency
How To set properties for Dependency?
I'm in the process of converting a java project to a maven project.
Before converting to Maven, i had the jar iijdbc.jar and iijdbc.properties file in ...
0
votes
1answer
19 views
Listing or bundling all needed dependencies of a Jar file. How?
I'm currently working with a .jar file that needs other .jar files to work correctly. The problem is that some of that jar dependencies will depend yet in other jar dependencies. The game goes on.
...
2
votes
0answers
56 views
Using Overtone in Jython / Clojure Dependencies in Jython
I'm currently working on a project that primarily uses Jython, but makes use of interop (using rik0's pyclj solution) with Clojure to utilize the Overtone library. Typically, leiningen is the primary ...
0
votes
1answer
30 views
How to create a jar with dependencies as main build artifact, later used by assembly plugin?
I've been working on a Java Maven project that ultimately creates an executable jar file. At first I had no issues, but then I decided I wanted the dependencies to be copied into the jar as well.
I ...
0
votes
4answers
39 views
What maven dependency do I need to get FileCredentialStore?
I want to get access to google-analytics via the java api (v3). For logging in I want to use OAuth2. I found a java example, that shows how to do it. Unfortunately I am not able to compile the code I ...
1
vote
1answer
37 views
A way to get project dependencies (as classes not .jars)
Does anyone know of a way to get the exact class dependencies of a project (not which jars it depends on)? Then to find these dependencies in the jars in your classpath.
For instance if I use ...
0
votes
1answer
42 views
Android views from .xml to .java - dependencies
I just worked a little on an application just to train. Fast I noticed .xml created views have an influence on performance so I decided to code them in the activties.
But I dont know how to set up all ...
1
vote
1answer
29 views
What is a portable way to list all imports required by a complied Java class
I'm looking for a few ideas to quickly generate an list of imports requires by a java class. Ideally this could be done using javap or some other tool found in the JDK.
I'm not interested in a GUI ...
1
vote
2answers
38 views
Issue creating and using a custom jar file
I have prepared some util classes.
I planned to make them as jar and distribute it to required projects.
My util classes uses some already existing custom code provided in the form of jar file.
My ...
0
votes
1answer
38 views
In which jar of tika I must to depend?
I want to use Tika for extracting the text of some file formates like .doc, .ppt and so on.
Currently I'm depended to tika-app-1.2.jar, but I think depending to this jar is not a good idea because ...
0
votes
1answer
59 views
IntelliJ not using external Jar's if not added via Maven when running JSF application?
I have a very simple line of code that is called from an .xhtml file ( in a JSF 2.0 project ) which looks like:
try {
Class.forName("com.mysql.jdbc.Driver");
}catch(Exception e) {
...
2
votes
2answers
48 views
Using Gradle Prevent 3rd Party Library from being on Compile Classpath
I have a multi-project Gradle build. I have Sub-Project-A that depends on Sub-Project-B. Sub-Project-B has a compile time dependency on SLF4J. I do not want Sub-Project-A to be able to compile against ...
0
votes
1answer
39 views
Maven: Build dependencies with dynamic params on persistence.xml file when main project is been compiled
I am a new maven user.
I am developing differents projects that depends on a maven project that needs to connect to db using JPA. So, for each parent project I need to set the db URL, user name and ...
0
votes
0answers
56 views
@FormDataParam throws SEVERE: Missing dependency and doesn't permit to deploy
I'm trying to upload a file, but the use of @FormDataParam doesn't permit the application to deploy. The interested code is the following:
@POST
@Path("sync")
public String callServletSyncPost (
...
0
votes
1answer
106 views
Heroku Play framework 2 sbt dependencies cache
I managed to add some dependencies (via the sbt dependency manager in play framework) that seem to be in conflict with other libraries I use. However when i removed them from the sbt dependency ...
0
votes
2answers
62 views
StringEscapeUtils can not be resolved
I have added the dependency in pom.xml
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
...
0
votes
1answer
55 views
android multiple projects share same library issue
I am developing android apps using android sdk. I have a common library that is shared by multiple projects. The projects use the same code from the shared library but with their own res, image, and ...
1
vote
0answers
38 views
Lock dependencies by secure checksum in Maven
When I distribute a source project with a POM I can define dependencies with version strings. The build will download those dependencies if they are not in the local repository, it will even verify ...
0
votes
1answer
28 views
install maven artefact with dependecies
I want to create a maven artifact from an existing jar. So far so good. The problem is that in said jars class-Path several other jars are referenced.
Is there a way to also create artifacts from the ...
0
votes
1answer
74 views
Cannot load JVM
I'm trying to run java code from C using code taken from here. The code that attempts to run JVM is as follows:
JNIEnv *env;
JavaVMInitArgs vm_args;
JavaVMOption options;
...
0
votes
1answer
35 views
maven compilation errors
In my app I have two modules. I need to import classes from one of them to another. for this I add a dependency to the second like this:
<dependency>
...
0
votes
1answer
133 views
JAVA/JNI - Load native DLL with circular dependency
I try to load c++ code in my java project with JNI. I have many several DLL to load, and unfortunately there is a cyclic dependency between two of them : dll A needs dll B which in turns need dll A !
...
2
votes
1answer
130 views
Maven: javaee-api vs jboss-javaee-6.0
I want a Java JEE6 project built with maven, and I want it standard
So, I put this in my pom.xml:
<dependency>
<groupId>javax</groupId>
...
1
vote
1answer
890 views
Unable to execute dex & Conversion to Dalvik format failed
I've seen this question being asked and answered a few times but it didn't work for me.
Eclipse is throwing:
[2013-03-16 17:45:34 - Dex Loader] Unable to execute dex: Multiple dex files define ...
-2
votes
1answer
90 views
FileNotFoundException when running Maven generated jar
Trying to create my first ever executable jar and am using Maven to do so.
The Java runs fine by itself but when I try and run the jar I get a FileNotFoundException for src\main\resources\sound.wav.
...
0
votes
0answers
38 views
What are the minimally necessary gradle commands after changes in imports
I have got a workspace consisting of about 30 projects.The workspace is supported by Gradle, projects are edited, built and launched in Eclipse.
When I want to make some non-trivial refactoring, it ...
0
votes
3answers
34 views
How do I use a class from a package listed as a dependency in maven?
New to Java and Maven and having trouble with a dependency. (Not using an IDE)
In the pom.xml for my project I have:
<dependency>
<groupId>org.apache.pdfbox</groupId>
...
7
votes
2answers
116 views
Solving java classpath hell in legacy junit test suite
Suppose I have a legacy JUnit test suite that includes the following tests:
public class AwesomeTest {
public void testBusinessLogic() {
...
[awesome mocking library]
...
}
}
...
0
votes
2answers
43 views
Create a entity mapper with cyclic dependencies
I've a problem with a project i'm working on. I need to create a mapper that convert an entity object to it's VO (Value Object) form, i need to do that to limit dependencies between my persistence ...
-3
votes
2answers
58 views
Suggestions for using spring in fairly small project [closed]
I am working on a small java application and I was considering using Spring IOC in it. I am new to Spring. Please suggest if it would be better to go with Spring or not. In my use case there are only ...
2
votes
1answer
83 views
org.apache.http library missing package
I am writing unit tests for an application that hits another companies web servers using apache's httpclient (v4.2.3). I would like to mock the functionality of the web servers for reliable unit test ...
1
vote
0answers
45 views
Deploying Multiple wars and handling theirs dependencies
I have 5 .war files deployed in tomcat 7 that uses common 3 rd party jars for now.
I use shared/lib for putting depended jars for all wars. The problem with this approach is that If i want to change ...
0
votes
0answers
54 views
Android dependency not updating in Eclipse
I have two projects in Eclipse, one is Android Java, the other is regular Java. The regular Java is a dependency of the Android one. Specifically, I'm using libGDX to make an Android game.
If I ...
1
vote
1answer
238 views
Spring-free Hibernate DAO and @Repository for Exception translation! Isn't that dependency?
I've read that the new way of creating Hibernate DAO is using Hibernate contextual sessions. The main reason being to avoid the Spring based HibernateTemplate/HiberateDaoSupport and thus Spring-Free ...
0
votes
2answers
27 views
Repeating a dependency used transitively?
I have a project X that depends on project Y and Z
Project Y also depends on project Z
If I specify only that X depends on Y in my pom.xml, then everything still works because dependency Z is ...
1
vote
1answer
117 views
Cannot deploy WAR: ClassNotFoundException - What am I still missing?
I'm building a project based on Spring and Hibernate inspired to a Spring MVC tutorial I downloaded. I basically inherited pom.xml and constructed the Eclipse project by it, writing Java code from ...
1
vote
4answers
50 views
Validating data
I've got two validator classes. Let's say: Car Validator and Wheel validator, and the second one is enclosed in first.
CarBodyValidator.validate(){
WheelValidator.validate();
}
I have more ...
1
vote
0answers
22 views
How do i install xuggler dependencies on linux? [duplicate]
Possible Duplicate:
Beginner’s Guide to Setup Xuggler
I downloaded xuggler-xuggler-5.4.jar which I've successfully added to netbeans. The problem is getting it work since it has so many ...
1
vote
0answers
105 views
Map Maven artifacts to Debian packages
I have to create Debian packages for all applications in my current project. These are the standalone applications that are launched like "java -jar ....".
Each project provides its own JAR artifact ...
0
votes
1answer
81 views
Sonar not finding dependencies in sonar.api.resources
I'm attempting to run static analysis on my project using sonar runner but I'm getting the following error:
Exception in thread "main" org.sonar.runner.RunnerException: org.picocontainer.i
...
0
votes
1answer
52 views
setting up dependencies in a maven project in Netbeans
I have a maven based project, which I need to setup in my netbeans. After many a hours I still cannot figure out following issues.
The tomcat is installed by Netbeans, but still I'm unable to ...
0
votes
1answer
35 views
caller priority for Ivy dependency versions [duplicate]
Possible Duplicate:
A way to control dependencies ranges for upstream dependencies using Ivy?
My Ivy repository contains:
libAbc version 2.4 and 2.5 – no dependencies
libXyz ...
0
votes
1answer
61 views
Add resolver in Ivy
I'm new to Ivy and I'm just trying to add a resolver to my ivysettings.xml :
<?xml version="1.0"?>
<ivysettings>
<settings defaultResolver="maven" />
<resolvers>
<chain ...
1
vote
1answer
45 views
Avoiding/Resolving duplicate classes in Maven Project
I have one huge project A and which has dependency project B (which is not in our control).
The problem is when I include B under A project pom.xml, everything is fine and the build is successful.
...
0
votes
3answers
95 views
Maven don't add libraries
I use eclipse and Apachw Maven. I install maven plugin for eclipse. And have project. I add some dependencies for servlet-api into my pom file you can see them :
<dependency>
...
3
votes
1answer
198 views
Setting up client Google Tasks App
My Question: How do I properly setup the Google Tasks client library api so I can build my app? (i.e. this may be just a dependency problem due to poor documentation).
The problem: Google Tasks has ...




