清理依赖
mvn clean dependency:copy-dependencies package
打包
mvn package
mvn clean package
创建
mvn archetype:create -DgroupId=com.adosoft -DartifactId=ado-modules
mvn archetype:create -DgroupId=com.adosoft -DartifactId=ado-core
mvn archetype:create -DgroupId=com.adosoft -DartifactId=ado-flow
mvn archetype:create -DgroupId=com.adosoft -DartifactId=ado-work
mvn archetype:create -DgroupId=com.adosoft -DartifactId=faint-work
mvn archetype:create \
-DarchetypeGroupId=org.apache.maven.archetypes \
-DarchetypeArtifactId=maven-archetype-site \
-DgroupId=com.mycompany.app \
-DartifactId=my-app-site
mvn archetype:create -DarchetypeGroupId=org.apache.maven.archetypes -DarchetypeArtifactId=maven-archetype-webapp -DgroupId=com.mochasoft.mgs.hi -DartifactId=uniwork
mvn archetype:create -DarchetypeGroupId=org.apache.maven.archetypes -DarchetypeArtifactId=maven-archetype-webapp -DgroupId=com.mochasoft.mgs.hi -DartifactId=mochauniwork
mvn archetype:create -DarchetypeGroupId=org.apache.maven.archetypes -DgroupId=com.mochasoft.mgs.hi -DartifactId=uniwork
mvn archetype:create -DarchetypeGroupId=org.springframework.ws -DarchetypeArtifactId=spring-ws-archetype -DarchetypeVersion=1.0.1 -DgroupId=com.mochasoft.hi -DartifactId=uniwork
mvn install:install-file -DgroupId=jdbc -DartifactId=oracle -Dversion=10g -Dpackaging=jar -Dfile=D:/classes12.jar
mvn install:install-file -DgroupId=opensymphony -DartifactId=osworkflow -Dversion=2.8.0 -Dpackaging=jar -Dfile=E:\opensource\workflow\osworkflow-2.8.0\osworkflow-2.8.0.jar
mvn install:install-file -DgroupId=jdbc -DartifactId=oracle -Dversion=10g -Dpackaging=jar -Dfile=D:/ojdbc14.jar
mvn scm:cvs|pserver|dongyl@localhost|C:/Program Files/cvsnt/repositories|module_name
mvn scm:cvs|pserver|dongyl|dongyl@localhost|D:/version/cvsroot/uniwork
mvn plugin:download -Dmaven.repo.remote=http://maven-plugins.sourceforge.net/maven/ -DgroupId=maven-plugins -DartifactId=maven-was6-plugin
//格式化代码
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>jalopy-maven-plugin</artifactId>
<version>1.0-alpha-1</version>
</plugin>
mvn jalopy:format
mvn archetype:create -DgroupId=com.mochasoft.portal -DartifactId=portlet -DarchetypeArtifactId=maven-archetype-portlet
pluto
在~/.m2/settings.xml中添加如下内容才可使用以下命令
<settings>
.....
<pluginGroups>
<pluginGroup>org.apache.pluto</pluginGroup>
</pluginGroups>
.....
</settings>
mvn pluto:install -DinstallDir=D:\installed\apache-tomcat-6.0.14
设置tomcat
1.To be able to use application-scoped PortletSession attributes in Pluto, modify the Connector element for port 8080 in <TOMCAT_HOME>/conf/server.xml by adding the following attribute and value: emptySessionPath="true".
2.The Pluto Testsuite portlet application needs the role 'pluto' to run the Security Mapping Test. So before starting tomcat, you should edit <TOMCAT_HOME>/conf/tomcat-users.xml, add the role 'pluto', and add a user in that role. The simplest way to do this is to edit add the 'pluto' role to the 'tomcat' user's record. Here is a sample tomcat-users.xml file:
3.使用http://localhost:8080/pluto/portal tomcat/tomcat
多个项目合作
在父项目pom.xml中添加以下内容:
<modules>
<module>guide-ide-eclipse-site</module>
<module>guide-ide-eclipse-core</module>
<module>guide-ide-eclipse-module1</module>
</modules>
在子项目pom.xml中添加以下内容:
<parent>
<groupId>guide.ide.eclipse</groupId>
<artifactId>guide-ide-eclipse</artifactId>
<version>1.0-SNAPSHOT</version>
</parent>
Add dependency from module1 to the core-module:
<dependency>
<groupId>guide.ide.eclipse.core</groupId>
<artifactId>guide-ide-eclipse-core</artifactId>
<version>1.0-SNAPSHOT</version>
</dependency>
Install the project in your local repository and generate the Eclipse files:
mvn install
mvn eclipse:eclipse
Check in your project using the Eclipse team support (select from the context menu Team > Share Project). Note: Do not check in the generated Eclipse files. If you use CVS you should have a .cvsignore-file with the following entries for each module:
target
.classpath
.project
.wtpmodules
Even the parent project should have this .cvsignore-file. Eclipse will automatically generate a new simple .project-file when you check out the project from the repository.
Add M2_REPO to workspace:
mvn -Declipse.workspace=D:\workspaces\ eclipse:add-maven-repo
mvn -Dmessage="hello" -Dmaven.scm.provider.cvs.implementation=cvs_native scm:checkin
mvn archetype:create -DarchetypeGroupId=org.apache.maven.archetypes -DarchetypeArtifactId=maven-archetype-webapp -DgroupId=com.nagor -DartifactId=agor-flow
分享到:
相关推荐
### Maven 使用文档详解 #### Maven 简介与特点 Maven 是一款强大的项目管理和构建工具,主要用于 Java 项目的管理。Maven 提供了统一的标准流程来管理项目的生命周期、依赖关系以及项目信息等,极大地提高了开发...
**Idea + Maven 使用教程** 本教程旨在帮助初学者了解并掌握如何在 IntelliJ IDEA (简称Idea) 中集成和使用 Maven。Idea 是一款强大的Java集成开发环境,而 Maven 则是一个项目管理和综合工具,它简化了构建、依赖...
**Maven 使用指南** Maven 是一个强大的项目管理和构建工具,尤其在Java开发领域中广泛使用。它通过统一的构建过程和项目配置,使得开发者能够更有效地管理依赖、构建工件以及执行各种生命周期阶段。 ### Maven 的...
Maven 使用 tomcat8-maven-plugin 插件 Maven 是一个流行的构建自动化工具,它可以帮助开发者自动完成项目的编译、测试、打包、部署等任务。 Tomcat 是一个流行的 Web 服务器,Maven 提供了一个插件 tomcat8-maven-...
【MAVEN使用最佳实践】 Maven 是一个强大的项目管理和构建工具,它简化了Java应用程序的构建过程,通过一套约定优于配置的原则,使得项目构建、依赖管理和文档生成等工作变得标准化。以下是一些在使用Maven时可以...
《Maven使用手册V3.0》 Maven,一个由Apache软件基金会开发的项目管理工具,旨在提供一个一致且可重复的方式来构建和管理Java项目。它的核心理念是“约定优于配置”,即通过一套标准的项目结构和自动化构建过程,...
Maven使用实战-从入门到精通实践【张振华.Jack】 Maven简介、Maven主要做什么用? 项目对象模型(POM) 坐标(Coordinates)、打包方式(Packaging)、项目描述 项目子父级关系(parent) 依赖管理(dependency),冲突了...
**MAVEN使用文档** Maven是一个强大的项目管理工具,它主要负责构建、依赖管理和项目信息管理,广泛应用于Java开发领域。Apache Maven 3.0.5是Maven的一个版本,本指南将指导你如何在Eclipse环境下配置和使用这一...
** Maven使用手册 ** 在Java开发中,Maven是一个至关重要的工具,它简化了构建、管理和依赖关系的处理。这个“08Maven使用手册”将深入探讨如何有效地使用Maven,帮助开发者从项目的初始化到部署的每一个阶段都能...
【 MAVEN 使用方法促进编写 JAVA 代码】 在 Java 开发领域,Maven 是一个不可或缺的项目管理和构建工具,它极大地简化了项目的构建、依赖管理和文档生成。相较于早期的 ANT,Maven 提供了更为强大的自动化构建功能...
【标题】:“Maven使用详解” 在软件开发中,Maven是一个强大的项目管理和构建工具,尤其在Java领域中被广泛使用。它通过提供一个统一的构建过程和依赖管理,简化了项目的构建、测试和部署。这篇博文“Maven使用...
boot目录下有一个plexus-classworlds-2.5.1.jar文件,这是一个类加载器框架,Maven使用它来加载自身的类库。conf目录包含了settings.xml文件,这是一个非常重要的文件,可以用来全局定制Maven的行为。lib目录则包含...
Maven使用仓库来存储和检索依赖。默认的中央仓库是Sonatype Nexus,包含了大量公开的开源库。在`settings.xml`中,你可以配置镜像来加速依赖的下载。此外,每个项目还可以有自己的本地仓库(默认位于用户目录下的`....
Maven使用本地仓库存储构建过程中下载的依赖。默认情况下,它位于用户的主目录下的`.m2`文件夹中。为了自定义这个路径,你需要进行以下操作: - 在Maven安装目录的`conf`子目录下找到`settings.xml`文件。 - 创建一...
NULL 博文链接:https://ewf-momo.iteye.com/blog/1830762
### Maven使用指南核心知识点 #### 1. Maven简介 **Maven是什么?** Maven是一个项目管理和理解工具,主要用于Java项目。它通过一系列规范化的生命周期和插件来帮助开发者更高效地进行项目的构建、测试、打包等...