Tagged Questions
1
vote
2answers
239 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 ...
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
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
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 ...