wicket is secure by default. why use spring security?

2011-09-19 Thread Zilvinas Vilutis
Hi all Wicket users. While I was trying to design a wicket app in my mind - the first thing I thought of was authentication and ( spring ) security. I know that wicket is secure by default ( a quote from wicket features? :), we can use wicket auth annotation based security. Wicket will

Re: Maven release from Git branch

2011-09-19 Thread Brett Porter
On 17/09/2011, at 12:37 AM, Stuart Sierra wrote: Hello list! I use Git, maven-release-plugin, Hudson, and the Hudson M2 Release Plugin. Can I perform a release from a Git branch other than master? Right now, to do a release, Hudson checks out the master branch and calls mvn

[ANN] webstart-maven-plugin-1.0-beta-2 Released

2011-09-19 Thread Tony Chemit
Hi, The Mojo team is pleased to announce the release of the webstart-maven-plugin version 1.0-beta-2. The Webstart Maven Plugin generates application bundles that can be deployed via Web Start. The plugin can be used to prepare standalone Web Start applications or Web Start applications bundled

maven build with android API 11 failed, Cann't find symbol

2011-09-19 Thread darakok
I use maven to build my android project. It was working fine until I make use of method exclusively available to API 11 and above. In the pom file, I do change the android build version to 11. So presume I have set the right android jar for maven build to succeed. But it turns out to be completely

Re: maven build with android API 11 failed, Cann't find symbol

2011-09-19 Thread Guillaume Polet
Not much information here, but I guess that when you say 11 you mean that this is the target level. From what it looks like, it seems that android API jars for that version are not available. See also this:

Re: wicket is secure by default. why use spring security?

2011-09-19 Thread Zilvinas Vilutis
please discard this email. wrong mailing list :) Žilvinas Vilutis Mobile:   (+1) 623 330 6048 E-mail:   cika...@gmail.com On Mon, Sep 19, 2011 at 12:55 AM, Zilvinas Vilutis cika...@gmail.com wrote: Hi all Wicket users. While I was trying to design a wicket app in my mind - the first thing

Re: wicket is secure by default. why use spring security?

2011-09-19 Thread Martijn Dashorst
The default auth-roles project is just an example of how to do *simple* authentication and authorization. It only supports 3 roles: not logged in, logged in user and administrator. For more complex things or flexibility you'll need something like Apache Shiro, Wicket Security (now hosted on wicket

Re: Is there a plugin to check the standard directory layout?

2011-09-19 Thread sebb
On 19 September 2011 03:49, Barrie Treloar baerr...@gmail.com wrote: On Mon, Sep 19, 2011 at 10:56 AM, sebb seb...@gmail.com wrote: The standard directories layout http://maven.apache.org/guides/introduction/introduction-to-the-standard-directory-layout.html lists what you are looking for.

Re: Is there a plugin to check the standard directory layout?

2011-09-19 Thread Barrie Treloar
On Mon, Sep 19, 2011 at 9:18 PM, sebb seb...@gmail.com wrote: I don't think the meta-information about locations is available to Maven from the plugins, each plugin defines its own configuration and Maven doesn't interpret that in anyway. You would have to bake each plugin's default layouts

Re: maven build with android API 11 failed, Cann't find symbol

2011-09-19 Thread darakok
This is part of my POM file where i specify the version of Android API jar file to compile with. plugin groupIdcom.jayway.maven.plugins.android.generation2/groupId artifactIdmaven-android-plugin/artifactId

Re: maven build with android API 11 failed, Cann't find symbol

2011-09-19 Thread Guillaume Polet
Find my answers in your e-mail: Le 19/09/2011 15:20, darakok a écrit : This is part of my POM file where i specify the version of Android API jar file to compile with. plugin groupIdcom.jayway.maven.plugins.android.generation2/groupId

Re: maven build with android API 11 failed, Cann't find symbol

2011-09-19 Thread darakok
I think you're right. My dependency references Android 2.2. dependency groupIdandroid/groupId artifactIdandroid/artifactId version2.2_r2/version scopeprovided/scope

Re: maven build with android API 11 failed, Cann't find symbol

2011-09-19 Thread Manfred Moser
Use my Maven Android SDK Deployed you can find on github and add a dependency as documented in the readers. The version should be 11_r1 on the dependency... Manfred darakok mrpc.cambo...@gmail.com wrote: This is part of my POM file where i specify the version of Android API jar file to

Re: maven build with android API 11 failed, Cann't find symbol

2011-09-19 Thread Guillaume Polet
OK, I guess this is the main issue then. From what I understand: * Android guys do not publish their jars to a public Maven repo * If the version used in your dependencies matches the ones used by the Android team, then 2.2= API Level 8. If you want API Level 11, you need version 3.0

Re: maven build with android API 11 failed, Cann't find symbol

2011-09-19 Thread darakok
Thanks a lot. -- View this message in context: http://maven.40175.n5.nabble.com/maven-build-with-android-API-11-failed-Cann-t-find-symbol-tp4818232p4819252.html Sent from the Maven - Users mailing list archive at Nabble.com. -

Plugins not properly loading properties

2011-09-19 Thread Maven User
Hi all - Quick question, I think there's some confusion on my end. We have a plugin that loads properties into the reactor so they're available for things like resource processing, various other plugins, etc. However, when using the tomcat plugin directly on the command line (such as mvn

RE: Project With Many Artifacts - Maven Install Artifacts Problem

2011-09-19 Thread Robert Scholte
Check the build-helper-maven-plugin http://mojo.codehaus.org/build-helper-maven-plugin/attach-artifact-mojo.html -Robert Date: Thu, 15 Sep 2011 04:46:04 -0700 From: rodrigo.zampi...@gmail.com To: users@maven.apache.org Subject: Project With Many Artifacts - Maven Install Artifacts

Re: Plugins not properly loading properties

2011-09-19 Thread Anders Hammar
When you execute mvn tomcat:deploy you're NOT executing the build lifecycle but only the specify plugin goal. Thus, your plugin that loads the props is not executed. /Anders On Mon, Sep 19, 2011 at 17:35, Maven User maven.2.u...@gmail.com wrote: Hi all - Quick question, I think there's some

Re: Plugins not properly loading properties

2011-09-19 Thread Maven User
Yet it gets properties from profiles/plugin configuration/etc? On Mon, Sep 19, 2011 at 2:35 PM, Anders Hammar and...@hammar.net wrote: When you execute mvn tomcat:deploy you're NOT executing the build lifecycle but only the specify plugin goal. Thus, your plugin that loads the props is not

Re: Plugins not properly loading properties

2011-09-19 Thread Anders Hammar
It will get properties defined in the effective POM. /Anders On Mon, Sep 19, 2011 at 21:48, Maven User maven.2.u...@gmail.com wrote: Yet it gets properties from profiles/plugin configuration/etc? On Mon, Sep 19, 2011 at 2:35 PM, Anders Hammar and...@hammar.net wrote: When you execute mvn

Re: Plugins not properly loading properties

2011-09-19 Thread Maven User
And there's no way to inject the property files we've loaded at that level? On Mon, Sep 19, 2011 at 3:59 PM, Anders Hammar and...@hammar.net wrote: It will get properties defined in the effective POM. /Anders On Mon, Sep 19, 2011 at 21:48, Maven User maven.2.u...@gmail.com wrote: Yet it

Re: Plugins not properly loading properties

2011-09-19 Thread Anders Hammar
I don't think so unless the tomcat plugin can be configured to use it. Using a separate properties file is IMHO not a good idea, for reasons you now see. And there are even worse examples where you could effectively be distributing a non-working pom making people using your artifact lives'

Re: Plugins not properly loading properties

2011-09-19 Thread Maven User
BTW - this is totally not the behavior we're seeing with a tomcat:deploy. That seems to go through all the standard build lifecycle goals, then NOT pull in any dynamically loaded configuration...

Re: Plugins not properly loading properties

2011-09-19 Thread Maven User
How does this work when you have to deploy the same artifact to 10 different environments? 10 profiles and build the artifact 10 times? On Mon, Sep 19, 2011 at 4:25 PM, Anders Hammar and...@hammar.net wrote: I don't think so unless the tomcat plugin can be configured to use it. Using a

Re: Plugins not properly loading properties

2011-09-19 Thread Wayne Fay
How does this work when you have to deploy the same artifact to 10 different environments? 10 profiles and build the artifact 10 times? We get this question so often on this list, and similar questions. You should check the archives for various comments. The standard answer is use JNDI or

Re: Plugins not properly loading properties

2011-09-19 Thread Maven User
I'll admit knowing this was a loaded question. I've previously solved this via a separate configuration artifact. I was just shocked to see how m3 doesn't allow the import of property files anymore the way 2.2.1 did. Thanks again all - I appreciate it! On Mon, Sep 19, 2011 at 5:19 PM, Wayne

Re: Status of Maven Ant Tasks in Maven 3

2011-09-19 Thread alejandro.alves
Hello, I am having the same issue, how could I solve the problem. Best regards -- View this message in context: http://maven.40175.n5.nabble.com/Status-of-Maven-Ant-Tasks-in-Maven-3-tp4574457p4819792.html Sent from the Maven - Users mailing list archive at Nabble.com.

Re: Status of Maven Ant Tasks in Maven 3

2011-09-19 Thread Jason van Zyl
The resolution logic for Maven 3.x is done by Aether, so you may want to look at the Aether Ant Tasks[1]. [1]: https://github.com/sonatype/aether-ant-tasks On Sep 19, 2011, at 1:47 PM, alejandro.alves wrote: Hello, I am having the same issue, how could I solve the problem. Best regards

Re: Status of Maven Ant Tasks in Maven 3

2011-09-19 Thread Paul King
So would you describe the Aether Ant Tasks as almost a drop in replacement for the (dependency resolution part of the) Maven Ant Tasks? Thanks, Paul. On Tue, Sep 20, 2011 at 10:23 AM, Jason van Zyl ja...@maven.org wrote: The resolution logic for Maven 3.x is done by Aether, so you may want to

[maven-plugin-plugin] Is there a way I can have Ddetail default to true when generating HelpMojo?

2011-09-19 Thread cyoung
I'm getting a hang of the maven-plugin-plugin and there's one thing I can't figure out how to accomplish When I generate a HelpMojo with the http://maven.apache.org/plugins/maven-plugin-plugin/helpmojo-mojo.html helpmojo goal , the detail parameter is set to 'false' automatically by helpmojo

Re: Status of Maven Ant Tasks in Maven 3

2011-09-19 Thread Jason van Zyl
What's in the Aether Ant Tasks is identical logic to what Maven 3.x does. On Sep 19, 2011, at 8:51 PM, Paul King wrote: So would you describe the Aether Ant Tasks as almost a drop in replacement for the (dependency resolution part of the) Maven Ant Tasks? Thanks, Paul. On Tue, Sep 20,