What is the euquivalent of Maven Tycho to build NetBeans Applications? - maven

More generally, how are bigger (meaning lots of dependencies or many modules) RCP Applications build?
Eclipse RCP uses Tycho and p2. What does NB use to build apps headless?

https://github.com/mojohaus/nbm-maven-plugin with maven (archetypes and support available via netbeans project wizards)
or the default ant-based project types (again available via the netbeans module project wizards)

Related

FontAwesomeFX Without Maven

I am trying to use the FontAwesomeFX library in my non-Maven project. However, it seems Maven is the only way the developer has chosen to provide the latest version of the library (9.1.2).
How do I get this imported into my IntelliJ IDEA project? The 9.1.2 version is not in the Maven repositories...
I have never used Maven, so I wouldn't know where to start.

How to create .apk file using maven build, I have dynamic web project

I have dynamic web project in eclipse.
We create WAR file of it to use it as web application using maven build.
We want to deploy same project on android , how can we do it using maven build?

how to use sonarqube in android studio

I would like to use SonarQube to check my Android code.
I installed the plugin of sonarqube the and also can access http://localhost:9000.
But when I click the "associated with sonar". The error is"Project is not associated to SonarQube
Only multi-module Maven projects are supported for now"
what can I do for my project?
As a "first" version of the Intellij plugin it was decided to limit support to:
- single module projects
- multi-module Maven projects
Non Maven multi-module projects are not supported, but that's definitely a goal for next version:
http://jira.codehaus.org/browse/SONARPLUGINS-3401

On Mac OS X, why doesn't the version of maven bundled with NetBeans 8.0 IDE do a clean / build?

I'm running OS X Mavericks. Then I:
Downloaded / installed NetBeans 8.0 IDE ("All" download).
Opened my maven project in the IDE.
Select project name.
Attempted Clean and Build. No go.
Attempted to generate dependency tree from maven. No go.
It appears the version of maven bundled with NetBeans 8.0 is not working.
Preferences shows the v. 3.0.5 of maven is bundled with the IDE. Here is
the path, I think, to the bundled version:
/Applications/NetBeans/NetBeans\ 8.0.app/Contents/Resources/NetBeans/java/maven
To confirm the project is valid, I then downloaded / installed my own, local
instance of Maven (v. 3.2.3). From the shell, I am able to clean / build
install fine. IE, the project is sound.
Something is awry with the IDE. I've searched Google and Yahoo, to no avail.
So, I think the short explanation of what is going on is that there is
an initialization bug in NetBeans 8.0. Here is what I did to get my
instance of the IDE to start using the bundled version of maven:
Downloaded / installed Apache Tomcat 7.x.
In the NetBeans IDE, went to Services>Servers, and added Tomcat.
In the NetBeans IDE, went to Projects, selected my project, right-clicked, and chose Properties.
In the Project Properties dialog, I selected Run, and chose Apache Tomcat for the Server, added a Context Path, and pressed OK.
Then I added a suitable custom-context to /path/to/apache-tomcat-7/conf/Catalina/localhost/myproject.xml, where I specified a reference to my workspace-instance of my project's war-file.
In addition to all of these steps, I also had to make certain permission-changes for Tomcat configuration files. You will have to figure this step out depending on your installation.
Finally, in the Projects window, I selected my project, right-clicked and selected Run.
Mysteriously, the bundled instance of maven started working.
I hope these steps can help others, as well as the NetBeans team resolve the initialization issue.

Sonar Design view is empty for a Java project using Maven

I'm using Sonar version 3.7.2 with TeamCity 8.0.4 and sonner-ruuner 2.0
I am building a Java project using Maven.
In Sonar, the project design view is empty, the project dashboard works fine, showing different analysis results.
Is it possible I'm missing a "design" plugin? or I need configuration for Sonar in the Maven pom.xml?
Thanks,
Eyal

Resources