博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
学习笔记--maven
阅读量:5096 次
发布时间:2019-06-13

本文共 2592 字,大约阅读时间需要 8 分钟。

//更改镜像库

在<mirrors>元素里面加一个<mirror>配置

<mirror>

    <id>aliyun</id>

    <mirrorOf>centeral</mirrorOf>

    <name>aliyun mirror</name>

    <url>http://maven.aliyun.com/nexus/content/groups/public/</url>

</mirror>

在<profiles>中加一个<profile>配置

<profile>

    <id>aliyun</id>

    <activation>

        <activeByDefault>true</activeByDefault>

    </activation>

    <repositories>

        <repository>

            <id>aliyun</id>

    <url>http://maven.aliyun.com/nexus/content/groups/public/</url>

        </repository>

    </repositories>

    <pluginRepositories>

            <pluginRepository>

                <id>aliyun</id>

        <url>http://maven.aliyun.com/nexus/content/groups/public/</url>

            </pluginRepository>

      </pluginRepositories>

</profile>

//配置默认JDK版本
方法一:
在maven的配置文件settings.xml中的<profiles>标签里添加如下代码,设置默认JRE编译版本为1.7
 
  1. <profile>
  2. <id>jdk-1.7</id>
  3. <activation>
  4. <activeByDefault>true</activeByDefault>
  5. <jdk>1.7</jdk>
  6. </activation>
  7. <properties>
  8. <maven.compiler.source>1.7</maven.compiler.source>
  9. <maven.compiler.target>1.7</maven.compiler.target>
  10. <maven.compiler.compilerVersion>1.7</maven.compiler.compilerVersion>
  11. </properties>
  12. </profile>
方法二:在pom.xml的<plugins>中添加如下代码,修改maven默认的JRE编译版本,1.7代表JRE编译的版本
 
  1. <plugin>
  2. <groupId>org.apache.maven.plugins</groupId>
  3. <artifactId>maven-compiler-plugin</artifactId>
  4. <configuration>
  5. <source>1.7</source>
  6. <target>1.7</target>
  7. </configuration>
  8. <plugin>
//创建Kitchen项目
mvn archetype:generate -DgroupId=com.netease.restaurant -DartifactId=Kitchen -Dpackage=com.netease -Dversion=1.0.0-SNAPSHOT -DarchetypeArtifactId=maven-archetype-quickstart
//创建Restaurant
mvn archetype:generate -DgroupId=com.netease.restaurant -DartifactId=Restaurant -Dpackage=com.netease -Dversion=1.0.0-SNAPSHOT -DarchetypeArtifactId=maven-archetype-webapp
//maven工程和java工程转换
mvn eclipse:eclipse 
或 
mvn eclipse:myeclipse
eclipse中转换
maven工程转为一般工程:工程右键-->Maven-->Disable Maven Nature转为一般工程
一般工程转为maven工程:工程右键-->Configure-->Convert to maven project
//查看帮助
mvn help:describe -Dplugin=<plugin_name> -Dgoal=<goal> -Ddetail=true
mvn help:help -Ddetail=true

mvn help:describe -Dplugin=war

或者
mvn help:describe -Dplugin=org.apache.maven.plugins:maven-war-plugin
或者

mvn help:describe -DgroupId=org.apache.maven.plugins -DartifactId=maven-war-plugin

//修改tomcat的context path

Tomcat自身可以通过修改配置文件server.xml,在和之间插入如下语句:

  • 1

对应maven的tomcat插件弄法如下:

org.apache.tomcat.maven
tomcat7-maven-plugin
2.0-SNAPSHOT
${context.path}
http://localhost:8080/manager/text
tomcat7
admin
admin

转载于:https://www.cnblogs.com/kioluo/p/6860490.html

你可能感兴趣的文章
收集WebDriver的执行命令和参数信息
查看>>
数据结构与算法(三)-线性表之静态链表
查看>>
mac下的mysql报错:ERROR 1045(28000)和ERROR 2002 (HY000)的解决办法
查看>>
Hmailserver搭建邮件服务器
查看>>
django之多表查询-2
查看>>
快速幂
查看>>
改善C#公共程序类库质量的10种方法
查看>>
AIO 开始不定时的抛异常: java.io.IOException: 指定的网络名不再可用
查看>>
MyBaits动态sql语句
查看>>
HDU4405(期望DP)
查看>>
拉格朗日乘子法 那些年学过的高数
查看>>
vs code 的便捷使用
查看>>
Spring MVC @ResponseBody返回中文字符串乱码问题
查看>>
用户空间与内核空间,进程上下文与中断上下文[总结]
查看>>
JS 中的跨域请求
查看>>
JAVA开发环境搭建
查看>>
mysql基础语句
查看>>
Oracle中的rownum不能使用大于>的问题
查看>>
[Data Structure & Algorithm] 有向无环图的拓扑排序及关键路径
查看>>
git 常用命令
查看>>