SDK for development of webOS 1.x and 2.x apps using JavaScript and HTML.
1
vote
0answers
24 views
License-Maven-Plugin equivalent in ant
In my Java EE project we are using ANT as the build tool.
Is there an equivalent for License Maven Plugin in ANT World?
2
votes
1answer
49 views
Parallel requests in Mojolicious application
I have perl application which, for example, parallel searching in google:
use Mojo::UserAgent;
use Mojo::IOLoop;
my $ua = Mojo::UserAgent->new();
my $delay = Mojo::IOLoop->delay(sub { say ...
0
votes
0answers
24 views
Does Mojo use jslint nomen flag backwards?
I've just started with jsLint and mojo(1.7.1-alpha-1) so bare with me...
In my pom.xml file which I use for my project I've set the following up for jsLint:
<plugin>
...
0
votes
0answers
18 views
Maven artifact file
I have my custom packaging type (for example, test-type and my mojo for package goal for test-type artifacts).
My package mojo properly set file for artifact ...
1
vote
1answer
27 views
perl how to extract iframes from text with Mojo::DOM
I have this text and when i do:
print STDERR (Mojo::DOM->new($args->{'body'})->at('iframe'));
output:
<iframe allowfullscreen="" frameborder="0" height="360" scrolling="no" ...
0
votes
0answers
31 views
ClassNotFoundException in custom mojo
My maven plug-in has custom Mojo that used google guava (ImmutableList in this case)
<dependency>
<groupId>com.google.guava</groupId>
...
0
votes
0answers
29 views
js-import-maven-plugin issue : Encountering NullPointerException
I am trying to build my js project with maven, but am getting the following exception. I see that a bug for this issue is already reported in JIRA : http://jira.codehaus.org/browse/MJSIMP-5
The error ...
0
votes
0answers
32 views
how to parse the following html?
I have following html i would like to extract information and reshape them into a table-like database:
<tr some parameters here>
<td more parameters here></div>
<div even more ...
0
votes
1answer
33 views
empty Maven mojo parameter instead of null
I was wondering whether it's possible to distinguish "parameter not specified" from "parameter is empty". In both cases the Mojo parameter has the value null.
I want the default value to kick in, if ...
0
votes
0answers
33 views
Unit Testing Maven Mojo - Components and parameters are null
Based on the documentation and mailing threads I have seen 3 ways to inject the maven project into my mojo:
/**
* Project instance
*
* @parameter default-value="${project}"
* @required
* ...
1
vote
1answer
63 views
Can't post json in a Mojo::UserAgent request
I can't get the following Mojo::UserAgent call to post JSON to the server:
use Mojo::UserAgent;
my $ua=Mojo::UserAgent->new;
my $json = $ua->post("localhost:6767" => {} => json =>{ ...
2
votes
2answers
88 views
Is it possible to use Mojolicious tag helpers in external JS files?
I am currently working on cleaning up a little web app I've written in Mojolicious. As part of that cleanup I am separating out my javascript into the public directory from my html.ep files.
The ...
3
votes
0answers
112 views
Mojo development - Handling unresolved dependencies in multi module projects
I have a mojo annotated with @requiresDependencyResolution test.
It works for multi-module projects with a single layer of nesting, but a user has reported an issue with a structure such as below.
...
0
votes
1answer
154 views
Maven Plugin Development - Include Current Project's Resources to Plugin - “include-project-dependencies” - “NoSuchElementException”
I am trying to develop a maven plugin that uses resource files of the project that uses it as a plugin. I implemented that suggestion into my maven-plugin project and it was builded well. But when i ...
2
votes
3answers
220 views
perl Mojo and JSON for simultaneous requests
I'm usually no Perl coder. However I've got to complete this task.
The following code works for me:
#!/usr/bin/perl
use LWP::UserAgent;
use JSON;
use strict;
my $md5 = $ARGV[0];
$md5 =~ ...
1
vote
1answer
65 views
Mojolicious, Layouts and Positioning of Javascript
I want to load most of my scripts in my main layout ( i.e jquery). Now from my understanding it is best practice to position scripts at the bottom of my html page.
However if we put the script at ...
0
votes
0answers
124 views
what's the difference between maven2 and maven3 when specify an expression for a Mojo parameter in Maven
we have developed a maven plugin it can work as expected in Maven2, but when we migrated to Maven3, we got an issue. below is the code snip
/**
* @parameter expression="${classifier}"
* @since ...
1
vote
1answer
108 views
Mojo::CookieJar - how to load cookies from file
How to load cookies from file in Mojo like this code:
my $mech = WWW::Mechanize->new();
$mech->cookie_jar(HTTP::Cookies->new());
if (-e "cookie.txt") {
print q[Cookie file: cookie.txt ...
0
votes
1answer
20 views
how to search maven artifact using mojo?
I'm wring mojo to download artifact from repo (Nexus). But most of the time I know only artifact Id , and version. Is there any way to download artifact only using artifact Id and group id?
0
votes
2answers
90 views
maven mojo for unzip folders?
How to write java program (mojo) to unzip folders in specific location?
I'm new to maven if anyone help me highly appreciate.
/**
* The Zip archiver.
* @parameter \
...
0
votes
0answers
33 views
How to write this maven mojo?
I have a pom.xml file as follows.
<modelVersion>4.0.0</modelVersion>
<groupId>sample.plugin</groupId>
<artifactId>hello-maven-plugin</artifactId>
...
0
votes
1answer
120 views
mojo configuration not initialized before execute in custom maven plugin
Given that I have the following custom mojo...
/**
* @goal portal-test
*/
public class PortalTestMojo extends AbstractMojo {
/*
* @parameter
* @required
*/
private String ...
1
vote
1answer
277 views
parsing with Mojo::DOM
I am using Mojo::UserAgent->new to fetch some XML which has the following format:
<row>
<td> content1 </td>
<td> content2 </td>
<td> content3 </td>
...
2
votes
1answer
682 views
How to configure Selenium HTML Reports in Jenkins
We have a Java MOJO configured in Jenkins. Once the code is build in CI, surefire reports would be generated. We have Junit and Selenium test cases to test the application.
I need to present the ...
1
vote
1answer
28 views
Webos Mojo palm-group change border color and width
Does anyone know what css is needed to change the border color, width and radius of a WebOS Mojo palm-group?
0
votes
1answer
105 views
What exactly are the hibernate mojo plugins like hbm2ddl, hbm2cfgxml, etc [closed]
I am new to Hibernate. I wish to define a database property file like database.properties and a single persistence.xml that would define the entity/table structure. And then I wish Maven and Hibernate ...
0
votes
1answer
118 views
How to set a custom useragent string in Mojo::UserAgent
We have a bunch of code built around Mojo::UserAgent and migrating to MojoX::UserAgent is not quite an option. I wonder if there is a way to get/set user agent string in Mojo::UserAgent?
1
vote
1answer
185 views
Maven cannot find JRuby mojo descriptors
I followed the instructions to the letter in this blog post by Sonatype on writing a Maven plugin in Ruby.
When I try running mvn install (Maven 3.0.4), the build is successful, but ...
1
vote
1answer
105 views
Dynamically adding mojo-generated code to source path
I have authored a mojo that generates code and sticks it under {root}/target/generated-sources/foo. When I execute:
mvn clean install
I get errors indicating that the generated sources are not ...
0
votes
1answer
359 views
“GWT module may need to be (re)compiled” when deployed into the Tomcat and the war is generated with maven
I got the issue( "GWT module 'SmartWPS' may need to be (re)compiled") while accessing the url. I have generated the war file by running maven-clean-install. I placed the same war file in the /webapp ...
0
votes
1answer
184 views
pass string with white space using commandlineArgs in maven commandlineArgs plugin
Is it possible to add double quote to the commandlineArgs of the maven mojo plugin?
On the batch i have %1 - getting just first part of the string until the first white space
I tried quot: " ...
1
vote
0answers
690 views
goal execution “generateAsync” is not recognized by gwt-maven-plugin in Maven
I'm developing an application (Project A) that consume some sources from Project B. The pom.xml of project A is:
<project xmlns="http://maven.apache.org/POM/4.0.0" ...
0
votes
0answers
56 views
Is there a way to get feedback on compilation of jasperreport with maven?
I just wondered if anyone got the mojo plugin for jasperreport to tell something about how the build is going?
I run the compilation through maven (no fancy stuff, just a big project), and the output ...
1
vote
2answers
192 views
Maven : what does “build life cycle mapping” mean
I have been trying to understand the concepts of Maven and I find it difficult to understand the terminology used.
I came across this term "build life cycle mapping". Could anybody give me a clear ...
2
votes
3answers
380 views
Maven Password Encryption for Other Properties
I would like to use Maven's password encryption such as it uses for nodes for properties of a Mojo. I tried just pasting an encrypted password into the correct property for the mojo, but it treated ...
4
votes
1answer
663 views
Java Maven MOJO - getting information from project POM
I am working on a maven plugin. I seem to have a hard time figuring out, what would be a good way to get POM information from project in which you execute the MOJO ?
For instance if I execute my mojo ...
0
votes
2answers
91 views
Custom type converter for Mojo configuration?
I need to use custom type, e.g., LunarDate, in my Mojo object:
class MyMojo extends AbstractMojo {
/** @parameter */
LunarDate lunarDate;
}
And I want to configure the parameter in ...
0
votes
1answer
42 views
Can I use Mojo.Controller.showAlertDialog within PhoneGap?
This afternoon I'm trying PhoneGap 1.5, and I cannot use navigator.notification.alert("Hello", function() {}, "OK") but navigator.notification.alert("Hello") works. I checked phonegap.js and did find ...
1
vote
0answers
222 views
maven custom lifecycle is not recognized
I am trying to test a simple custom plugin with custom lifecycle.
Here is my EchoMojo.java file:
package org.sonatype.mavenbook.plugins;
import org.apache.maven.plugin.AbstractMojo;
import ...
2
votes
1answer
431 views
Maven Codehaus findbugs plugin “onlyAnalyze” option not working as expected
Update for the impatient: it's simple, use package.- for sub-package scanning instead of package.*, as-per martoe's answer below!
I cannot seem to get onlyAnalyze working for my multi-module project: ...
1
vote
0answers
646 views
How do I write Image Binary Data into local file system using Node.js services on webOS?
I am trying to write image data received from Evernote getResourceData-method, into local system in JavaScript code using Node.js. The image file is getting saved successfully, but looks like it is ...
18
votes
2answers
4k views
MOJO (maven) what is it? stands for what?
Maybe it will be a silly question, anyway...
I'm reading about Maven right now and everywhere in text in see this word (mojo).. I approximately understand what it's mean, but I would not refuse from ...
2
votes
1answer
423 views
Creating a Maven Mojo that automatically adds new source folders to the build
I have created a new compiler for the maven-compiler-plugin. This compiler likes to look for compile sources in both src/main/groovy and src/main/java. Similarly, test sources are in both ...
0
votes
1answer
531 views
Maven Scriptlets
when I am builting my project in NetBeans using Maven I get this warning message:
[WARNING] DEPRECATED [postinstallScript]: Use postinstallScriplet
[WARNING] DEPRECATED [preinstallScript]: Use ...
2
votes
1answer
65 views
How to detect whether a Kind is already registered or not
I am using db8 database and the Foundations JS library to interact with it in a Mojo 2.0 app. When I try to do a find to fetch objects of a kind which is not registered I get an error saying that the ...
1
vote
0answers
83 views
Suddenly not able to call Mojo.Controller.stageController.pushScene() from app-assistant
Here is how the code is.
function AppAssistant() {
this.dbObj = new DatabaseAssistant();
this.schemaObj = new SchemaAssistant();
this.result = {};
}
AppAssistant.prototype.setup = ...
2
votes
1answer
439 views
hp webos, pdk plugin defunct in hybrid app.
I have been trying to call a pdk plugin from the mojo hybrid app and have also tried the same with enyo app. In both cases my pdk plugin is shown as , Interesting thing is in case of enyo, i received ...
1
vote
0answers
50 views
Passing Variables values between different MOJO's
I have created two Maven Plugin MOJO's.
Mojo 1 identifies the projects to be built.
Mojo 2: The other MOJO tries to package and build each of the project identified by the previous MOJO.
I am ...
1
vote
2answers
451 views
Does HP webOS have a WYSWYG GUI design tool?
I hope to migrate one of my apps to HP webOS. Does webOS have WYSIWYG GUI tool that integrates with Mojo or Enyo, or do have to use a HTML/CSS/JavaScript editor?
0
votes
1answer
320 views
Passing parameters to Custom Lifecycle from a mojo
i have written a custom maven plugin which extends the axis2 wsdl2java plugin with the concept of creating custom lifecycle where the wsdl2java plugin is executed before goal of my custom plugin is ...

