Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
2answers
362 views

ggplot2 - Shade area above line

I have some data that is constrained below a 1:1 line. I would to demonstrate this on a plot by lightly shading the area ABOVE the line, to draw the attention of the viewer to the area beneath the ...
4
votes
2answers
862 views

Including a non-Mavenized dependency so it works with maven-shade-plugin

I want to include GData Client, which doesn't use Maven, as a dependency into my Maven project. It ships as a bunch of JAR files. Additionaly, I use Maven Shade Plugin to build an executable JAR ...
3
votes
5answers
217 views

How to create shaded divs like this with CSS

I need to create shaded divs like those shown in the image below, using only CSS. Any idea about how to create them using less coding? Thank you!
1
vote
2answers
241 views

ClassNotFound exception while using the Maven Shade Plugin

I am trying to follow this link: http://maven.apache.org/plugins/maven-shade-plugin/examples.html I am new to Maven. I feel a bit out of depth trying to follow the example. I am able to get Quartz ...
1
vote
1answer
164 views

How to tell if notification shade is pulled down in android

I have a program that creates a notification if the application is not running. To do this, I have used the following code: public void onWindowFocusChanged(boolean focus) { inFocus = focus; ...
1
vote
1answer
708 views

m2eclipse : Maven dependencies as JAR's not projects

I'm having maven project on Eclipse with m2eclipse plugin. This project has some dependencies. Some of them are libraries as slf4j, apache-commons etc. But there are also mine libraries, that I'm ...
0
votes
0answers
49 views

How to know width a circle? or How to draw a outline of a circle?

Right now i'm making my own RadioBox so I'm trying to shadow it but it didn't go as well as with the Checkbox... //Filling the inside; g.setColor(getBodyColor()); ...
0
votes
0answers
47 views

Maven Configuration - Rename dependency w/JarJar or Shade

I'm trying to configure maven to rename an included jar file to satisfy this issue: http://code.google.com/p/google-gson/issues/detail?id=255 Essentially, I need to rename the gson jar to myjson (or ...
0
votes
3answers
94 views

Maven shade jar throw exception

I have the following Exception: Exception in thread "main" java.lang.SecurityException: no manifiest section for signature file entry javax/security/cert/CertificateException.class ...
0
votes
1answer
192 views

Android: make everything around Dialog darker than default

i have a custom dialog with following style: <style name="webtogo_app_style" parent="@android:style/Theme.Dialog"> <item name="android:windowNoTitle">true</item> <item ...
0
votes
1answer
333 views

How can I configure the maven shade plugin to include test code in my jar?

I use the shade maven plugin to build my project so that all of its dependencies are included in one jar (this makes it easier to run it on Hadoop). Shade seems to exclude my test code by default, ...
0
votes
1answer
192 views

Can the Maven shade plugin fail the build when there are duplicate classes?

The Maven shade plugin coalesces your project's Java classes along with its dependencies into a single über JAR file. If there is any overlap (e.g. two dependencies contain a class with the same ...
0
votes
2answers
1k views

Can I specify a JPA compliant persistence.xml file on the java command line?

I've got an UberJar with all my java classes, but want to execute this jar with an external persistence.xml file. Per the specification, Hibernate (or any other JPA provider) looks for the ...