|
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 3 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 4 | + <modelVersion>4.0.0</modelVersion> |
| 5 | + <groupId>io.shiftleft</groupId> |
| 6 | + <artifactId>hello-shiftleft</artifactId> |
| 7 | + <version>0.0.1</version> |
| 8 | + <parent> |
| 9 | + <groupId>org.springframework.boot</groupId> |
| 10 | + <artifactId>spring-boot-starter-parent</artifactId> |
| 11 | + <version>1.5.1.RELEASE</version> |
| 12 | + </parent> |
| 13 | + <dependencies> |
| 14 | + <dependency> |
| 15 | + <groupId>commons-io</groupId> |
| 16 | + <artifactId>commons-io</artifactId> |
| 17 | + <version>2.5</version> |
| 18 | + </dependency> |
| 19 | + <dependency> |
| 20 | + <groupId>org.apache.httpcomponents</groupId> |
| 21 | + <artifactId>httpclient</artifactId> |
| 22 | + <version>4.3.4</version> |
| 23 | + </dependency> |
| 24 | + <dependency> |
| 25 | + <groupId>org.zeroturnaround</groupId> |
| 26 | + <artifactId>zt-exec</artifactId> |
| 27 | + <version>1.9</version> |
| 28 | + </dependency> |
| 29 | + <dependency> |
| 30 | + <groupId>org.jasypt</groupId> |
| 31 | + <artifactId>jasypt</artifactId> |
| 32 | + <version>1.9.2</version> |
| 33 | + </dependency> |
| 34 | + <dependency> |
| 35 | + <groupId>com.github.ulisesbocchio</groupId> |
| 36 | + <artifactId>jasypt-spring-boot-starter</artifactId> |
| 37 | + <version>1.11</version> |
| 38 | + </dependency> |
| 39 | + <dependency> |
| 40 | + <groupId>org.springframework.boot</groupId> |
| 41 | + <artifactId>spring-boot-starter-web</artifactId> |
| 42 | + </dependency> |
| 43 | + <dependency> |
| 44 | + <groupId>org.springframework.boot</groupId> |
| 45 | + <artifactId>spring-boot-starter-actuator</artifactId> |
| 46 | + </dependency> |
| 47 | + <dependency> |
| 48 | + <groupId>org.projectlombok</groupId> |
| 49 | + <artifactId>lombok</artifactId> |
| 50 | + <version>1.16.6</version> |
| 51 | + <scope>provided</scope> |
| 52 | + </dependency> |
| 53 | + <dependency> |
| 54 | + <groupId>joda-time</groupId> |
| 55 | + <artifactId>joda-time</artifactId> |
| 56 | + </dependency> |
| 57 | + <dependency> |
| 58 | + <groupId>org.codehaus.jackson</groupId> |
| 59 | + <artifactId>jackson-mapper-asl</artifactId> |
| 60 | + <version>${jackson.mapper.version}</version> |
| 61 | + </dependency> |
| 62 | + <dependency> |
| 63 | + <groupId>org.springframework.boot</groupId> |
| 64 | + <artifactId>spring-boot-starter-data-jpa</artifactId> |
| 65 | + </dependency> |
| 66 | + <dependency> |
| 67 | + <groupId>org.hsqldb</groupId> |
| 68 | + <artifactId>hsqldb</artifactId> |
| 69 | + <scope>runtime</scope> |
| 70 | + </dependency> |
| 71 | + <dependency> |
| 72 | + <groupId>org.springframework.boot</groupId> |
| 73 | + <artifactId>spring-boot-starter-test</artifactId> |
| 74 | + <scope>test</scope> |
| 75 | + </dependency> |
| 76 | + <dependency> |
| 77 | + <groupId>org.springframework.boot</groupId> |
| 78 | + <artifactId>spring-boot-starter-data-jpa</artifactId> |
| 79 | + </dependency> |
| 80 | + <dependency> |
| 81 | + <groupId>org.springframework</groupId> |
| 82 | + <artifactId>spring-web</artifactId> |
| 83 | + </dependency> |
| 84 | + <dependency> |
| 85 | + <groupId>com.fasterxml.jackson.core</groupId> |
| 86 | + <artifactId>jackson-databind</artifactId> |
| 87 | + </dependency> |
| 88 | + </dependencies> |
| 89 | + <properties> |
| 90 | + <java.version>1.8</java.version> |
| 91 | + <jackson.mapper.version>1.5.6</jackson.mapper.version> |
| 92 | + </properties> |
| 93 | + <build> |
| 94 | + <plugins> |
| 95 | + <plugin> |
| 96 | + <groupId>org.apache.maven.plugins</groupId> |
| 97 | + <artifactId>maven-compiler-plugin</artifactId> |
| 98 | + <version>3.6.1</version> |
| 99 | + <configuration> |
| 100 | + <source>1.8</source> |
| 101 | + <target>1.8</target> |
| 102 | + </configuration> |
| 103 | + </plugin> |
| 104 | + <plugin> |
| 105 | + <groupId>org.springframework.boot</groupId> |
| 106 | + <artifactId>spring-boot-maven-plugin</artifactId> |
| 107 | + </plugin> |
| 108 | + <plugin> |
| 109 | + <artifactId>maven-failsafe-plugin</artifactId> |
| 110 | + <executions> |
| 111 | + <execution> |
| 112 | + <goals> |
| 113 | + <goal>integration-test</goal> |
| 114 | + <goal>verify</goal> |
| 115 | + </goals> |
| 116 | + </execution> |
| 117 | + </executions> |
| 118 | + </plugin> |
| 119 | + </plugins> |
| 120 | + </build> |
| 121 | +</project> |
0 commit comments