I'm creating Liferay plugins using Maven instead of Ant. The problem is that in some development en Check it out: https://lnkd.in/d6dnu4un Join the conversation! #java #liferay #maven #nullpointerexception
Yash Soni’s Post
More Relevant Posts
-
#SVN2GIT Hi, sometimes we have started our repo in SVN, however if we wish to migrate to GIT alongwith SVN commit history then here are few steps. Many articles are available on the internet for this. I tried most of them and found the following steps working. For more details along with logs and demo example, please visit my GIT repo: https://lnkd.in/dqNegYFC Hope it helps!! Thanks!! #Pre_requisitive(for Linux): sudo apt-get install git-core git-svn ruby rubygems #Step_1: Create a directory $ mkdir gitrepo $ cd gitrepo/ #Step_2: Fetch SVN Repo gitrepo$ ls gitrepo$ svn2git <svn_url> --rootistrunk --username <svn_username> #Step_3: Add Authors SVN authors have the format as "firstname.lastname" However, this needs to be converted in GIT format as follows gitrepo$ mkdir .svn2git gitrepo$ cd .svn2git/ gitrepo/.svn2git$ vi authors ex. ninad.thite = neenadthite <[email protected]> #Step_4: Link the SVN repo with GIT repo git remote add origin <git repo URL> #Step 5: Push the Repo alongwith SVN commit history on GIT git push --set-upstream origin master
GitHub - neenadthite/svntogitmigration
github.com
To view or add a comment, sign in
-
While running the test cases in arquillian, I am getting bewlow error. When I run the use case on a Check it out: https://lnkd.in/dvvSSs86 Join the conversation! #infinispan #jakartaee #java #jboss7x #jbossarquillian
execution error orginfinispanutilconcurrenttimeoutexception ispn000299 unable to acquire lock after 10 seconds for key
https://querifyquestion.com
To view or add a comment, sign in
-
How to Remove Global and Local Packages With Npm @OpenReplay "Unused npm packages take up disk space and can cause compatibility with other packages. Periodically removing packages that you no longer need is vital to keeping your project clean. When it comes to uninstalling dependencies, the right tool to use is npm uninstall. This guide walks through the process of using that npm utility to uninstall a package, both globally and locally." #git #npm #uninstall #javascript #tutorial #shortform
How to remove global and local packages with npm
blog.openreplay.com
To view or add a comment, sign in
-
The most common and regularly used git command is 'git diff' which gives the local changes. However it is not very user friendly when the change is in the middle of large paragraph. There is work around to this issue, we can use the switch '--word-diff'. But then it is a long command and not easy to remember. There is a solution to this as well and we can create an alias. Enjoy !!!
To view or add a comment, sign in
-
#maven 📢Apache Maven is a build-automation tool designed to provide a comprehensive and easy-to-use way of developing Java applications. It uses a POM (Project Object Model) approach to create a standardized development environment for multiple teams. 📈How to Install Maven on Windows: Follow the steps outlined below to install Apache Maven on Windows. ⚡Step 1: Download Maven Zip File and Extract ⚡Step 2: Add MAVEN_HOME System Variable 1. Open the Start menu and search for environment variables. 2. Click the Edit the system environment variables result. 3. Under the Advanced tab in the System Properties window, click Environment Variables. 4. Click the New button under the System variables section to add a new system environment variable. 5. Enter MAVEN_HOME as the variable name and the path to the Maven directory as the variable value. Click OK to save the new system variable. ⚡Step 3: Add MAVEN_HOME Directory in PATH Variable 1. Select the Path variable under the System variables section in the Environment Variables window. Click the Edit button to edit the variable. 2. Click the New button in the Edit environment variable window. 3. Enter %MAVEN_HOME%\bin in the new field. Click OK to save changes to the Path variable. 4. Click OK in the Environment Variables window to save the changes to the system variables. ⚡Step 4: Verify Maven Installation In the command prompt, use the following command to verify the installation by checking the current version of Maven: #devopsengineer #maven #automationtools #immediatejoiners
To view or add a comment, sign in
-
I have not worked with the Spring framework for some time, especially not the XML configurated version. So time to repeat. Most examples now use Spring Boot, which is easy, so I searched for a complete example of an old style application that will create a web application resource to deploy. I found one that just needed adaption to work with Tomcat 10.1. At the same time learning how to use Eclipse automatic deployment to Tomcat.
To view or add a comment, sign in
-
The out-of-the-box developer experience for Vaadin is about to get a whole lot nicer once these 2 Vaadin IntelliJ plugin PRs get merged 🤩 1. Launch with hot swap enabled 2. Compile single .java file on save = code changes are visible in the browser right away as you save [1] https://lnkd.in/gN9Prce3 [2] https://lnkd.in/gWeAmyMv
To view or add a comment, sign in