88 lines
		
	
	
		
			3.0 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
		
		
			
		
	
	
			88 lines
		
	
	
		
			3.0 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
|  | <?xml version="1.0" encoding="UTF-8"?> | ||
|  | <project xmlns="http://maven.apache.org/POM/4.0.0" | ||
|  |          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
|  |          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
|  |     <modelVersion>4.0.0</modelVersion> | ||
|  | 
 | ||
|  |     <artifactId>zipkin</artifactId> | ||
|  |     <version>1.0.0-SNAPSHOT</version> | ||
|  | 
 | ||
|  |     <parent> | ||
|  |         <groupId>org.springframework.boot</groupId> | ||
|  |         <artifactId>spring-boot-starter-parent</artifactId> | ||
|  |         <version>1.4.4.RELEASE</version> | ||
|  |         <relativePath/> <!-- lookup parent from repository --> | ||
|  |     </parent> | ||
|  | 
 | ||
|  |     <dependencies> | ||
|  |         <dependency> | ||
|  |             <groupId>org.springframework.cloud</groupId> | ||
|  |             <artifactId>spring-cloud-starter-config</artifactId> | ||
|  |         </dependency> | ||
|  |         <dependency> | ||
|  |             <groupId>org.springframework.cloud</groupId> | ||
|  |             <artifactId>spring-cloud-starter-eureka</artifactId> | ||
|  |         </dependency> | ||
|  | 
 | ||
|  |         <dependency> | ||
|  |             <groupId>io.zipkin.java</groupId> | ||
|  |             <artifactId>zipkin-server</artifactId> | ||
|  |         </dependency> | ||
|  | 
 | ||
|  |         <dependency> | ||
|  |             <groupId>io.zipkin.java</groupId> | ||
|  |             <artifactId>zipkin-autoconfigure-ui</artifactId> | ||
|  |             <scope>runtime</scope> | ||
|  |         </dependency> | ||
|  | 
 | ||
|  |         <dependency> | ||
|  |             <groupId>org.springframework.boot</groupId> | ||
|  |             <artifactId>spring-boot-starter-test</artifactId> | ||
|  |             <scope>test</scope> | ||
|  |         </dependency> | ||
|  |     </dependencies> | ||
|  | 
 | ||
|  |     <dependencyManagement> | ||
|  |         <dependencies> | ||
|  |             <dependency> | ||
|  |                 <groupId>org.springframework.cloud</groupId> | ||
|  |                 <artifactId>spring-cloud-dependencies</artifactId> | ||
|  |                 <version>${spring-cloud-dependencies.version}</version> | ||
|  |                 <type>pom</type> | ||
|  |                 <scope>import</scope> | ||
|  |             </dependency> | ||
|  |         </dependencies> | ||
|  |     </dependencyManagement> | ||
|  | 
 | ||
|  |     <build> | ||
|  |         <plugins> | ||
|  |             <plugin> | ||
|  |                 <groupId>org.springframework.boot</groupId> | ||
|  |                 <artifactId>spring-boot-maven-plugin</artifactId> | ||
|  |             </plugin> | ||
|  |             <plugin> | ||
|  |                 <groupId>org.apache.maven.plugins</groupId> | ||
|  |                 <artifactId>maven-compiler-plugin</artifactId> | ||
|  |                 <version>${maven-compiler-plugin.version}</version> | ||
|  |                 <configuration> | ||
|  |                     <source>1.8</source> | ||
|  |                     <target>1.8</target> | ||
|  |                 </configuration> | ||
|  |             </plugin> | ||
|  |             <plugin> | ||
|  |                 <groupId>org.apache.maven.plugins</groupId> | ||
|  |                 <artifactId>maven-surefire-plugin</artifactId> | ||
|  |                 <configuration> | ||
|  |                     <excludes> | ||
|  |                         <exclude>**/*LiveTest.java</exclude> | ||
|  |                     </excludes> | ||
|  |                 </configuration> | ||
|  |             </plugin> | ||
|  |         </plugins> | ||
|  |     </build> | ||
|  | 
 | ||
|  |     <properties> | ||
|  |         <spring-cloud-dependencies.version>Brixton.SR7</spring-cloud-dependencies.version> | ||
|  |         <maven-compiler-plugin.version>3.6.0</maven-compiler-plugin.version> | ||
|  |     </properties> | ||
|  | </project> |