一段maven pom.xml中插件的配置文件


	4.0.0
	zttc.itat.user
	user-parent
	0.0.1-SNAPSHOT
	pom

	http://maven.apache.org

	
	
		
		../user-core
		../user-log
		../user-service
	

	
		
			user-release
			user release resp
			http://localhost:8081/nexus/content/repositories/cms-release/
		
		
			user-snapshots
			user snapshots resp
			http://localhost:8081/nexus/content/repositories/cms-snapshots/
		
	

	
		UTF-8
		com.mysql.jdbc.Driver
		jdbc:mysql://localhost:3306
		root
		123456
		D:\apache-tomcat-6.0.33-windows-x86
	

	

	
		
			
				junit
				junit
				4.10
				test
			
			
				org.hibernate
				hibernate-core
				4.1.10.Final
			
			
				mysql
				mysql-connector-java
				5.1.24
				runtime
			
			
				log4j
				log4j
				1.2.17
			
			
				dbunit
				dbunit
				2.2
			
			
				commons-logging
				commons-logging
				1.1.1
			
			
				org.easymock
				easymock
				3.1
				test
			

			
				org.mortbay.jetty
				servlet-api
				2.5.20110712
				provided
			

			
				${project.groupId}
				user-core
				${project.version}
			
			
				${project.groupId}
				user-service
				${project.version}
			
			
				${project.groupId}
				user-log
				${project.version}
				
					
					
						commons-logging
						commons-logging
					
				
			
		
	

	
		
			
				
				  org.mortbay.jetty
				  jetty-maven-plugin
				  
				    10
				    
				      /hello
				    
				    
				       
				          8787
				          60000
				       
				     
				  
				
				
					com.github.goldin
					copy-maven-plugin
					0.2.5
					
						
							copy-war
							package
							
								copy
							
							
								
									
										${catalina.home}/webapps
										${project.build.directory}
										
											user-web.war
										
									
								
							
						
					
				
				
					org.eclipse.m2e
					lifecycle-mapping
					1.0.0
					
						
							
								
									
										org.codehaus.mojo
										sql-maven-plugin
										[1.5,)
										
											execute
										
									
									
										
									
								
							
						
					
				
				
					org.codehaus.mojo
					sql-maven-plugin
					1.5
					
					
						
							mysql
							mysql-connector-java
							5.1.24
						
					
					
						${jdbc.driver}
						${jdbc.url}
						${jdbc.username}
						${jdbc.password}
					
					
						
							create-db
							compile
							
								execute
							
							
								create database IF NOT EXISTS itat_maven_test
							
						
						
							init-table
							test-compile
							
								execute
							
							
								
									src/main/resources/init.sql
								
							
						
					
				
				
					org.apache.maven.plugins
					maven-rar-plugin
					2.3
					
						
							
								rar
							
							package
						
					
					
						true
					
				
				
					org.codehaus.mojo
					cobertura-maven-plugin
					
						
							html
							xml
						
					
					
						
							cobertura-report
							
								cobertura
							
							test
						
					
				
				
					org.apache.maven.plugins
					maven-source-plugin
					2.2.1
					
						
							compile
							
								jar
							
						
					
				
				
				  
					org.apache.maven.plugins
					maven-compiler-plugin
					3.0
					
						1.6
						1.6
						
						
					
				
				
					org.apache.maven.plugins
					maven-surefire-plugin
					2.14
					
						
						
						
						
						
					
				
			
		
	

你可能感兴趣的:(一段maven pom.xml中插件的配置文件)