maven常用开源软件maven坐标

来源:互联网 发布:牛在印度的地位知乎 编辑:程序博客网 时间:2024/05/17 01:02

http://search.maven.org

常见的发行包
junit4.x
Xml代码  收藏代码
  1. <dependency>  
  2.     <groupId>junit</groupId>  
  3.     <artifactId>junit</artifactId>  
  4.     <version>4.8.2</version>  
  5.     <scope>test</scope>  
  6. </dependency>  


spring3.x
Xml代码  收藏代码
  1. <dependency>  
  2.     <groupId>org.springframework</groupId>  
  3.     <artifactId>spring-test</artifactId>  
  4.     <version>3.2.3.RELEASE</version>  
  5.     <scope>test</scope>  
  6. </dependency>  
  7. <dependency>  
  8.     <groupId>org.springframework</groupId>  
  9.     <artifactId>spring-aop</artifactId>  
  10.     <version>3.2.3.RELEASE</version>  
  11. </dependency>  
  12. <dependency>  
  13.     <groupId>org.springframework</groupId>  
  14.     <artifactId>spring-core</artifactId>  
  15.     <version>3.2.3.RELEASE</version>  
  16. </dependency>  
  17. <dependency>  
  18.     <groupId>org.springframework</groupId>  
  19.     <artifactId>spring-context</artifactId>  
  20.     <version>3.2.3.RELEASE</version>  
  21. </dependency>  
  22. <dependency>  
  23.     <groupId>org.springframework</groupId>  
  24.     <artifactId>spring-context-support</artifactId>  
  25.     <version>3.2.3.RELEASE</version>  
  26. </dependency>  
  27. <dependency>  
  28.     <groupId>org.springframework</groupId>  
  29.     <artifactId>spring-beans</artifactId>  
  30.     <version>3.2.3.RELEASE</version>  
  31. </dependency>  
  32. <dependency>  
  33.     <groupId>org.springframework</groupId>  
  34.     <artifactId>spring-tx</artifactId>  
  35.     <version>3.2.3.RELEASE</version>  
  36. </dependency>  
  37. <dependency>  
  38.     <groupId>org.springframework</groupId>  
  39.     <artifactId>spring-orm</artifactId>  
  40.     <version>3.2.3.RELEASE</version>  
  41. </dependency>  
  42. <dependency>  
  43.     <groupId>org.springframework</groupId>  
  44.     <artifactId>spring-jms</artifactId>  
  45.     <version>3.2.3.RELEASE</version>  
  46. </dependency>  
  47. <dependency>  
  48.     <groupId>org.springframework</groupId>  
  49.     <artifactId>spring-oxm</artifactId>  
  50.     <version>3.2.3.RELEASE</version>  
  51. </dependency>  
  52. <dependency>  
  53.     <groupId>org.springframework</groupId>  
  54.     <artifactId>spring-web</artifactId>  
  55.     <version>3.2.3.RELEASE</version>  
  56. </dependency>  
  57. <dependency>  
  58.     <groupId>org.springframework</groupId>  
  59.     <artifactId>spring-webmvc</artifactId>  
  60.     <version>3.2.3.RELEASE</version>  
  61. </dependency>  
  62. <dependency>  
  63.     <groupId>org.springframework</groupId>  
  64.     <artifactId>spring-webmvc-portlet</artifactId>  
  65.     <version>3.2.3.RELEASE</version>  
  66. </dependency>  
  67. <dependency>  
  68.     <groupId>aopalliance</groupId>  
  69.     <artifactId>aopalliance</artifactId>  
  70.     <version>1.0</version>  
  71. </dependency>  
  72. <dependency>  
  73.     <groupId>org.aspectj</groupId>  
  74.     <artifactId>aspectjweaver</artifactId>  
  75.     <version>1.6.11</version>  
  76. </dependency>  


spring-security
Xml代码  收藏代码
  1. <dependency>  
  2.     <groupId>org.springframework.security</groupId>  
  3.     <artifactId>spring-security-config</artifactId>  
  4.     <version>3.1.3.RELEASE</version>  
  5. </dependency>  
  6. <dependency>  
  7.     <groupId>org.springframework.security</groupId>  
  8.     <artifactId>spring-security-web</artifactId>  
  9.     <version>3.1.3.RELEASE</version>  
  10. </dependency>  
  11. <dependency>  
  12.     <groupId>org.springframework.security</groupId>  
  13.     <artifactId>spring-security-taglibs</artifactId>  
  14.     <version>3.1.3.RELEASE</version>  
  15. </dependency>  


spring-webflow
Xml代码  收藏代码
  1. <dependency>  
  2.     <groupId>org.springframework.webflow</groupId>  
  3.     <artifactId>spring-webflow</artifactId>  
  4.     <version>2.3.1.RELEASE</version>  
  5. </dependency>  
  6. <dependency>  
  7.     <groupId>org.glassfish.web</groupId>  
  8.     <artifactId>javax.el</artifactId>  
  9.     <version>2.2.3</version>  
  10. </dependency>  


spring-data-jpa
Xml代码  收藏代码
  1. <dependency>  
  2.     <groupId>org.springframework.data</groupId>  
  3.     <artifactId>spring-data-jpa</artifactId>  
  4.     <version>1.3.1.RELEASE</version>  
  5.     <exclusions>  
  6.         <exclusion>  
  7.             <groupId>org.aspectj</groupId>  
  8.             <artifactId>aspectjrt</artifactId>  
  9.         </exclusion>  
  10.         <exclusion>  
  11.             <groupId>org.slf4j</groupId>  
  12.             <artifactId>jcl-over-slf4j</artifactId>  
  13.         </exclusion>  
  14.     </exclusions>  
  15. </dependency>  


JPA 2.0
Xml代码  收藏代码
  1. <dependency>  
  2.     <groupId>org.hibernate</groupId>  
  3.     <artifactId>hibernate-entitymanager</artifactId>  
  4.     <version>4.1.8.Final</version>  
  5. </dependency>  


hibernate3.x
Xml代码  收藏代码
  1. <dependency>  
  2.     <groupId>org.hibernate</groupId>  
  3.     <artifactId>hibernate-core</artifactId>  
  4.     <version>3.6.10.Final</version>  
  5. </dependency>  


ibatis
Xml代码  收藏代码
  1. <dependency>  
  2.     <groupId>org.apache.ibatis</groupId>  
  3.     <artifactId>ibatis-sqlmap</artifactId>  
  4.     <version>2.3.4.726</version>  
  5. </dependency>  


freemaker
Xml代码  收藏代码
  1. <dependency>  
  2.     <groupId>org.freemarker</groupId>  
  3.     <artifactId>freemarker</artifactId>  
  4.     <version>2.3.19</version>  
  5. </dependency>  


MyBatis
Xml代码  收藏代码
  1. <dependency>  
  2.     <groupId>org.mybatis</groupId>  
  3.     <artifactId>mybatis</artifactId>  
  4.     <version>3.1.1</version>  
  5. </dependency>  
  6. <dependency>  
  7.     <groupId>org.mybatis</groupId>  
  8.     <artifactId>mybatis-spring</artifactId>  
  9.     <version>1.1.1</version>  
  10.     <exclusions>  
  11.         <exclusion>  
  12.             <groupId>org.springframework</groupId>  
  13.             <artifactId>spring-asm</artifactId>  
  14.         </exclusion>  
  15.         <exclusion>  
  16.             <groupId>org.springframework</groupId>  
  17.             <artifactId>spring-tx</artifactId>  
  18.         </exclusion>  
  19.         <exclusion>  
  20.             <groupId>org.springframework</groupId>  
  21.             <artifactId>spring-jdbc</artifactId>  
  22.         </exclusion>  
  23.         <exclusion>  
  24.             <groupId>org.springframework</groupId>  
  25.             <artifactId>spring-aop</artifactId>  
  26.         </exclusion>  
  27.         <exclusion>  
  28.             <groupId>org.springframework</groupId>  
  29.             <artifactId>spring-core</artifactId>  
  30.         </exclusion>  
  31.         <exclusion>  
  32.             <groupId>org.springframework</groupId>  
  33.             <artifactId>spring-context</artifactId>  
  34.         </exclusion>  
  35.     </exclusions>  
  36. </dependency>  


bytecode
Xml代码  收藏代码
  1. <dependency>  
  2.     <groupId>cglib</groupId>  
  3.     <artifactId>cglib</artifactId>  
  4.     <version>2.2</version>  
  5. </dependency>  
  6. <dependency>  
  7.     <groupId>javassist</groupId>  
  8.     <artifactId>javassist</artifactId>  
  9.     <version>3.12.0.GA</version>  
  10. </dependency>  


log4j
Xml代码  收藏代码
  1. <dependency>  
  2.     <groupId>org.slf4j</groupId>  
  3.     <artifactId>slf4j-api</artifactId>  
  4.     <version>1.7.2</version>  
  5. </dependency>  
  6. <dependency>  
  7.     <groupId>org.slf4j</groupId>  
  8.     <artifactId>slf4j-log4j12</artifactId>  
  9.     <version>1.7.2</version>  
  10. </dependency>  
  11. <dependency>  
  12.     <groupId>log4j</groupId>  
  13.     <artifactId>log4j</artifactId>  
  14.     <version>1.2.16</version>  
  15. </dependency>  


logback
Xml代码  收藏代码
  1. <dependency>  
  2.     <groupId>org.slf4j</groupId>  
  3.     <artifactId>slf4j-api</artifactId>  
  4.     <version>1.7.5</version>  
  5. </dependency>  
  6. <dependency>  
  7.     <groupId>ch.qos.logback</groupId>  
  8.     <artifactId>logback-core</artifactId>  
  9.     <version>1.0.13</version>  
  10. </dependency>  
  11. <dependency>  
  12.     <groupId>ch.qos.logback</groupId>  
  13.     <artifactId>logback-classic</artifactId>  
  14.     <version>1.0.13</version>  
  15. </dependency>  
  16. <dependency>  
  17.     <groupId>org.logback-extensions</groupId>  
  18.     <artifactId>logback-ext-spring</artifactId>  
  19.     <version>0.1.1</version>  
  20. </dependency>  


dom4j
Xml代码  收藏代码
  1. <dependency>  
  2.     <groupId>dom4j</groupId>  
  3.     <artifactId>dom4j</artifactId>  
  4.     <version>1.6.1</version>  
  5. </dependency>  


c3p0
Xml代码  收藏代码
  1. <dependency>  
  2.     <groupId>c3p0</groupId>  
  3.     <artifactId>c3p0</artifactId>  
  4.     <version>0.9.1.2</version>  
  5. </dependency>  


BoneCP
Xml代码  收藏代码
  1. <dependency>  
  2.     <groupId>com.jolbox</groupId>  
  3.     <artifactId>bonecp</artifactId>  
  4.     <version>0.7.1.RELEASE</version>  
  5. </dependency>  


ehcache
Xml代码  收藏代码
  1. <dependency>  
  2.     <groupId>net.sf.ehcache</groupId>  
  3.     <artifactId>ehcache</artifactId>  
  4.     <version>1.2.3</version>  
  5. </dependency>  


quartz
Xml代码  收藏代码
  1. <dependency>  
  2.     <groupId>opensymphony</groupId>  
  3.     <artifactId>quartz</artifactId>  
  4.     <version>1.6.3</version>  
  5. </dependency>  


mysql驱动
Xml代码  收藏代码
  1. <dependency>  
  2.     <groupId>mysql</groupId>  
  3.     <artifactId>mysql-connector-java</artifactId>  
  4.     <version>5.1.22</version>  
  5. </dependency>  


hsqldb驱动
Xml代码  收藏代码
  1. <dependency>  
  2.     <groupId>org.hsqldb</groupId>  
  3.     <artifactId>hsqldb</artifactId>  
  4.     <version>2.2.9</version>  
  5. </dependency>  


jackson 2.x
Xml代码  收藏代码
  1. <dependency>  
  2.     <groupId>com.fasterxml.jackson.jaxrs</groupId>  
  3.     <artifactId>jackson-jaxrs-xml-provider</artifactId>  
  4.     <version>2.2.2</version>  
  5. </dependency>  


apache-tiles
Xml代码  收藏代码
  1. <dependency>  
  2.     <groupId>org.apache.tiles</groupId>  
  3.     <artifactId>tiles-core</artifactId>  
  4.     <version>2.2.2</version>  
  5.     <exclusions>  
  6.         <exclusion>  
  7.             <groupId>org.slf4j</groupId>  
  8.             <artifactId>jcl-over-slf4j</artifactId>  
  9.         </exclusion>  
  10.     </exclusions>  
  11. </dependency>  
  12. <dependency>  
  13.     <groupId>org.apache.tiles</groupId>  
  14.     <artifactId>tiles-jsp</artifactId>  
  15.     <version>2.2.2</version>  
  16. </dependency>  
  17. <dependency>  
  18.     <groupId>org.apache.tiles</groupId>  
  19.     <artifactId>tiles-servlet</artifactId>  
  20.     <version>2.2.2</version>  
  21. </dependency>  
  22. <dependency>  
  23.     <groupId>org.apache.tiles</groupId>  
  24.     <artifactId>tiles-template</artifactId>  
  25.     <version>2.2.2</version>  
  26. </dependency>  


web开发
Xml代码  收藏代码
  1. <dependency>  
  2.     <groupId>javax.servlet</groupId>  
  3.     <artifactId>javax.servlet-api</artifactId>  
  4.     <version>3.0.1</version>  
  5.     <scope>provided</scope>  
  6. </dependency>  
  7. <dependency>  
  8.     <groupId>javax.servlet</groupId>  
  9.     <artifactId>jstl</artifactId>  
  10.     <version>1.2</version>  
  11.     <scope>provided</scope>  
  12. </dependency>  
  13. <dependency>  
  14.     <groupId>taglibs</groupId>  
  15.     <artifactId>standard</artifactId>  
  16.     <version>1.1.2</version>  
  17.     <scope>provided</scope>  
  18. </dependency>  
  19. <dependency>  
  20.     <groupId>javax.servlet.jsp</groupId>  
  21.     <artifactId>javax.servlet.jsp-api</artifactId>  
  22.     <version>2.3.1</version>  
  23.     <scope>provided</scope>  
  24. </dependency>  


hibernate-validator
Xml代码  收藏代码
  1. <dependency>  
  2.     <groupId>org.hibernate</groupId>  
  3.     <artifactId>hibernate-validator</artifactId>  
  4.     <version>4.3.1.Final</version>  
  5. </dependency>  


apache-poi
Xml代码  收藏代码
  1. <dependency>  
  2.     <groupId>org.apache.poi</groupId>  
  3.     <artifactId>poi</artifactId>  
  4.     <version>3.7</version>  
  5. </dependency>  


apache-ant
Xml代码  收藏代码
  1. <dependency>  
  2.     <groupId>org.apache.ant</groupId>  
  3.     <artifactId>ant</artifactId>  
  4.     <version>1.7.0</version>  
  5.     <exclusions>  
  6.         <exclusion>  
  7.             <groupId>org.apache.ant</groupId>  
  8.             <artifactId>ant-launcher</artifactId>  
  9.         </exclusion>  
  10.     </exclusions>  
  11. </dependency>  


ckeditor
Xml代码  收藏代码
  1. <dependency>  
  2.     <groupId>com.ckeditor</groupId>  
  3.     <artifactId>ckeditor-java-core</artifactId>  
  4.     <version>3.5.3</version>  
  5. </dependency>  


apache-commons
Xml代码  收藏代码
  1. <dependency>  
  2.     <groupId>commons-codec</groupId>  
  3.     <artifactId>commons-codec</artifactId>  
  4.     <version>1.4</version>  
  5. </dependency>  
  6. <dependency>  
  7.     <groupId>commons-io</groupId>  
  8.     <artifactId>commons-io</artifactId>  
  9.     <version>2.1</version>  
  10. </dependency>  
  11. <dependency>  
  12.     <groupId>commons-beanutils</groupId>  
  13.     <artifactId>commons-beanutils</artifactId>  
  14.     <version>1.8.3</version>  
  15. </dependency>  
  16. <dependency>  
  17.     <groupId>commons-logging</groupId>  
  18.     <artifactId>commons-logging</artifactId>  
  19.     <version>1.1.1</version>  
  20. </dependency>  
  21. <dependency>  
  22.     <groupId>commons-collections</groupId>  
  23.     <artifactId>commons-collections</artifactId>  
  24.     <version>3.2.1</version>  
  25. </dependency>  
  26. <dependency>  
  27.     <groupId>commons-lang</groupId>  
  28.     <artifactId>commons-lang</artifactId>  
  29.     <version>2.6</version>  
  30. </dependency>  
  31. <dependency>  
  32.     <groupId>commons-fileupload</groupId>  
  33.     <artifactId>commons-fileupload</artifactId>  
  34.     <version>1.2.2</version>  
  35. </dependency>  
  36. <dependency>  
  37.     <groupId>commons-math</groupId>  
  38.     <artifactId>commons-math</artifactId>  
  39.     <version>1.2</version>  
  40. </dependency>  
  41. <dependency>  
  42.     <groupId>commons-pool</groupId>  
  43.     <artifactId>commons-pool</artifactId>  
  44.     <version>1.5.6</version>  
  45. </dependency>  
  46. <dependency>  
  47.     <groupId>commons-httpclient</groupId>  
  48.     <artifactId>commons-httpclient</artifactId>  
  49.     <version>3.1</version>  
  50. </dependency>  
  51. <dependency>  
  52.     <groupId>commons-digester</groupId>  
  53.     <artifactId>commons-digester</artifactId>  
  54.     <version>2.1</version>  
  55. </dependency>  
  56. <dependency>  
  57.     <groupId>commons-net</groupId>  
  58.     <artifactId>commons-net</artifactId>  
  59.     <version>3.2</version>  
  60. </dependency>  
  61. <dependency>  
  62.     <groupId>commons-email</groupId>  
  63.     <artifactId>commons-email</artifactId>  
  64.     <version>1.0</version>  
  65.     <exclusions>  
  66.         <exclusion>  
  67.             <groupId>javax.activation</groupId>  
  68.             <artifactId>activation</artifactId>  
  69.         </exclusion>  
  70.     </exclusions>  
  71. </dependency>  
  72. <dependency>  
  73.     <groupId>javax.mail</groupId>  
  74.     <artifactId>mail</artifactId>  
  75.     <version>1.4</version>  
  76. </dependency>  


joda time
Xml代码  收藏代码
  1. <dependency>  
  2.     <groupId>joda-time</groupId>  
  3.     <artifactId>joda-time</artifactId>  
  4.     <version>2.1</version>  
  5. </dependency>  


memcached-java-client
Xml代码  收藏代码
  1. <dependency>  
  2.     <groupId>com.googlecode.xmemcached</groupId>  
  3.     <artifactId>xmemcached</artifactId>  
  4.     <version>1.3.7</version>  
  5. </dependency>  


jsr330
Xml代码  收藏代码
  1. <dependency>  
  2.     <groupId>javax.inject</groupId>  
  3.     <artifactId>javax.inject</artifactId>  
  4.     <version>1</version>  
  5. </dependency>  


activemq
Xml代码  收藏代码
  1. <dependency>  
  2.     <groupId>org.apache.activemq</groupId>  
  3.     <artifactId>activemq-all</artifactId>  
  4.     <version>5.6.0</version>  
  5. </dependency>  
  6. <dependency>  
  7.     <groupId>org.apache.activemq</groupId>  
  8.     <artifactId>activemq-pool</artifactId>  
  9.     <version>5.6.0</version>  
  10.     <exclusions>  
  11.         <exclusion>  
  12.             <groupId>org.apache.activemq</groupId>  
  13.             <artifactId>activemq-core</artifactId>  
  14.         </exclusion>  
  15.     </exclusions>  
  16. </dependency>  


jee
Xml代码  收藏代码
  1. <dependency>  
  2.     <groupId>org.ow2.spec.ee</groupId>  
  3.     <artifactId>ow2-ejb-3.0-spec</artifactId>  
  4.     <version>1.0.8</version>  
  5. </dependency>  
  6. <dependency>  
  7.     <groupId>org.hibernate.javax.persistence</groupId>  
  8.     <artifactId>hibernate-jpa-2.0-api</artifactId>  
  9.     <version>1.0.1.Final</version>  
  10. </dependency>  
  11. <dependency>  
  12.     <groupId>org.jboss.spec.javax.jms</groupId>  
  13.     <artifactId>jboss-jms-api_1.1_spec</artifactId>  
  14.     <version>1.0.0.Final</version>  
  15. </dependency>  


JAVA EE 5 API
Xml代码  收藏代码
  1. <dependency>  
  2.     <groupId>javaee</groupId>  
  3.     <artifactId>javaee-api</artifactId>  
  4.     <version>5</version>  
  5. </dependency>  
分享到:
原创粉丝点击