How to manually install the maven plugin since I have enabled offline mode in settings.xml?
For example I downloaded maven-clean-plugin-2.4.1.jar. But I dont know where to place it and how to install it.
Tried http://maven.apache.org/plugins/maven-install-plugin/usage.html but I am not able to install. Please help me.
Here is the similar question.
Hope this may help you out for installing plugins for maven offlnely.
Maven: How to install a plugin in offline mode
I would recommend to go online once and run
mvn dependency:go-offline
The go-offline goal of the dependency plugin will "resolve all project dependencies, including plugins and reports and their dependencies."
Related
I have Jenkins 2.150.3 installed. I have installed the Robot Framework plugin for test reports publishing. But it does not appear in the post build step.
I have installed all the dependency plugins too. Can some one help what could be wrong.
First, double-check the dependencies of the JENKINS/Robot Framework Plugin: you have installed those, but check their versions.
Second, check if robotframework itself is correctly installed.
Check if the type of job can change whether or not you do see it in the post build steps.
The src/test/java/hudson/plugins/robot/RobotProjectActionTest.java shows that plugin used in a Freestyle project, as a build step (not post-build).
See if that robot is available as a build step then.
I'm new to the Atlassian development and I've went over the guides/tutorials for plugin development and everything worked fine (I'm using Ubuntu with IntelliJ as IDE). Also read the "Jira 7 Development Cookbook - Third Edition". When I tried to switch to JSD development the dependencies and plugins didn't work. I get errors like this:
Dependency : 'com.atlassian.jira.plugins:project-templates-api:2.18' not found
or
Plugin : 'com.atlassian.plugin:atlassian-spring-scanner-maven-plugin:2.0.1' not found
I'm following guides from the official site under that part of the development guides. I've looked over documentation of API plugins and classes and tried changing the version and/or name of the plugins, but I always get that same error. Have I overlooked something important or is this something that happens often and has a solution?
EDIT:
Don't use
atlas-mvn idea:idea
as drelliot said.
You have to add dependencies and plugins manually on pom.xml and do
atlas-mvn install
I still have bugs, but most were solved by this.
Don't use
atlas-mvn idea:idea
as drelliot said. You have to add dependencies and plugins manually on pom.xml and do
atlas-mvn install
After that just import the project into IDE of your choice. I still have bugs with packages and version since the official tutorials are outdated and don't help a lot, but most were solved by this.
I need to activate the plugin https://github.com/racodond/sonar-css-plugin
to lint css files on my project.
You can see the full source code here:
https://github.com/meilleur-monde/wp-quotes-widget
I don't know how to activate this plugin.
do I have to activate it on the server via https://sonarcloud.io or from travis by downloading the jar and install it but where ?
I have successfully set up continuous integration process using TeamCity for non-SalesForce projects, but need help with automating SalesFoce manage packages installation.
To migrate metadata from source to target org, I used ant migration tool, but how to do in case of managed packages?
Questions:
How will TeamCity know that the new package has been created? I may watch the changes in source code tool, but not in the cloud where the created package is stored.
How to get the latest version of the package from the cloud? I need to compare the versions of the packages: the installed one and the new one
How to install the package?
Please help.
I checked SF documentation and found that SF API provides ability to install, upgrade and uninstall Managed Packages. Also it provides ability to run some Apex code after these actions. I think, you need to move in this way. Here is related documentation.
We are evaluating xcode-maven-plugin from http://sap-production.github.io/xcode-maven-plugin/site/ for handling iOS library dependencies using maven. It looks really promising but we are using some prebuilt third party libs we don't have the source code from that we would like to also install in maven and resolve as maven dependencies but we don't know how to achieve that with the plugin.
We have already used the maven-android-plugin for Android to upload third party binaries and we manage to do that playing with the headerFilesDirectives and nativeLibrariesOutputDirectory parameters but we haven't found anything similar for the xcode plugin.
Does anyone know if it is possible to install prebuilt iOS libraries with the latest(1.14.0) xcode-maven-plugin version?.
We are new to Maven so maybe we are missing something obvious here.
Why do not you use a CocoaPods instead? It's a dependency manager for Objective-C projects. It's like iOS equivalent of Maven.