Maven是一个项目管理和综合工具。Maven提供给开发人员构建一个完整的生命周期框架。开发团队可以自动完成该项目的基础设施建设,Maven使用标准的目录结构和默认构建生命周期。
Apache的开源项目主要服务于JAVA平台的构建、依赖管理、项目管理。Project Object Model,项目对象模型。通过xml格式保存的pom.xml文件。该文件用于管理:源代码、配置文件、开发者的信息和角色、问题追踪系统、组织信息、项目授权、项目的url、项目的依赖关系等等。该文件是由开发维护,我们运维人员可以不用去关心。
1 安装
官网下载地址:http://maven.apache.org/download.cgi
安装在jenkins服务器上
[root@jenkins ~]#: tar xf apache-maven-3.6.1-bin.tar.gz
[root@jenkins ~]#: mv apache-maven-3.6.1 /usr/local/
[root@jenkins ~]#: cd /usr/local/
[root@jenkins local]#: ln -s apache-maven-3.6.1/ maven
编辑配置环境变量
[root@jenkins local]#: vim /etc/profile
export PATH=/usr/local/maven/bin/:$PATH
[root@jenkins local]#: source /etc/profile
配置maven从阿里云下载
[root@jenkins maven]#: vim /usr/local/maven/conf/settings.xml
159 <mirror>
160 <id>nexus-aliyun</id>
161 <mirrorOf>*</mirrorOf>
162 <name>Nexus aliyun</name>
163 <url>http://maven.aliyun.com/nexus/content/groups/public</url>
164 </mirror>
2 文件说明
[root@jenkins maven]#: cd /usr/local/maven/ 家目录
drwxr-xr-x 2 root root 97 Apr 26 13:29 bin 命令文件
drwxr-xr-x 2 root root 42 Apr 26 13:29 boot
drwxr-xr-x 3 501 games 63 Apr 26 13:48 conf 配置文件
drwxr-xr-x 4 501 games 4096 Apr 26 13:29 lib
-rw-r--r-- 1 501 games 13437 Apr 5 03:02 LICENSE
-rw-r--r-- 1 501 games 182 Apr 5 03:02 NOTICE
-rw-r--r-- 1 501 games 2533 Apr 5 02:56 README.txt
[root@jenkins maven]#: ll bin/
-rw-r--r-- 1 501 games 228 Apr 5 02:56 m2.conf 配置下载的依赖放在那里的路径
-rwxr-xr-x 1 501 games 5741 Apr 5 02:56 mvn linux下的命令
-rw-r--r-- 1 501 games 6349 Apr 5 02:56 mvn.cmd windows下的命令
-rwxr-xr-x 1 501 games 1485 Apr 5 02:56 mvnDebug
-rw-r--r-- 1 501 games 1668 Apr 5 02:56 mvnDebug.cmd
-rwxr-xr-x 1 501 games 1532 Apr 5 02:56 mvnyjp
[root@jenkins maven]#: ll conf/
drwxr-xr-x 2 501 games 37 Apr 26 13:29 logging
-rw-r--r-- 1 501 games 10211 Apr 5 02:56 settings.xml 全局配置文件全局生效
-rw-r--r-- 1 501 games 3645 Apr 5 02:56 toolchains.xml
[root@jenkins maven]#: ll /root/.m2/
drwxr-xr-x 2 root root 6 Apr 26 13:33 repository 本地仓库下载的包放在这里
3 创建一个maven项目
3.1 准备tomcat环境备用安装数据库
root@tomcat ~]#: rpm -ivh jdk-8u212-linux-x64.rpm
[root@tomcat ~]#: mkdir /data
[root@tomcat ~]#: tar xf apache-tomcat-9.0.19.tar.gz -C /data
[root@tomcat ~]#: cd /data
[root@tomcat data]#: ln -s apache-tomcat-9.0.19 tomcat
[root@tomcat data]#: vim /etc/profile
export TOMCAT_HOME=/data/tomcat
[root@tomcat data]#: source /etc/profile
[root@tomcat ~]#: /data/tomcat/bin/startup.sh
3.2 准备hello-world项目
gitlab创建一个新项目
上传hello-world项目到gitlab,并推送
[root@jenkins ~]#: cd hello-world
[root@git hello-world]#: git init
[root@git hello-world]#: git remote add origin git@10.0.0.20:test/hello-world.git
[root@git hello-world]#: git add .
[root@git hello-world]#: git commit -m "Initial commit"
[root@git hello-world]#: git push -u origin master
jenkins 创建一个maven项目
配置maven路径信息
3.3 准备一个java项目
我这里找的jeesns
在gitlab服务器上
[root@git ~]#: cd jeesns
[root@git xyTalk-pc]#: git init
[root@git xyTalk-pc]#: git remote add origin git@10.0.0.20:test/jeesns.git
[root@git xyTalk-pc]#: git add .
[root@git xyTalk-pc]#: git commit -m "Initial commit"
[root@git xyTalk-pc]#: git push -u origin master
检查是否推送成功
在jenkins构建maven项目,拉取代码打包
配置maven路径
git发送jeesns数据库文件到tomcat的/opt
[root@git ~]#: scp /root/jeesns/jeesns-web/database/jeesns.sql 10.0.0.25:/opt
导入数据库文件
[root@tomcat ~]#: mysql
mysql> create database jeesns;
[root@tomcat opt]#: mysql -uroot -proot jeesns < /opt/jeesns.sql
拷贝war包到tomcat
这就刚才搭建的网站