SDK for development of webOS 1.x and 2.x apps using JavaScript and HTML. or... Most commonly used to designate plugin development in Maven (Java build tool). For the Perl web toolkit, use [tag:mojolicious] Mojo is also a programming language and superset of Python. Check https://www.modular.com/mojo for more details.
Questions tagged [mojo]
244 questions
0
votes
0 answers
How do you use Mojohaus maven plugins?
So I'm trying to follow along with this tutorial.
I usually work with Gradle, so I'm not too savvy about maven plugins, but there's not much Gradle to be had out there, so ... Maven it is.
But when IntelliJ protested it couldn't find the…

User1291
- 7,664
- 8
- 51
- 108
0
votes
1 answer
Got "water.exceptions.H2ONotFoundArgumentException" when try to export mojo model
I have build a StackedEnsembleModel by using autoML in my java code. But I got "water.exceptions.H2ONotFoundArgumentException: Failed to find schema for version: 3 and type: StackedEnsembleModel" exception when I try to export the model to a mojo…

ppzhupapa
- 25
- 4
0
votes
0 answers
Why Maven mojo does not delete, move or replace files
I have created a new Maven mojo plugin. I want to rename some generated files from another plugin, replace content for some files.
This is my mojo:
package com.mymojo.maven.plugins;
import java.io.File;
import java.io.IOException;
import…

sajux
- 106
- 1
- 8
0
votes
2 answers
R: Plot trees from h2o.download_mojo(), keep encountering error
I keep encountering errors when I'm trying to plot trees from h2o.download_mojo(). I followed the official instructions:
# Now download the latest stable h2o release from http://www.h2o.ai/download/
# and run the PrintMojo tool from the command…

EmLp
- 13
- 6
0
votes
2 answers
How can you chain/stitch Maven plugins?
I want to chain two Maven plugins which should execute in sequence. The output from the first plugin should be used as input for the second plugin. Let me explain:
I want to write a plugin which generates resources and sources, such as…

De Neiza
- 3
- 2
0
votes
1 answer
Mojo complex dependency injection
I'm trying to use the @Parameter above a field in a mojo.
@Parameter(required = false)
public Map authentication;
In plugin usage I'm passing:
a
…

André Vinícius
- 411
- 4
- 12
0
votes
1 answer
Loading "modules" in Mojolicious
Need for help. Necessary to implement the installation and loading of "modules". "Module" plug-in is located in the file like lib//. I think I should somehow take the search subdirectories lib/ for "module", load the plugin to check if it is…

VeroLom
- 3,856
- 9
- 34
- 48
0
votes
0 answers
Best way to attach additional jars to maven project [java]
I have a maven based project, which after execution I want to install all the generated jars to the maven repository.
I cannot add additional jar details in the pom.xml because the additional jars are not static.
The only option for me to add them…

Daisy
- 1
- 2
0
votes
2 answers
Verilog Reg Array
Having a bit of trouble with looping through a 1D reg array.
ultimately I am trying to accomplish the following.
in "Listen" state, the rx_values fill a read buffer (4 8-bit characters) to store the characters being typed in a console and echo…

Equinox86
- 11
- 3
0
votes
0 answers
How can I process a remote file given Maven information (artifact id, group id, and version)
I'm writing a maven plugin to find out if the dependencies for a given application (local) exist in a different application (remote), this would let me see if the local program i have is compatible with a different program. I could use the…

legs
- 33
- 6
0
votes
0 answers
Access a maven resource jar from java code
I am creating a maven plugin and need to retrieve a jar from within my code. I don't want to just search through the .m2 folder, but actualy use maven to retrieve the requested resource (both local and remote resources). How can I do this?
PS, once…

Rik Schaaf
- 1,101
- 2
- 11
- 30
0
votes
1 answer
How to make list in webOS look like Grid?
I tried 'float: left;', but when scrolling(slowly is clearer), only one list item scroll..but not numItem of one row..(But photos app built in palm pre ROM woks just fine)
In one file:

Tsung.W
- 289
- 1
- 4
- 8
0
votes
0 answers
Custom maven goal as part of project? (MOJO)
I've been working on this all day and can't seem to find a solution to fit my requirements.
Addition to compile life cycle that generates code. (I thought a MOJO would work here)
MOJO depends on compiled code to generate 'new' parts.
MOJO is only…

Craig
- 3,043
- 8
- 24
- 25
0
votes
1 answer
Camel in action codehaus.mojo plugin error
Hi I am learning Camel (using Camel in action). When I try to run a Maven command in cmd e.g. mvn compile exec:java -Dexec.mainClass=camelinaction.GreetMeBean
I get an error:
[ERROR] Failed to execute goal…

Kay
- 799
- 1
- 11
- 29
0
votes
0 answers
Create parameterized test for my mojo from Java queue
The issue is that I have a queue of test cases (Queue of queue of steps) in a list in one of the classes of my Maven plugin (Java) and I'm figuring out how to take each node of the list and put it as a parameter of a test (TestNG). Though I coded a…

Nana89
- 432
- 4
- 21