Isolate gerrit:server rule in gerrit/server package
Move c.g.g.rules and c.g.g.audit packages to c.g.g.server package to reflect the real dependencies on server package for these clases. This allows us to move server code related BUILD rules from general package c.g.g to c.g.g.server package. With this small refactoring we can achieve our goal having the BUILD files as close to the sources as possible. Moreover, this non-intrusive change (no core plugins were affected) significantly simplifies the whole build structure as this allows us to eliminate BUILD rule in general c.g.g package. Before this change a developer must study build files to actually understand what parts of codes are controlled by c.g.g/BUILD build file. With this change, it is obvious, because all BUILD files are located as close as possible to the sources they control. This changes also leaves place for improvement. At the moment, the sources can be isolated from the giant java/com/google/gerrit/server rules, the packages can be moved outside of c.g.g.server package and de-coupled from java/com/google/gerrit/server rules, as it was already done with receive, index, metrics and lifecycle packages. These future and further decomposition of java/com/google/gerrit/server rule is beyond of the scope of this change. Change-Id: Iac35422bd9d6ad933c2dded2293c679cdd2aead5
This commit is contained in:
		 David Ostrovsky
					David Ostrovsky
				
			
				
					committed by
					
						 Dave Borowitz
						Dave Borowitz
					
				
			
			
				
	
			
			
			 Dave Borowitz
						Dave Borowitz
					
				
			
						parent
						
							376a7bbb64
						
					
				
				
					commit
					590071e7ff
				
			| @@ -3,12 +3,12 @@ java_library( | ||||
|     srcs = glob(["**/*.java"]), | ||||
|     visibility = ["//visibility:public"], | ||||
|     deps = [ | ||||
|         "//java/com/google/gerrit:server", | ||||
|         "//java/com/google/gerrit/extensions:api", | ||||
|         "//java/com/google/gerrit/index", | ||||
|         "//java/com/google/gerrit/index:query_exception", | ||||
|         "//java/com/google/gerrit/lifecycle", | ||||
|         "//java/com/google/gerrit/reviewdb:server", | ||||
|         "//java/com/google/gerrit/server", | ||||
|         "//lib:gson", | ||||
|         "//lib:guava", | ||||
|         "//lib:gwtorm", | ||||
|   | ||||
		Reference in New Issue
	
	Block a user