|
10 | 10 |
|
11 | 11 | <name>learn-neo4j</name>
|
12 | 12 | <description>Demo project for Spring Boot</description>
|
13 |
| - <url>http://localhost/mvn/learn-neo4j</url> |
| 13 | + <url>http://localhost/mvn/learn-neo4j</url> |
14 | 14 |
|
15 | 15 | <parent>
|
16 | 16 | <groupId>org.springframework.boot</groupId>
|
|
19 | 19 | <relativePath/> <!-- lookup parent from repository -->
|
20 | 20 | </parent>
|
21 | 21 |
|
| 22 | + <organization> |
| 23 | + <name>Thomas Woehlke</name> |
| 24 | + <url>https://twitter.com/ThomasWoehlke</url> |
| 25 | + </organization> |
| 26 | + |
| 27 | + <inceptionYear>2018</inceptionYear> |
| 28 | + |
| 29 | + <licenses> |
| 30 | + <license> |
| 31 | + <name>Apache License, Version 2.0</name> |
| 32 | + <url>http://www.apache.org/licenses/LICENSE-2.0</url> |
| 33 | + </license> |
| 34 | + </licenses> |
| 35 | + |
| 36 | + <developers> |
| 37 | + <developer> |
| 38 | + <name>Thomas Wöhlke</name> |
| 39 | + <email>thomas@woehlke.org</email> |
| 40 | + <url>https://github.com/phasenraum2010</url> |
| 41 | + </developer> |
| 42 | + </developers> |
| 43 | + |
| 44 | + <scm> |
| 45 | + <url>https://github.com/phasenraum2010/learn-neo4j.git</url> |
| 46 | + <connection>scm:git:https://github.com/phasenraum2010/learn-neo4j.git</connection> |
| 47 | + <developerConnection>scm:git:https://github.com/phasenraum2010/learn-neo4j.git</developerConnection> |
| 48 | + <tag>master</tag> |
| 49 | + </scm> |
| 50 | + |
| 51 | + <issueManagement> |
| 52 | + <system>GitHub</system> |
| 53 | + <url>https://github.com/phasenraum2010/btw17kandidaten/issues</url> |
| 54 | + </issueManagement> |
| 55 | + |
| 56 | + <distributionManagement> |
| 57 | + <site> |
| 58 | + <id>simpleworklist.shadowfax.fritz.box</id> |
| 59 | + <url>file://${project.basedir}/target/site-deployed</url> |
| 60 | + </site> |
| 61 | + </distributionManagement> |
| 62 | + |
22 | 63 | <properties>
|
23 | 64 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
24 | 65 | <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
25 | 66 | <java.version>1.8</java.version>
|
| 67 | + <maven.scm.version>1.9.5</maven.scm.version> |
| 68 | + <failsafe.skipAfterFailureCount>1</failsafe.skipAfterFailureCount> |
| 69 | + <surefire.skipAfterFailureCount>1</surefire.skipAfterFailureCount> |
26 | 70 | </properties>
|
27 | 71 |
|
28 | 72 | <dependencies>
|
|
88 | 132 | <groupId>org.springframework.boot</groupId>
|
89 | 133 | <artifactId>spring-boot-starter-data-jpa</artifactId>
|
90 | 134 | </dependency>
|
91 |
| - <!-- |
92 |
| - <dependency> |
93 |
| - <groupId>mysql</groupId> |
94 |
| - <artifactId>mysql-connector-java</artifactId> |
95 |
| - </dependency> |
96 |
| - --> |
97 |
| - <!-- https://mvnrepository.com/artifact/org.postgresql/postgresql --> |
98 | 135 | <dependency>
|
99 | 136 | <groupId>org.postgresql</groupId>
|
100 | 137 | <artifactId>postgresql</artifactId>
|
101 |
| - <!-- |
102 |
| - <version>42.2.2</version> |
103 |
| - --> |
104 | 138 | </dependency>
|
105 | 139 | <dependency>
|
106 | 140 | <groupId>org.springframework.data</groupId>
|
|
110 | 144 | <groupId>org.springframework.session</groupId>
|
111 | 145 | <artifactId>spring-session-core</artifactId>
|
112 | 146 | </dependency>
|
113 |
| - |
114 | 147 | <dependency>
|
115 | 148 | <groupId>org.neo4j</groupId>
|
116 | 149 | <artifactId>neo4j-ogm-api</artifactId>
|
|
123 | 156 | <groupId>org.neo4j</groupId>
|
124 | 157 | <artifactId>neo4j-ogm-core</artifactId>
|
125 | 158 | </dependency>
|
126 |
| - |
127 | 159 | <dependency>
|
128 | 160 | <groupId>org.projectlombok</groupId>
|
129 | 161 | <artifactId>lombok</artifactId>
|
|
133 | 165 | <artifactId>spring-boot-devtools</artifactId>
|
134 | 166 | <scope>runtime</scope>
|
135 | 167 | </dependency>
|
136 |
| - <!-- |
137 |
| - <dependency> |
138 |
| - <groupId>com.h2database</groupId> |
139 |
| - <artifactId>h2</artifactId> |
140 |
| - <scope>runtime</scope> |
141 |
| - </dependency> |
142 |
| - --> |
143 | 168 | <dependency>
|
144 | 169 | <groupId>org.springframework.boot</groupId>
|
145 | 170 | <artifactId>spring-boot-starter-test</artifactId>
|
|
155 | 180 | <artifactId>spring-restdocs-mockmvc</artifactId>
|
156 | 181 | <scope>test</scope>
|
157 | 182 | </dependency>
|
158 |
| - |
159 | 183 | <dependency>
|
160 | 184 | <groupId>org.thymeleaf</groupId>
|
161 | 185 | <artifactId>thymeleaf-spring5</artifactId>
|
|
164 | 188 | <groupId>org.thymeleaf.extras</groupId>
|
165 | 189 | <artifactId>thymeleaf-extras-java8time</artifactId>
|
166 | 190 | </dependency>
|
167 |
| - |
168 |
| - <dependency> |
169 |
| - <groupId>org.springframework</groupId> |
170 |
| - <artifactId>spring-webmvc</artifactId> |
171 |
| - <scope>compile</scope> |
172 |
| - </dependency> |
173 |
| - </dependencies> |
| 191 | + <dependency> |
| 192 | + <groupId>org.springframework.boot</groupId> |
| 193 | + <artifactId>spring-boot-starter-logging</artifactId> |
| 194 | + </dependency> |
| 195 | + <dependency> |
| 196 | + <groupId>org.springframework.boot</groupId> |
| 197 | + <artifactId>spring-boot-configuration-processor</artifactId> |
| 198 | + <optional>true</optional> |
| 199 | + </dependency> |
| 200 | + <dependency> |
| 201 | + <groupId>org.springframework.session</groupId> |
| 202 | + <artifactId>spring-session-jdbc</artifactId> |
| 203 | + </dependency> |
| 204 | + <dependency> |
| 205 | + <groupId>org.springframework.boot</groupId> |
| 206 | + <artifactId>spring-boot-starter-jdbc</artifactId> |
| 207 | + </dependency> |
| 208 | + <dependency> |
| 209 | + <groupId>org.springframework.boot</groupId> |
| 210 | + <artifactId>spring-boot-starter-security</artifactId> |
| 211 | + </dependency> |
| 212 | + </dependencies> |
174 | 213 |
|
175 | 214 | <build>
|
176 | 215 | <plugins>
|
|
188 | 227 | </plugin>
|
189 | 228 | </plugins>
|
190 | 229 | </build>
|
191 |
| - |
| 230 | + |
| 231 | + <profiles> |
| 232 | + <profile> |
| 233 | + <id>default</id> |
| 234 | + <activation> |
| 235 | + <activeByDefault>true</activeByDefault> |
| 236 | + </activation> |
| 237 | + <build> |
| 238 | + <plugins> |
| 239 | + <plugin> |
| 240 | + <groupId>org.apache.maven.plugins</groupId> |
| 241 | + <artifactId>maven-surefire-plugin</artifactId> |
| 242 | + <configuration> |
| 243 | + <skipTests>true</skipTests> |
| 244 | + </configuration> |
| 245 | + </plugin> |
| 246 | + </plugins> |
| 247 | + </build> |
| 248 | + </profile> |
| 249 | + <profile> |
| 250 | + <id>travis</id> |
| 251 | + <build> |
| 252 | + <plugins> |
| 253 | + <plugin> |
| 254 | + <groupId>org.apache.maven.plugins</groupId> |
| 255 | + <artifactId>maven-surefire-plugin</artifactId> |
| 256 | + <configuration> |
| 257 | + <systemPropertyVariables> |
| 258 | + <spring.profiles.active>travis</spring.profiles.active> |
| 259 | + <failsafe.skipAfterFailureCount>1</failsafe.skipAfterFailureCount> |
| 260 | + <surefire.skipAfterFailureCount>1</surefire.skipAfterFailureCount> |
| 261 | + </systemPropertyVariables> |
| 262 | + </configuration> |
| 263 | + </plugin> |
| 264 | + </plugins> |
| 265 | + </build> |
| 266 | + </profile> |
| 267 | + <profile> |
| 268 | + <id>devtest</id> |
| 269 | + <build> |
| 270 | + <plugins> |
| 271 | + <plugin> |
| 272 | + <groupId>org.apache.maven.plugins</groupId> |
| 273 | + <artifactId>maven-surefire-plugin</artifactId> |
| 274 | + <configuration> |
| 275 | + <systemPropertyVariables> |
| 276 | + <spring.profiles.active>devtest</spring.profiles.active> |
| 277 | + <failsafe.skipAfterFailureCount>1</failsafe.skipAfterFailureCount> |
| 278 | + <surefire.skipAfterFailureCount>1</surefire.skipAfterFailureCount> |
| 279 | + </systemPropertyVariables> |
| 280 | + </configuration> |
| 281 | + </plugin> |
| 282 | + </plugins> |
| 283 | + </build> |
| 284 | + </profile> |
| 285 | + </profiles> |
| 286 | + <reporting> |
| 287 | + <plugins> |
| 288 | + <plugin> |
| 289 | + <groupId>org.apache.maven.plugins</groupId> |
| 290 | + <artifactId>maven-project-info-reports-plugin</artifactId> |
| 291 | + <version>2.9</version> |
| 292 | + <configuration> |
| 293 | + <dependencyDetailsEnabled>true</dependencyDetailsEnabled> |
| 294 | + <dependencyLocationsEnabled>true</dependencyLocationsEnabled> |
| 295 | + </configuration> |
| 296 | + </plugin> |
| 297 | + <plugin> |
| 298 | + <groupId>org.apache.maven.plugins</groupId> |
| 299 | + <artifactId>maven-surefire-report-plugin</artifactId> |
| 300 | + <version>2.20</version> |
| 301 | + </plugin> |
| 302 | + <plugin> |
| 303 | + <groupId>org.apache.maven.plugins</groupId> |
| 304 | + <artifactId>maven-checkstyle-plugin</artifactId> |
| 305 | + <version>2.17</version> |
| 306 | + </plugin> |
| 307 | + <plugin> |
| 308 | + <groupId>org.codehaus.mojo</groupId> |
| 309 | + <artifactId>findbugs-maven-plugin</artifactId> |
| 310 | + <version>3.0.4</version> |
| 311 | + <configuration> |
| 312 | + <onlyAnalyze>org.woehlke.*</onlyAnalyze> |
| 313 | + <omitVisitors>FindDeadLocalStores</omitVisitors> |
| 314 | + <findbugsXmlOutput>true</findbugsXmlOutput> |
| 315 | + <xmlOutputDirectory>target/site</xmlOutputDirectory> |
| 316 | + <effort>Max</effort> |
| 317 | + <threshold>Low</threshold> |
| 318 | + </configuration> |
| 319 | + </plugin> |
| 320 | + <plugin> |
| 321 | + <groupId>org.apache.maven.plugins</groupId> |
| 322 | + <artifactId>maven-jxr-plugin</artifactId> |
| 323 | + <version>2.5</version> |
| 324 | + </plugin> |
| 325 | + <plugin> |
| 326 | + <groupId>org.apache.maven.plugins</groupId> |
| 327 | + <artifactId>maven-pmd-plugin</artifactId> |
| 328 | + <version>3.8</version> |
| 329 | + <configuration> |
| 330 | + <sourceEncoding>${project.build.sourceEncoding}</sourceEncoding> |
| 331 | + <minimumTokens>100</minimumTokens> |
| 332 | + <targetJdk>${java.version}</targetJdk> |
| 333 | + <excludeRoots> |
| 334 | + <excludeRoot>target</excludeRoot> |
| 335 | + </excludeRoots> |
| 336 | + </configuration> |
| 337 | + </plugin> |
| 338 | + <plugin> |
| 339 | + <groupId>org.codehaus.mojo</groupId> |
| 340 | + <artifactId>taglist-maven-plugin</artifactId> |
| 341 | + <version>2.4</version> |
| 342 | + </plugin> |
| 343 | + <plugin> |
| 344 | + <groupId>org.apache.maven.plugins</groupId> |
| 345 | + <artifactId>maven-changes-plugin</artifactId> |
| 346 | + <version>2.12.1</version> |
| 347 | + <configuration> |
| 348 | + <onlyMilestoneIssues>false</onlyMilestoneIssues> |
| 349 | + </configuration> |
| 350 | + <reportSets> |
| 351 | + <reportSet> |
| 352 | + <reports> |
| 353 | + <report>github-report</report> |
| 354 | + </reports> |
| 355 | + </reportSet> |
| 356 | + </reportSets> |
| 357 | + </plugin> |
| 358 | + <plugin> |
| 359 | + <groupId>org.codehaus.mojo</groupId> |
| 360 | + <artifactId>cobertura-maven-plugin</artifactId> |
| 361 | + <version>2.7</version> |
| 362 | + </plugin> |
| 363 | + </plugins> |
| 364 | + </reporting> |
192 | 365 | </project>
|
0 commit comments