1
vote
1answer
65 views

IntelliJ fails to sync changes in the target folder

Intellij 12.0.4 (build 123.169) on Linux Mint 13. When I run maven tests from command line, I can see the changed contents of the target folder in the file explorer, but not in IntelliJ. I have ...
0
votes
3answers
365 views

Javac version 1.7 not able to build for target 1.7

I am trying to compile Java code, with Sun Java JDK 1.7.0_17, on a Linux Mint system, but I'm getting this problem. $ javac -version -target 1.7 javac 1.7.0_17 javac: invalid target release: 1.7 ...
0
votes
3answers
174 views

Target android 4.1 works on previous versions?

I have a question that may seem stupid, but I have exclarecer this ... I have an app for android that due to the use of apis had to put targeting Android 4.1. My doubt is whether the app will work ...
0
votes
1answer
35 views

Check properties ant file in a target

I'm a novice in Java. In my Ant file, I would like to create a target "init" which checks if the properties declared exist (else it affects them a default value), but I don't have any idea how to do.
0
votes
0answers
87 views

jar works in classpath not in targetplatform eclipse

I have a jar that is working fine in Eclipse in other peoples Eclipse environments here. When I add it to mine, it does not get resolved but when I open target platform state, it is present there. If ...
1
vote
2answers
157 views

Wicket - Progress/Multiple Label Updates

I'm not sure if this is even possible. It would seem like there would be a way to do this when you click a "submit" button. private Button getButton(String id) { return new AjaxButton(id) { ...
3
votes
2answers
302 views

How to configure Maven to build two versions of an artifact, each one for a different target JRE

I have a maven module that I need to use in the J2ME client and in the EJB server. In the client I need to compile it for target 1.1 and in the server for target 1.6 . I also need to deploy the 1.6 ...
0
votes
1answer
129 views

NetBeans: Starting a .exe from the run (F6) button

(New to NetBean using v7.1.1) I am working on a java class library that is a plugin to a larger application (.exe). I would like to have my host application start when press the F6 button or do the ...
1
vote
2answers
2k views

Add SDK to eclipse and no Target

I have installed android SDK in my computer successful.but when i configure the environment in eclipse.it show "No target available". Actually,i had loaded API form 1.6 to 4.0.I tried many ways to ...
3
votes
5answers
901 views

webdriver target=“_blank”

Page has image with hyperlink and that hyperlink has target="_blank" and every time i press that image loads new firefox and that hyperlink is redirected to that new firefox web and i lose all ...
0
votes
1answer
267 views

maven-compiler-plugin parameters are not considered

I have a maven pom file with the following compiler-plugin, for some reason the instructions to compile with source/target 1.5 are not taking effect on "mvn compile". my JAVA_HOME is set to a valid ...
0
votes
3answers
522 views

what happens when we Build a java web project

I am a newbie to J2EE and I am not able to understand the directory structure created on building the java web project. After bit of googling i understood what we store in WEB-INF but 1)i am not able ...
1
vote
2answers
977 views

Ant in Netbeans: overriding run target doesn't work

I am trying to override the "run" target in a Netbeans project. What I'm doing is editing the file build.xml: <project name="Test123" default="default" basedir="."> <import ...
5
votes
3answers
3k views

What does this symbol mean in IntelliJ?

Under the target folder in IntelliJ for a Java project I created, I have a few java source files in the package. Beside each file the 'J' icon has a red circle with a line through it. What does that ...
2
votes
4answers
143 views

What's the best approach to build the same Android apps for different public?

I'm working on an app that is meant to be used by fans of a sport team. In the future, I expect to use the same app but for any different team. So, what changes would be the colors, team logo, app ...
2
votes
2answers
2k views

How do I know that the Soundpool is ready using SDK target below 2.2?

This question is related to this one. I managed to modify my code to use SoundPool instead of AudioManager. Know it works more or less. public class Sound { private static boolean sound = true; ...
13
votes
2answers
3k views

Is it possible to have Ant print out the classpath for a particular target? If so, how?

I'm trying to get a target to build that has quite a long list of <pathelement location="${xxx}"/> and <path refid="foo.class.path"/> elements in its <path id="bar.class.path"> ...
3
votes
2answers
153 views

Why is using a period to separate words the convention for target names in an Ant build file?

I never quite understood this, since the name attribute appears to support spaces, but every example uses the harder to read period to name targets. Why do this: <target ...