Local maven jar package uploaded to a remote warehouse - Batch upload tool (based on the actual scene to be appropriate to modify the code)

Ready to work

  • New folder as a workspace
    Document preparation

  • Jar package to be uploaded, Example: abc-interface-1.0.1-SNAPSHOT.jar

  • Create a filejar-info.txt

    • File storage jar with a package of information to upload
    • Data format: [groupId]: [artifactId]: [version]
    • Per line data, make sure that the information is complete
    • Examples
    	com.abc.o2o:sss-common:1.0.1-QA-SNAPSHOT
    	com.abc.o2o:sss-interface:1.0.1-RELEASE
    
  • Create a java language source code fileUploadToRemoteMvnRepository.java

import java.io.BufferedReader;
import java.io.FileReader;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;

/**
 * @Author jq.wang
 */
public class UploadToRemoteMvnRepository {

	// mvn 上传指令
    public static final String mvn_commond_format = "mvn deploy:deploy-file -DgroupId=%s -DartifactId=%s -Dversion=%s -Durl=%s -DrepositoryId=accountId -Dfile=%s";
	// mvn 远程仓库地址1
    public static final String release_mvn_url = "http://maven.abc.com/release/";
	// mvn 远程仓库地址2
    public static final String snopshot_mvn_url = "http://maven.abc.com/snaoshots/";

    public static void main(String[] args) throws Exception {
        try {
			// args 参数为jar-info.txt :包含jar信息的文件
            if (args == null || args.length == 0) {
                return;
            }
            System.out.println("read file : " + args[0]);
			// 读取文件
            List<String> commondLines = readFile(args[0]);
			// 调用cmd 指令,循环执行mvn上传指令
            for (String commondLine : commondLines) {
                Runtime.getRuntime().exec("cmd /k start " + commondLine);
                Thread.sleep(2000);
            }
        } catch (Exception e) {
            e.printStackTrace();
        }
    }

	// 读取文件
    public static List<String> readFile(String fileName) throws IOException {
        FileReader fr = new FileReader(fileName);
        BufferedReader br = new BufferedReader(fr);
        String line = "";
        String[] arrs = null;
        List<String> mvnCmdList = new ArrayList<>();
		// 安装自定义的规则,解析文件; 然后拼接mvn上传的指令,缓存到list中返回
        while ((line = br.readLine()) != null) {
            //com.abc.o2o:abc-security:1.0.1-SNAPSHOT
            arrs = line.split(":");
            if (arrs.length != 3)
                continue;
            String file = arrs[1].concat("-").concat(arrs[2]).concat(".jar");
            if (arrs[2].toLowerCase().contains("release")) {
                mvnCmdList.add(String.format(mvn_commond_format, arrs[0], arrs[1], arrs[2], release_mvn_url,file));
            } else {
                mvnCmdList.add(String.format(mvn_commond_format, arrs[0], arrs[1], arrs[2], snopshot_mvn_url,file));
            }
        }
        br.close();
        fr.close();
        for (String s : mvnCmdList) {
            System.out.println(s);
			System.out.println();
        }
        return mvnCmdList;
    }
}

  • Compile java files: javac UploadToRemoteMvnRepository.javagenerate class files

Operation mode

  • (1) java run
java UploadToRemoteMvnRepository jar-info.txt
  • (2) run the batch file
    created run.bat file, the file contents:
java UploadToRemoteMvnRepository jar-info.txt
pause

Attachment: Instructions

  • Function :

    • According to the version number uploaded to a different mavan warehouse, depending on whether or contain distinguish RELEASE
  • note

    • Before uploading will be uploaded jar package, and execute files into the same directory
    • jar package name format: [artifactId] - [version] .jar
    • If you need an account before they can upload, settings.xml file before executing maven's configuration, id is accountId
    	<server>
    		<id>accountId</id>
    		<username>jq.wang</username>
    		<password>******</password>
    	</server>
    
  • Operation mode

    • java UploadToRemoteMvnRepository jar-info.txt or directly run run.bat
    • The result: print instruction execution
    • Each jar package upload commands are displayed in a new window
    • Every two seconds to upload a jar
Released eight original articles · won praise 1 · views 141

Guess you like

Origin blog.csdn.net/C_Wangjq/article/details/105351267