springframework maven地址

http://blog.springsource.com/2009/12/02/obtaining-spring-3-artifacts-with-maven/

A .pom <dependency> snippet for each Spring Framework 3 artifact as it will be indexed in Maven Central is listed below.

001	<!-- Shared version number properties -->
002	<properties>
003	 <org.springframework.version>3.0.5.RELEASE</org.springframework.version>
004	</properties>
005
006	<!--
007	 Core utilities used by other modules.
008	 Define this if you use Spring Utility APIs (org.springframework.core.*/org.springframework.util.*)
009	-->
010	<dependency>
011	 <groupId>org.springframework</groupId>
012	 <artifactId>spring-core</artifactId>
013	 <version>${org.springframework.version}</version>
014	</dependency>
015
016	<!--
017	 Expression Language (depends on spring-core)
018	 Define this if you use Spring Expression APIs (org.springframework.expression.*)
019	-->
020	<dependency>
021	 <groupId>org.springframework</groupId>
022	 <artifactId>spring-expression</artifactId>
023	 <version>${org.springframework.version}</version>
024	</dependency>
025
026	<!--
027	 Bean Factory and JavaBeans utilities (depends on spring-core)
028	 Define this if you use Spring Bean APIs (org.springframework.beans.*)
029	-->
030	<dependency>
031	 <groupId>org.springframework</groupId>
032	 <artifactId>spring-beans</artifactId>
033	 <version>${org.springframework.version}</version>
034	</dependency>
035
036	<!--
037	 Aspect Oriented Programming (AOP) Framework (depends on spring-core, spring-beans)
038	 Define this if you use Spring AOP APIs (org.springframework.aop.*)
039	-->
040	<dependency>
041	 <groupId>org.springframework</groupId>
042	 <artifactId>spring-aop</artifactId>
043	 <version>${org.springframework.version}</version>
044	</dependency>
045
046	<!--
047	 Application Context (depends on spring-core, spring-expression, spring-aop, spring-beans)
048	 This is the central artifact for Spring's Dependency Injection Container and is generally always defined
049	-->
050	<dependency>
051	 <groupId>org.springframework</groupId>
052	 <artifactId>spring-context</artifactId>
053	 <version>${org.springframework.version}</version>
054	</dependency>
055
056	<!--
057	 Various Application Context utilities, including EhCache, JavaMail, Quartz, and Freemarker integration
058	 Define this if you need any of these integrations
059	-->
060	<dependency>
061	 <groupId>org.springframework</groupId>
062	 <artifactId>spring-context-support</artifactId>
063	 <version>${org.springframework.version}</version>
064	</dependency>
065
066	<!--
067	 Transaction Management Abstraction (depends on spring-core, spring-beans, spring-aop, spring-context)
068	 Define this if you use Spring Transactions or DAO Exception Hierarchy
069	 (org.springframework.transaction.*/org.springframework.dao.*)
070	-->
071	<dependency>
072	 <groupId>org.springframework</groupId>
073	 <artifactId>spring-tx</artifactId>
074	 <version>${org.springframework.version}</version>
075	</dependency>
076
077	<!--
078	 JDBC Data Access Library (depends on spring-core, spring-beans, spring-context, spring-tx)
079	 Define this if you use Spring's JdbcTemplate API (org.springframework.jdbc.*)
080	-->
081	<dependency>
082	 <groupId>org.springframework</groupId>
083	 <artifactId>spring-jdbc</artifactId>
084	 <version>${org.springframework.version}</version>
085	</dependency>
086
087	<!--
088	 Object-to-Relation-Mapping (ORM) integration with Hibernate, JPA, and iBatis.
089	 (depends on spring-core, spring-beans, spring-context, spring-tx)
090	 Define this if you need ORM (org.springframework.orm.*)
091	-->
092	<dependency>
093	 <groupId>org.springframework</groupId>
094	 <artifactId>spring-orm</artifactId>
095	 <version>${org.springframework.version}</version>
096	</dependency>
097
098	<!--
099	 Object-to-XML Mapping (OXM) abstraction and integration with JAXB, JiBX, Castor, XStream, and XML Beans.
100	 (depends on spring-core, spring-beans, spring-context)
101	 Define this if you need OXM (org.springframework.oxm.*)
102	-->
103	<dependency>
104	 <groupId>org.springframework</groupId>
105	 <artifactId>spring-oxm</artifactId>
106	 <version>${org.springframework.version}</version>
107	</dependency>
108
109	<!--
110	 Web application development utilities applicable to both Servlet and Portlet Environments
111	 (depends on spring-core, spring-beans, spring-context)
112	 Define this if you use Spring MVC, or wish to use Struts, JSF, or another web framework with Spring (org.springframework.web.*)
113	-->
114	<dependency>
115	 <groupId>org.springframework</groupId>
116	 <artifactId>spring-web</artifactId>
117	 <version>${org.springframework.version}</version>
118	</dependency>
119
120	<!--
121	 Spring MVC for Servlet Environments (depends on spring-core, spring-beans, spring-context, spring-web)
122	 Define this if you use Spring MVC with a Servlet Container such as Apache Tomcat (org.springframework.web.servlet.*)
123	-->
124	<dependency>
125	 <groupId>org.springframework</groupId>
126	 <artifactId>spring-webmvc</artifactId>
127	 <version>${org.springframework.version}</version>
128	</dependency>
129
130	<!--
131	 Spring MVC for Portlet Environments (depends on spring-core, spring-beans, spring-context, spring-web)
132	 Define this if you use Spring MVC with a Portlet Container (org.springframework.web.portlet.*)
133	-->
134	<dependency>
135	 <groupId>org.springframework</groupId>
136	 <artifactId>spring-webmvc-portlet</artifactId>
137	 <version>${org.springframework.version}</version>
138	</dependency>
139
140	<!--
141	 Support for testing Spring applications with tools such as JUnit and TestNG
142	 This artifact is generally always defined with a 'test' scope for the integration testing framework and unit testing stubs
143	-->
144	<dependency>
145	 <groupId>org.springframework</groupId>
146	 <artifactId>spring-test</artifactId>
147	 <version>${org.springframework.version}</version>
148	 <scope>test</scope>
149	</dependency>

Obtaining Spring Releases From The Enterprise Bundle Repository (EBR)

To obtain final releases of Spring projects from the EBR, add the following repositories to your .pom:


01	<repository>
02	 <id>com.springsource.repository.bundles.release</id>
03	 <name>EBR Spring Release Repository</name>
04	 <url>http:// repository.springsource.com/maven/bundles/release</url>
05	</repository>
06	<repository>
07	 <id>com.springsource.repository.bundles.external</id>
08	 <name>EBR External Release Repository</name>
09	 <url>http:// repository.springsource.com/maven/bundles/external</url>
10	</repository>

Then simply add the dependencies your project requires, keeping in mind the EBR artifact naming conventions.

时间: 2024-08-03 07:39:48

springframework maven地址的相关文章

使用maven镜像

综述 用maven做项目,最郁闷的莫过于某些依赖库下载不了.被墙了,你懂的.使用maven镜像仓库及其重要,特别是国内的镜像,可以有效缓解被墙疼痛. 常用的镜像 国外镜像 ibiblio.org <mirror> <id>ibiblio</id> <mirrorOf>central</mirrorOf> <name>ibiblio Mirror of http://repo1.maven.org/maven2/</name>

OBTAINING SPRING 3 ARTIFACTS WITH MAVEN

原文:http://blog.springsource.com/2009/12/02/obtaining-spring-3-artifacts-with-maven/ A recent commentor here ragged, "It's only half of the world that's using Maven", when pointing out it is not obvious how to obtain Spring 3 artifacts with Maven

eclipse maven-Eclipse安装maven插件问题

问题描述 Eclipse安装maven插件问题 Eclipse版本:eclipse-standard-kepler-SR2-win32 在Eclipse中安装maven插件,试过在线安装的,提示各种依赖找不到,使用link方法,结果打开Eclipse还是没有maven,折腾了好久了,还是没装好了,有谁知道怎么安装吗 现在还有一点疑惑的是官网上各种找不到Eclipse的插件maven的在线安装地址. 解决方案 同求这个问题.maven地址找不到.就算能在下载了 打开还是不可以 解决方案二: 最近试

【Maven】1.使用myecplise配置自己的Maven配置,不使用默认的maven

[好文章]参考地址: http://www.cnblogs.com/luotaoyeah/p/3764533.html   --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

解决android studio 3.0 加载项目过慢问题--maven仓库选择

今天用android studio 3.0打开项目时发现一直在谷歌的maven仓库加载 卡到这不动了,看了下maven仓库的配置发现: buildscript { repositories { jcenter() maven { url 'https://maven.google.com' name 'Google' } google() } dependencies { classpath 'com.android.tools.build:gradle:3.0.0' // NOTE: Do n

日志服务接入方式之JS篇

本篇主要介绍使用JS SDK收集浏览器端的数据,附件是我们提供的JS库,使用它可以非常方便的收集浏览器端的信息,比如用户操作系统类型.浏览器类型和版本.屏幕分辩率等.除此以外,JS SDK还支持收集用户自定义的数据,比如在事件响应中收集特定的信息. JS SDK提供了一种非常灵活的前端页面代码埋点方式,您可以使用JS SDK将您关心的任何数据写入日志服务,后续可以在日志服务中消费这些数据,比如导入ODPS.OSS,也可以使用Client Library进行自定义消费,下面将介绍下JS SDK的使

Maven2_pom文件

在最开始如果你使用的时eclipse,那么你需要去安装一下maven的插件 插件路径:http://m2eclipse.sonatype.org/sites/m2e 安装指南:http://blog.163.com/myrudy@126/blog/static/17185153620108284935318/ 进入eclipse->window->preferences->搜索maven,出来Installations,add进你自己的maven地址.User Settings里面要填自

【转载】Docker 镜像优化与最佳实践

阿里云高级研发工程师御坂在云栖TechDay41期的线下沙龙活动中分享了Docker镜像优化与最佳实践.本文为沙龙内容回顾. 从Docker镜像存储的原理开始,针对镜像的存储.网络传输,介绍如何在构建中对这些关键点进行优化.并介绍Docker最新的多阶段构建的功能,以解决构建依赖的中间产物问题. 镜像概念 镜像是什么? 从一个比较具体的角度去看,镜像就是一个多层存储的文件,相较于普通的ISO系统镜像来说,分层存储会带来两个优点: 一个是分层存储的镜像比较容易扩展,比如我们可以基于一个Ubuntu

Docker 镜像优化与最佳实践

云栖TechDay41期,阿里云高级研发工程师御坂带来Docker镜像优化与最佳实践.从Docker镜像存储的原理开始,针对镜像的存储.网络传输,介绍如何在构建中对这些关键点进行优化.并介绍Docker最新的多阶段构建的功能,以解决构建依赖的中间产物问题.   以下是精彩内容整理: 镜像概念 镜像是什么?从一个比较具体的角度去看,镜像就是一个多层存储的文件,相较于普通的ISO系统镜像来说,分层存储会带来两个优点,一个是分层存储的镜像比较容易扩展,比如我们可以基于一个Ubuntu镜像去构建我们的N