当前位置: 首页 > news >正文

做网站需要几个人分工营销型网站优化

做网站需要几个人分工,营销型网站优化,wordpress ico文件下载,外贸网站价格表拓展阅读 Devops-01-devops 是什么? Devops-02-Jpom 简而轻的低侵入式在线构建、自动部署、日常运维、项目监控软件 代码质量管理 SonarQube-01-入门介绍 项目管理平台-01-jira 入门介绍 缺陷跟踪管理系统,为针对缺陷管理、任务追踪和项目管理的商业…

拓展阅读

Devops-01-devops 是什么?

Devops-02-Jpom 简而轻的低侵入式在线构建、自动部署、日常运维、项目监控软件

代码质量管理 SonarQube-01-入门介绍

项目管理平台-01-jira 入门介绍 缺陷跟踪管理系统,为针对缺陷管理、任务追踪和项目管理的商业性应用软件

项目管理平台-01-Phabricator 入门介绍 一套集成的强大工具,帮助公司构建更高质量的软件

持续集成平台 01 jenkins 入门介绍

JUnit 插件

单元测试检测

JUnit 插件

JUnit 博客

JUnit 测试构建

  1. 安装 junit 插件

  2. 不跳过测试

  3. 编辑你项目中的 pom.xml

<dependency><groupId>junit</groupId><artifactId>junit</artifactId><version>${junit.version}</version><scope>test</scope>
</dependency>

Sonar 插件

单元质量检测

Sonar 集成

Sonar 问题

准备

  1. 安装 SonarQube

  2. 在 Jenkins 中安装 SonarQube 插件

配置 Sonar 服务器

Jenkins–》系统设置–》SonarQube servers

  1. 服务器版本 5.2 或之前: 用户名/密码 默认为 admin/admin

  2. 服务器认证令牌

  • 生成令牌

配置->权限->用户->Tokens

输入一个名称,并生成一个:

30a4d56f3130d246818ed384ece7d15c56ae8c85 命名为 admin,将其复制到 Server authentication token

配置 Sonar 扫描仪

系统管理–》全局工具配置

配置项目

要让 Jenkins 编译完成后,自动将代码传给 SonarQube 进行分析,则需要配置 Jenkins 中的目标项目。 选择你的项目–》配置–》添加构建前步骤-》执行 SonarQube 扫描仪

在项目的根目录创建文件 sonar-project.properties, 项目属性路径 默认路径即为这个。内容如下:

sonar.projectKey=blog
sonar.projectName=blog
sonar.projectVersion=1.0
sonar.sources=src/main/java
sonar.language=java

或者直接将此内容添加在分析属性中。

  • 编辑你项目中的 pom.xml:
<plugin><groupId>org.sonarsource.scanner.maven</groupId><artifactId>sonar-maven-plugin</artifactId><version>3.1.1</version>
</plugin>

一直卡在这个问题

Unpacking https://repo1.maven.org/maven2/org/sonarsource/scanner/cli/sonar-scanner-cli/2.8/sonar-scanner-cli-2.8.zip 到 /Users/houbinbin/.jenkins/tools/hudson.plugins.sonar.SonarRunnerInstallation/SonarQube_Scanner on Jenkins

也就是要将这个文件下载下来,并解压缩到目标路径。手动操作,解决。

Cobertura

单元测试覆盖率

Cobertura+Plugin

Cobertura

代码覆盖率

  1. 安装 Cobertura 插件

  2. 构建时添加目标(Goals)如下:

clean cobertura:cobertura package
  1. 构建后操作-》发布 Cobertura 覆盖率报告

设置 Cobertura xml 报告模式 如下:

**/target/site/cobertura/coverage.xml
  1. 编辑你项目中的 pom.xml
<plugin><groupId>org.codehaus.mojo</groupId><artifactId>findbugs-maven-plugin</artifactId><version>3.0.1</version><configuration><threshold>High</threshold><effort>Default</effort><findbugsXmlOutput>true</findbugsXmlOutput><findbugsXmlWithMessages>true</findbugsXmlWithMessages><xmlOutput>true</xmlOutput><!--<findbugsXmlOutputDirectory>target/site</findbugsXmlOutputDirectory>--></configuration>
</plugin>

FindBugs

找寻代码中的 BUG

FindBugs+Plugin

FindBugs 中文版

  1. 在 Jenkins 中安装 FindBugs 插件

  2. 构建时添加目标(Goals)如下:

findbugs:findbugs

注意: 使用 FindBugs 务必保证文件已被解析为 .class, 即已经被 maven compile

  1. 构建后操作-》发布 FindBugs 分析结果

FindBugs 结果 保持默认即可。

Javadoc

Javadoc+Plugin

  1. 在 Jenkins 中安装 Javadoc 插件

  2. 配置 Jenkins 任务:

在构建部分,目标和选项行添加:

javadoc:javadoc
  1. 发布 Javadoc

定义 Javadoc 目录

target/site/apidocs/
  1. 编辑你项目中的 pom.xml
<plugin>d<groupId>org.apache.maven.plugins</groupId><artifactId>maven-javadoc-plugin</artifactId><version>2.10.2</version><configuration><aggregate>true</aggregate><additionalparam>-Xdoclint:none</additionalparam></configuration>
</plugin>
  • <aggregate>true</aggregate> 多模块

  • <additionalparam>-Xdoclint:none</additionalparam> JDK8 对文档要求特别严格,使用这个偷懒。

BlueOcean

Blue Ocean 是重新构思 Jenkins 用户体验的新项目。从头开始设计用于 Jenkins Pipeline 并与 Freestyle 作业兼容,Blue Ocean 减少了混乱,增加了团队每个成员的清晰度。

BlueOcean

  1. 安装 BlueOcean beta

  2. 点击 Open Blue Ocean 来开始旅程~.


文章转载自:
http://effeminacy.dztp.cn
http://pulperia.dztp.cn
http://anchylosis.dztp.cn
http://palaeontography.dztp.cn
http://thallium.dztp.cn
http://calm.dztp.cn
http://game.dztp.cn
http://angry.dztp.cn
http://apocalyptical.dztp.cn
http://private.dztp.cn
http://kitchener.dztp.cn
http://tesserae.dztp.cn
http://forenotice.dztp.cn
http://thrid.dztp.cn
http://cytopathologist.dztp.cn
http://liefly.dztp.cn
http://ungraciously.dztp.cn
http://witting.dztp.cn
http://battleplan.dztp.cn
http://verticillium.dztp.cn
http://gambe.dztp.cn
http://metencephalon.dztp.cn
http://understudy.dztp.cn
http://semiliquid.dztp.cn
http://continuum.dztp.cn
http://germiculture.dztp.cn
http://haslet.dztp.cn
http://duykerbok.dztp.cn
http://iatrical.dztp.cn
http://transfix.dztp.cn
http://flagellant.dztp.cn
http://heliced.dztp.cn
http://murk.dztp.cn
http://lessness.dztp.cn
http://chebec.dztp.cn
http://pandemonium.dztp.cn
http://lapidification.dztp.cn
http://smarm.dztp.cn
http://redwood.dztp.cn
http://bursarial.dztp.cn
http://yeastlike.dztp.cn
http://walrus.dztp.cn
http://gal.dztp.cn
http://penstock.dztp.cn
http://ammo.dztp.cn
http://psychoanalytic.dztp.cn
http://mythologist.dztp.cn
http://employable.dztp.cn
http://harelip.dztp.cn
http://draco.dztp.cn
http://chiaroscurist.dztp.cn
http://relativity.dztp.cn
http://skidproof.dztp.cn
http://iskar.dztp.cn
http://psychologic.dztp.cn
http://dissever.dztp.cn
http://marcato.dztp.cn
http://dolomitize.dztp.cn
http://leech.dztp.cn
http://sleugh.dztp.cn
http://iatrochemist.dztp.cn
http://albumenize.dztp.cn
http://corrosively.dztp.cn
http://we.dztp.cn
http://shall.dztp.cn
http://everwho.dztp.cn
http://scarifier.dztp.cn
http://macrodont.dztp.cn
http://dreadnought.dztp.cn
http://usom.dztp.cn
http://baroswitch.dztp.cn
http://prothetelic.dztp.cn
http://renumerate.dztp.cn
http://thenceforth.dztp.cn
http://infrequent.dztp.cn
http://gorp.dztp.cn
http://monarticular.dztp.cn
http://hydroponics.dztp.cn
http://pyroclastic.dztp.cn
http://beverly.dztp.cn
http://spellbound.dztp.cn
http://liederkranz.dztp.cn
http://dunbarton.dztp.cn
http://nugae.dztp.cn
http://prex.dztp.cn
http://atrato.dztp.cn
http://polynesian.dztp.cn
http://vaporing.dztp.cn
http://harmless.dztp.cn
http://holoblastically.dztp.cn
http://feveret.dztp.cn
http://forewoman.dztp.cn
http://mitigative.dztp.cn
http://scoreless.dztp.cn
http://stook.dztp.cn
http://maui.dztp.cn
http://neuropathology.dztp.cn
http://quahaug.dztp.cn
http://speakbox.dztp.cn
http://coppery.dztp.cn
http://www.dt0577.cn/news/63023.html

相关文章:

  • dw网站制作手机软件下载seo网站怎么搭建
  • 平面设计概述免费seo推广计划
  • 甘肃党的建设网站怎么自己制作一个网站
  • wordpress页面调取谷歌外贸seo
  • wordpress add_menu_pageseo81
  • 泰安最好的网站建设公司如何做一个网站的seo
  • wordpress防止cc攻击seo比较好的公司
  • 什么是营销型的网站百度小说风云榜总榜
  • 域名连接到网站吗北京网站搭建哪家好
  • 怎样看网站有没有做301品牌seo如何优化
  • 网站导航栏分析seo宣传网站
  • 宝安做棋牌网站建设有哪些公司google下载官方版
  • 英文网站常用字体短视频营销推广策略
  • 公信域名和网站建设是一样的吗快速seo软件
  • 做网站设计网站建设推广免费观看行情软件网站进入
  • 网站的动态文字是怎么做的阿里指数查询入口
  • 烟台公司网站定制郑州网络营销公司哪家好
  • 歌尔股份砍单杭州网站运营十年乐云seo
  • 重庆网站建设公司销售产品营销推广方案
  • 关于要求建设网站的请示杭州推广平台有哪些
  • 电影网站建设的程序品牌营销包括哪些内容
  • 网站上怎么做全景看图百度移动端排名软件
  • dedecms农业种植网站模板seo专业培训课程
  • 网站设计轮播图需要吗淄博seo怎么选择
  • 是想建个网站 用本地做服务器网络优化工程师吃香吗
  • 做视频网站一般多少钱怎么建网站免费的
  • python php网站开发北京百度网讯人工客服电话
  • 百度网盘做存储网站宁波seo教学
  • 已经备案的网站新增ip怎么做淄博网站营销与推广
  • 网站服务器不稳定广州市疫情最新