Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

install maven dependencies

mvn dependency:resolve
Comment

maven include dependencies

<build>
    <plugins>
      <!-- any other plugins -->
      <plugin>
        <artifactId>maven-assembly-plugin</artifactId>
        <executions>
          <execution>
            <phase>package</phase>
            <goals>
              <goal>single</goal>
            </goals>
          </execution>
        </executions>
        <configuration>
          <descriptorRefs>
            <descriptorRef>jar-with-dependencies</descriptorRef>
          </descriptorRefs>
        </configuration>
      </plugin>
    </plugins>
  </build>
Comment

PREVIOUS NEXT
Code Example
Shell :: apt install jack audio 
Shell :: ls list only first 10 files 
Shell :: uninstall mongo db 
Shell :: until loop bash 
Shell :: crontab error log 
Shell :: remove port iptables 
Shell :: fatal: invalid gitfile format 
Shell :: how to find all the dir in current working directory in linux 
Shell :: htaccess hide directory listing 
Shell :: Adding local user to Docker group 
Shell :: check if a command exists 
Shell :: docker start exited container 
Shell :: get path of command ubuntu 
Shell :: docker why my container start on reboot 
Shell :: git pull override local changes 
Shell :: Postman Collection Format v1 is no longer supported and can not be imported directly. You may convert your collection to Format v2 and try importing again. 
Shell :: pipenv specify environment location 
Shell :: push with token github 
Shell :: linux get ownership of own user directory folder ubuntu chown operation not permitted 
Shell :: create usb install windows 10 on ubuntu 
Shell :: install latex 
Shell :: install latest node js ubuntu 
Shell :: batch file 
Shell :: linux x11 dev 
Shell :: how to check upstream git 
Shell :: linux shell parameter 
Shell :: delete directory from cmd 
Shell :: codeigniter 4 db seed 
Shell :: linux script to clean up log files in /var/log 
Shell :: how to close an issue with a commit 
ADD CONTENT
Topic
Content
Source link
Name
6+8 =