很多时候,我们可能并不希望将我们的构建代码发布到公共的 Maven 仓库中。 为了一些私有的项目发布到公司内部的 Archiva 中,如何使用 Maven 进行发布。 这个其实比较简单。 你需要满足下面 3 个条件。 一个具有发布权限的 Maven 仓库 在 settings.xml 中配置你可以访 ...
分类:
其他好文 时间:
2020-04-11 10:22:58
阅读次数:
63
1.修改配置文件pom.xml 添加打包形式设置为jar形式 <packaging>jar</packaging> 2.在build标签内添加内容如下 finalname为打包成jar包的名字 configuration内需要设置主类,即入口类,有时候不配置会报错。 <build> <finalNa ...
分类:
编程语言 时间:
2020-04-10 12:16:56
阅读次数:
77
#See https://aka.ms/containerfastmode to understand how Visual Studio uses this Dockerfile to build your images for faster debugging. FROM mcr.microso ...
分类:
Web程序 时间:
2020-04-10 12:00:20
阅读次数:
212
比较含退格的字符串。题意是给两个字符串,中间包含井字,井字的意思是需要退格,请判断两个字符是否相等。例子, Example 1: Input: S = "ab#c", T = "ad#c" Output: true Explanation: Both S and T become "ac". Exa ...
分类:
其他好文 时间:
2020-04-10 09:15:15
阅读次数:
78
Urllib库详解 什么是Urllib: Python内置的HTTP请求库 urllib.request 请求模块 urllib.error 异常处理模块 urllib.parse url 解析模块 urlopen url 传入url data 用于POST提交数据 timeout 设置最大响应接受 ...
分类:
Web程序 时间:
2020-04-09 20:20:59
阅读次数:
89
转自:https://www.cnblogs.com/hiver/p/7850954.html 参数 全称 释义 说明 -pl --projects Build specified reactor projects instead of all projects 选项后可跟随{groupId}:{a ...
分类:
其他好文 时间:
2020-04-09 20:20:03
阅读次数:
72
使用pip命令之后报错,错误信息如下图: 提示egg_info文件错误 解决原理: 我在装载python3.6的机器上同时也安装了python2.7(软件需要),使用python 3的pip来安装python 2的git包,当然会报错。 解决代码: wget https://pypi.python. ...
分类:
编程语言 时间:
2020-04-09 14:14:23
阅读次数:
97
环境 Ubuntu18.04 OpenCV4 准备 需要下列的依赖,[optional]为可选。 下载OpenCV 发行版本: "OpenCV Release" github源码: "OpenCV github" 使用CMake构建 创建build文件夹 配置Cmake ,选择需要编译的选项 注意: ...
分类:
编程语言 时间:
2020-04-09 12:14:00
阅读次数:
126
系统那边给了platform.pk8,shared.x509.pem等文件,现需要转换成.jks文件方便Android studio中编译使用。 记录下如何操作生成.jks 1. 在Android源码目录:android/build/target/product/security/ 找到签名文件“p ...
分类:
移动开发 时间:
2020-04-08 14:57:54
阅读次数:
249
我是跟着《Android第一行代码》写代码的,想写个博来加深印象一点 一、添加依赖库RecyclerView 在app下的build.gradle中的dependencies添加一句:(添加后要sync now) implementation 'androidx.recyclerview:recyc ...
分类:
移动开发 时间:
2020-04-08 13:42:39
阅读次数:
148