* javaslang updates * groovy * update and clean from upstream * upate from upstream and clean * update * cleanup * clean
		
			
				
	
	
		
			133 lines
		
	
	
		
			5.9 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			133 lines
		
	
	
		
			5.9 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>
 | |
|     <groupId>spring-data-javaslangb</groupId>
 | |
|     <artifactId>spring-data-javaslangb</artifactId>
 | |
|     <version>0.0.1-SNAPSHOT</version>
 | |
|      <properties>
 | |
|         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
 | |
|         <maven-surefire-plugin.version>2.19.1</maven-surefire-plugin.version>
 | |
|         <maven-compiler-plugin.version>3.1</maven-compiler-plugin.version>
 | |
|         <groovy-eclipse-compiler.version>2.9.1-01</groovy-eclipse-compiler.version>
 | |
|         <groovy-eclipse-batch.version>2.3.7-01</groovy-eclipse-batch.version>
 | |
|         <org.codehouse.groovy.version>2.4.8</org.codehouse.groovy.version>
 | |
|         <javaslang.version>2.0.5</javaslang.version>
 | |
|         <junit.version>4.12</junit.version>
 | |
|         <spring-boot.version>1.5.1.RELEASE</spring-boot.version>
 | |
|         <spring-context.version>4.3.6.RELEASE</spring-context.version>
 | |
|         <spring-core.version>4.3.6.RELEASE</spring-core.version>
 | |
|         <spring-test.version>4.3.6.RELEASE</spring-test.version>
 | |
|         <project.build.testSourceDirectory>${basedir}/src/test/java</project.build.testSourceDirectory>
 | |
|     </properties>
 | |
|     <parent>
 | |
|         <groupId>org.springframework.boot</groupId>
 | |
|         <artifactId>spring-boot-starter-parent</artifactId>
 | |
|         <version>1.5.1.RELEASE</version>
 | |
|     </parent>
 | |
|     <profiles>
 | |
|         <profile>
 | |
|             <id>test-app</id>
 | |
|             <build>
 | |
|                 <defaultGoal>verify</defaultGoal>
 | |
|                 <plugins>
 | |
|                     <plugin>
 | |
|                         <groupId>org.springframework.boot</groupId>
 | |
|                         <artifactId>spring-boot-maven-plugin</artifactId>
 | |
|                         <executions>
 | |
|                             <execution>
 | |
|                                 <id>spring-boot-run</id>
 | |
|                                 <phase>verify</phase>
 | |
|                                 <goals>
 | |
|                                     <goal>run</goal>
 | |
|                                 </goals>
 | |
|                                 <inherited>false</inherited>
 | |
|                             </execution>
 | |
|                         </executions>
 | |
|                     </plugin>
 | |
|                 </plugins>
 | |
|             </build>
 | |
|         </profile>
 | |
|     </profiles>
 | |
|     <build>
 | |
|         <plugins>
 | |
|             <plugin>
 | |
|                 <artifactId>maven-compiler-plugin</artifactId>
 | |
|                 <version>3.5.1</version>
 | |
|                 <configuration>
 | |
|                     <source>1.8</source>
 | |
|                     <target>1.8</target>
 | |
|                 </configuration>
 | |
|             </plugin>
 | |
|             <plugin>
 | |
|                 <groupId>org.apache.maven.plugins</groupId>
 | |
|                 <artifactId>maven-surefire-plugin</artifactId>
 | |
|                 <version>${maven-surefire-plugin.version}</version>
 | |
|                 <configuration>
 | |
|                     <testSourceDirectory>${project.build.testSourceDirectory}</testSourceDirectory>
 | |
|                 </configuration>           
 | |
|             </plugin>
 | |
|         </plugins>
 | |
|     </build>
 | |
|     <dependencies>
 | |
|         <dependency>
 | |
|             <groupId>org.springframework.boot</groupId>
 | |
|             <artifactId>spring-boot-devtools</artifactId>
 | |
|             <optional>true</optional>
 | |
|         </dependency>
 | |
|         <!-- https://mvnrepository.com/artifact/com.h2database/h2 -->
 | |
|         <dependency>
 | |
|             <groupId>com.h2database</groupId>
 | |
|             <artifactId>h2</artifactId>
 | |
|             <version>1.4.193</version>
 | |
|         </dependency>
 | |
|         <!-- https://mvnrepository.com/artifact/io.javaslang/javaslang -->
 | |
|         <dependency>
 | |
|             <groupId>io.javaslang</groupId>
 | |
|             <artifactId>javaslang</artifactId>
 | |
|             <version>${javaslang.version}</version>
 | |
|         </dependency>
 | |
|         <!-- https://mvnrepository.com/artifact/org.springframework.data/spring-data-jpa -->
 | |
|         <dependency>
 | |
|             <groupId>org.springframework.data</groupId>
 | |
|             <artifactId>spring-data-jpa</artifactId>
 | |
|             <version>1.11.0.RELEASE</version>
 | |
|         </dependency>
 | |
|         <!-- https://mvnrepository.com/artifact/org.springframework.boot/spring-boot -->
 | |
|         <dependency>
 | |
|             <groupId>org.springframework.boot</groupId>
 | |
|             <artifactId>spring-boot</artifactId>
 | |
|             <version>${spring-boot.version}</version>
 | |
|         </dependency>
 | |
|         <!-- https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-data-jpa -->
 | |
|         <dependency>
 | |
|             <groupId>org.springframework.boot</groupId>
 | |
|             <artifactId>spring-boot-starter-data-jpa</artifactId>
 | |
|             <version>${spring-boot.version}</version>
 | |
|         </dependency>
 | |
|         <!-- https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-test -->
 | |
|         <dependency>
 | |
|             <groupId>org.springframework.boot</groupId>
 | |
|             <artifactId>spring-boot-starter-test</artifactId>
 | |
|             <version>${spring-boot.version}</version>
 | |
|         </dependency>
 | |
|         <!-- https://mvnrepository.com/artifact/org.springframework/spring-context -->
 | |
|         <dependency>
 | |
|             <groupId>org.springframework</groupId>
 | |
|             <artifactId>spring-context</artifactId>
 | |
|             <version>${spring-context.version}</version>
 | |
|         </dependency>
 | |
|         <!-- https://mvnrepository.com/artifact/org.springframework/spring-core -->
 | |
|         <dependency>
 | |
|             <groupId>org.springframework</groupId>
 | |
|             <artifactId>spring-core</artifactId>
 | |
|             <version>${spring-core.version}</version>
 | |
|         </dependency>
 | |
|         <!-- https://mvnrepository.com/artifact/junit/junit -->
 | |
|         <dependency>
 | |
|             <groupId>junit</groupId>
 | |
|             <artifactId>junit</artifactId>
 | |
|             <version>${junit.version}</version>
 | |
|             <scope>test</scope>
 | |
|         </dependency>
 | |
|     </dependencies>
 | |
| </project> |