forked from rongchao/epmet-cloud-rizhao
				
			
			You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							125 lines
						
					
					
						
							4.4 KiB
						
					
					
				
			
		
		
		
			
			
			
				
					
				
				
					
				
			
		
		
	
	
							125 lines
						
					
					
						
							4.4 KiB
						
					
					
				| <?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"> | |
|     <parent> | |
|         <artifactId>epmet-commons</artifactId> | |
|         <groupId>com.epmet</groupId> | |
|         <version>2.0.0</version> | |
|     </parent> | |
|     <modelVersion>4.0.0</modelVersion> | |
| 
 | |
|     <artifactId>epmet-common-clienttoken</artifactId> | |
|     <packaging>jar</packaging> | |
| 
 | |
|     <name>epmet-common-clienttoken</name> | |
|     <url>http://www.example.com</url> | |
|     <description>客户端token</description> | |
| 
 | |
|     <dependencies> | |
|         <dependency> | |
|             <groupId>com.epmet</groupId> | |
|             <artifactId>epmet-commons-tools</artifactId> | |
|             <version>${project.version}</version> | |
|         </dependency> | |
| 
 | |
|         <dependency> | |
|             <groupId>org.springframework.boot</groupId> | |
|             <artifactId>spring-boot-starter-web</artifactId> | |
|             <scope>provided</scope> | |
|         </dependency> | |
| 
 | |
|         <dependency> | |
|             <groupId>org.springframework.boot</groupId> | |
|             <artifactId>spring-boot-starter-aop</artifactId> | |
|             <scope>provided</scope> | |
|         </dependency> | |
| 
 | |
|         <dependency> | |
|             <groupId>org.springframework.boot</groupId> | |
|             <artifactId>spring-boot-configuration-processor</artifactId> | |
|             <optional>true</optional> | |
|             <exclusions> | |
|                 <exclusion> | |
|                     <groupId>com.vaadin.external.google</groupId> | |
|                     <artifactId>android-json</artifactId> | |
|                 </exclusion> | |
|             </exclusions> | |
|         </dependency> | |
| 
 | |
|         <dependency> | |
|             <groupId>org.springframework.boot</groupId> | |
|             <artifactId>spring-boot-autoconfigure</artifactId> | |
|             <scope>compile</scope> | |
|         </dependency> | |
| 
 | |
|         <dependency> | |
|             <groupId>org.springframework.boot</groupId> | |
|             <artifactId>spring-boot-autoconfigure-processor</artifactId> | |
|             <scope>compile</scope> | |
|             <optional>true</optional> | |
|         </dependency> | |
| 
 | |
|         <dependency> | |
|             <groupId>org.springframework.boot</groupId> | |
|             <artifactId>spring-boot-starter-log4j2</artifactId> | |
|             <scope>provided</scope> | |
|         </dependency> | |
| 
 | |
|         <dependency> | |
|             <groupId>io.jsonwebtoken</groupId> | |
|             <artifactId>jjwt</artifactId> | |
|             <version>0.7.0</version> | |
|         </dependency> | |
|     </dependencies> | |
| 
 | |
|     <build> | |
|         <finalName>${project.artifactId}</finalName> | |
| 
 | |
|         <plugins> | |
|             <plugin> | |
|                 <artifactId>maven-clean-plugin</artifactId> | |
|             </plugin> | |
|             <!-- see http://maven.apache.org/ref/current/maven-core/default-bindings.html#Plugin_bindings_for_war_packaging --> | |
|             <plugin> | |
|                 <artifactId>maven-resources-plugin</artifactId> | |
|             </plugin> | |
|             <plugin> | |
|                 <artifactId>maven-compiler-plugin</artifactId> | |
|                 <configuration> | |
|                     <parameters>true</parameters> | |
|                     <source>${maven.compiler.source}</source> <!-- 源代码使用的开发版本 --> | |
|                     <target>${maven.compiler.target}</target> <!-- 需要生成的目标class文件的编译版本 --> | |
|                     <encoding>${project.build.sourceEncoding}</encoding> | |
|                 </configuration> | |
|             </plugin> | |
|             <plugin> | |
|                 <artifactId>maven-surefire-plugin</artifactId> | |
|             </plugin> | |
|             <plugin> | |
|                 <artifactId>maven-war-plugin</artifactId> | |
|             </plugin> | |
|             <plugin> | |
|                 <artifactId>maven-install-plugin</artifactId> | |
|             </plugin> | |
|             <plugin> | |
|                 <artifactId>maven-deploy-plugin</artifactId> | |
|             </plugin> | |
| 
 | |
|             <!-- jar插件 --> | |
|             <plugin> | |
|                 <groupId>org.apache.maven.plugins</groupId> | |
|                 <artifactId>maven-jar-plugin</artifactId> | |
|                 <version>2.4</version> | |
|                 <configuration> | |
|                     <archive> | |
|                         <manifest> | |
|                             <addDefaultImplementationEntries>true</addDefaultImplementationEntries> | |
|                         </manifest> | |
|                     </archive> | |
|                 </configuration> | |
|             </plugin> | |
|         </plugins> | |
| 
 | |
|         <sourceDirectory>${project.basedir}/src/main/java</sourceDirectory> | |
|     </build> | |
| </project>
 | |
| 
 |