maven 工程搭建

使用Maven建立一个Quite start 项目

2.命名卫 bhz-parent

3.groupid 为:  bhz

4.artifactId 为: bhz-parent

package:为空不填写

5.引入所有的jar包依赖,并且进行聚合所有子项目(这里暂时没有任何子项目聚合,也就是pom文件)

6.依赖包查找地址 mvnRepository

7.私服dizhi:http://localhost:8081/nexus

8建maven项目 eclipse 输入:quikstart-release  web项目 输入web 选择最后一个

项目发布:需要配置私服权限 ,

如果想把自己的架包需要发布到私服上 就要配置一下权限

seting:

<servers>

<server>

<id>nexus-releases</id>

<username>deployment</username>

<password>deployment123</password>

</server>

<server>

<id>nexus-snapshots</id>

<username>deployment</username>

<password>deployment123</password>

</server>

</servers>

<profiles>
<profile>
<id>nexus-bhz</id>

<activation>
<activeByDefault>true</activeByDefault>
<jdk>1.7</jdk>
</activation>
<properties>
<maven.compiler.source>1.7</maven.compiler.source>
<maven.compiler.targert>1.7</maven.compiler.targert>
<maven.compiler.compilerVersion></maven.compiler.compilerVersion>
</properties>

<repositories>
<repository>
<!-- 私有库地址-->
<id>nexus</id>

<url>http://192.168.0.11:8081/nexus/content/groups/public/</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>

</repository>
</repositories>

<pluginRepositories>
<!-- 插件库地址-->
<pluginRepository>
<id>nexus</id>
<url>http://192.168.0.11:8081/nexus/content/groups/public/</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</pluginRepository>

</pluginRepositories>
</profile>
</profiles>

<!-- 激活 自己的私服 与上面 id 对应-->

<activeProfiles>
<activeProfile>nexus-bhz</activeProfile>
</activeProfiles>

时间: 2024-10-22 16:06:24

maven 工程搭建的相关文章

01淘淘商城项目:项目Maven工程搭建

最近在学习淘淘商城项目的搭建,使用maven做管理 后台管理系统工程搭建: 使用maven的好处: 1.依赖管理.jar包.工程之间依赖 2.项目构建:实现项目的一步构建 3.工程聚合.继承.依赖 maven工程分为三种类型: pom工程:用在父级工程,聚合工程中 war包工程:主要用作网站 jar包工程:就是当作jar使用的,可以用来打包 先给出总的项目结构,然后再解释是如何实现这些结构的 解释如下: 1.taotao-parent taotao-parent公司级别的maven工程.主要功能

maven工程搭建

1,建maven工程,设置仓库路径 选择quickstart 设置包名工程名称 仓库路径默认为.m2,自定义如下,先找到maven 的conf 目录下的settings.xml  打开文件搜索localRepository 修改路径 <!-- localRepository | The path to the local repository maven will use to store artifacts. | | Default: ${user.home}/.m2/repository  

Maven工程搭建spring boot+spring mvc+JPA

添加Spring boot支持,引入相关包: 1.maven工程,少不了pom.xml,spring boot的引入可参考官网: <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>1.5.9.RELEASE</version> </paren

Java工程搭建最佳方案之Maven

前言 从头开始一个项目.第一步是划分系统模块. Maven是Java世界中最流行的项目管理工具.它提供继承和聚合功能,因此可以将项目划分为多个模块.它非常符合微服务的思想,是实现微服务工程的良好工具.从头开始一个项目.第一步是划分系统模块. Maven是Java世界中最流行的项目管理工具.它提供继承和聚合功能,因此可以将项目划分为多个模块.它非常符合微服务的思想,是实现微服务工程的良好工具. 微服务和Maven聚合模块的区别 Microservice是一个可以独立部署的项目,Maven的聚合功能

maven 工程启动找不到 Spring ContextLoaderListener 的解决办法

用maven 工程搭建项目,在搭建好之后,运行时却抛出了这样的错误:  Error configuring application listener of class org.springframework.web.context.ContextLoaderListener  java.lang.ClassNotFoundException: org.springframework.web.context.ContextLoaderListener, 这说明根本没有找到我们在 web.xml 里

搭建maven工程

//参考http://blog.csdn.net/zhshulin/article/details/30779873?utm_source=tuicool //参考http://wenku.baidu.com/link?url=416vT-NFq8wELep99j8IyXveHt_WCUYTbVqcM87nzheFbBciTfHsoc3NsOb00EWhgnDhhrMyC8X3Xi8UBcKiSvz-ZrNiO9SgPf8IV0EG-bm 最近因为工程需要,重新搭建了下maven工程,谈不上对各

在maven工程中搭建SSM框架的错误总结

第一次搭建Maven工程走了很多弯路,现在总算把项目搭起来并且能正常运行了.故总结一下教训 1.在建立Maven工程前,先确定成功下载安装了Maven.  命令行用 mvn -v  检验 找到Maven的安装目录C:\Program Files\apache-maven-3.5.2\conf中的setting.xml文件,打开后配置本地仓库 <localRepository>C:/Users/lts/.m2/repository</localRepository>  (注意这里的&

单工程搭建springmvc+spring+mybatis(maven,idea)

单工程搭建springmvc+spring+mybatis(maven,idea) 1.pom.xml <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <maven.compiler.source>1.7</maven.compiler.source> <maven.compiler.target>1.7</maven

001医疗项目-项目框架的搭建(四个maven工程)

这个项目资料来源于传智播客.用的是ssm框架, 我们首先建立一个working sets里面存放,我们的maven工程. 如下: yycg-maven730是working sets的项目,里面存放四个maven工程(springmybatis,yycgparent,yycgutil,yycgproject). 为什么我们要创建四个maven工程这么麻烦呢. 原因如下: 1.1.1      以maven作为架构进行模块划分 Maven是一个优秀的项目管理工具,提高项目管理效率. 使用maven