|
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | +<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" |
| 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 | + |
| 6 | + <groupId>br.com.jonyfs</groupId> |
| 7 | + <artifactId>parser</artifactId> |
| 8 | + <version>0.0.1-SNAPSHOT</version> |
| 9 | + <packaging>jar</packaging> |
| 10 | + |
| 11 | + <name>parser</name> |
| 12 | + <description>Java Parser Example</description> |
| 13 | + |
| 14 | + <parent> |
| 15 | + <groupId>org.springframework.boot</groupId> |
| 16 | + <artifactId>spring-boot-starter-parent</artifactId> |
| 17 | + <version>2.0.0.RC1</version> |
| 18 | + <relativePath/> <!-- lookup parent from repository --> |
| 19 | + </parent> |
| 20 | + |
| 21 | + <properties> |
| 22 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 23 | + <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
| 24 | + <java.version>1.8</java.version> |
| 25 | + </properties> |
| 26 | + |
| 27 | + <dependencies> |
| 28 | + <dependency> |
| 29 | + <groupId>org.springframework.shell</groupId> |
| 30 | + <artifactId>spring-shell-starter</artifactId> |
| 31 | + <version>2.0.0.M2</version> |
| 32 | + </dependency> |
| 33 | + <dependency> |
| 34 | + <groupId>org.springframework.boot</groupId> |
| 35 | + <artifactId>spring-boot-starter-data-jpa</artifactId> |
| 36 | + </dependency> |
| 37 | + <dependency> |
| 38 | + <groupId>org.hsqldb</groupId> |
| 39 | + <artifactId>hsqldb</artifactId> |
| 40 | + <scope>runtime</scope> |
| 41 | + </dependency> |
| 42 | + <dependency> |
| 43 | + <groupId>org.projectlombok</groupId> |
| 44 | + <artifactId>lombok</artifactId> |
| 45 | + <optional>true</optional> |
| 46 | + </dependency> |
| 47 | + <dependency> |
| 48 | + <groupId>org.springframework.boot</groupId> |
| 49 | + <artifactId>spring-boot-starter-test</artifactId> |
| 50 | + <scope>test</scope> |
| 51 | + </dependency> |
| 52 | + <dependency> |
| 53 | + <groupId>com.querydsl</groupId> |
| 54 | + <artifactId>querydsl-apt</artifactId> |
| 55 | + <version>4.1.4</version> |
| 56 | + </dependency> |
| 57 | + <dependency> |
| 58 | + <groupId>com.querydsl</groupId> |
| 59 | + <artifactId>querydsl-jpa</artifactId> |
| 60 | + <version>4.1.4</version> |
| 61 | + </dependency> |
| 62 | + </dependencies> |
| 63 | + |
| 64 | + <build> |
| 65 | + <plugins> |
| 66 | + <plugin> |
| 67 | + <groupId>org.springframework.boot</groupId> |
| 68 | + <artifactId>spring-boot-maven-plugin</artifactId> |
| 69 | + </plugin> |
| 70 | + <plugin> |
| 71 | + <groupId>com.mysema.maven</groupId> |
| 72 | + <artifactId>apt-maven-plugin</artifactId> |
| 73 | + <version>1.1.3</version> |
| 74 | + <executions> |
| 75 | + <execution> |
| 76 | + <goals> |
| 77 | + <goal>process</goal> |
| 78 | + </goals> |
| 79 | + <configuration> |
| 80 | + <outputDirectory>target/generated-sources/java</outputDirectory> |
| 81 | + <processor>com.querydsl.apt.QuerydslAnnotationProcessor</processor> |
| 82 | + </configuration> |
| 83 | + </execution> |
| 84 | + </executions> |
| 85 | + </plugin> |
| 86 | + <plugin> |
| 87 | + <groupId>org.codehaus.mojo</groupId> |
| 88 | + <artifactId>build-helper-maven-plugin</artifactId> |
| 89 | + <executions> |
| 90 | + <execution> |
| 91 | + <id>add-source</id> |
| 92 | + <phase>generate-sources</phase> |
| 93 | + <goals> |
| 94 | + <goal>add-source</goal> |
| 95 | + </goals> |
| 96 | + <configuration> |
| 97 | + <sources> |
| 98 | + <source>${project.build.directory}/generated-sources/java</source> |
| 99 | + </sources> |
| 100 | + </configuration> |
| 101 | + </execution> |
| 102 | + </executions> |
| 103 | + </plugin> |
| 104 | + </plugins> |
| 105 | + </build> |
| 106 | + |
| 107 | + <repositories> |
| 108 | + <repository> |
| 109 | + <id>spring-milestones</id> |
| 110 | + <name>Spring Milestones</name> |
| 111 | + <url>https://repo.spring.io/milestone</url> |
| 112 | + <snapshots> |
| 113 | + <enabled>false</enabled> |
| 114 | + </snapshots> |
| 115 | + </repository> |
| 116 | + <repository> |
| 117 | + <id>spring-snapshots</id> |
| 118 | + <name>Spring Snapshots</name> |
| 119 | + <url>https://repo.spring.io/snapshot</url> |
| 120 | + <snapshots> |
| 121 | + <enabled>true</enabled> |
| 122 | + </snapshots> |
| 123 | + </repository> |
| 124 | + </repositories> |
| 125 | + |
| 126 | + <pluginRepositories> |
| 127 | + <pluginRepository> |
| 128 | + <id>spring-snapshots</id> |
| 129 | + <name>Spring Snapshots</name> |
| 130 | + <url>https://repo.spring.io/snapshot</url> |
| 131 | + <snapshots> |
| 132 | + <enabled>true</enabled> |
| 133 | + </snapshots> |
| 134 | + </pluginRepository> |
| 135 | + <pluginRepository> |
| 136 | + <id>spring-milestones</id> |
| 137 | + <name>Spring Milestones</name> |
| 138 | + <url>https://repo.spring.io/milestone</url> |
| 139 | + <snapshots> |
| 140 | + <enabled>false</enabled> |
| 141 | + </snapshots> |
| 142 | + </pluginRepository> |
| 143 | + </pluginRepositories> |
| 144 | + |
| 145 | + |
| 146 | +</project> |
0 commit comments