Skip to content

Commit 8f73077

Browse files
phasenraum2010phasenraum2010
authored andcommitted
small refactoring...
1 parent 8d99def commit 8f73077

File tree

1 file changed

+148
-148
lines changed

1 file changed

+148
-148
lines changed

pom.xml

Lines changed: 148 additions & 148 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<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>
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>
55

6-
<groupId>org.woehlke.learn</groupId>
7-
<artifactId>learn-neo4j</artifactId>
8-
<version>0.0.1-SNAPSHOT</version>
9-
<packaging>jar</packaging>
6+
<groupId>org.woehlke.learn</groupId>
7+
<artifactId>learn-neo4j</artifactId>
8+
<version>0.0.1-SNAPSHOT</version>
9+
<packaging>jar</packaging>
1010

11-
<name>learn-neo4j</name>
12-
<description>Learn Neo4J. First Use Case for a Graph Database</description>
11+
<name>learn-neo4j</name>
12+
<description>Learn Neo4J. First Use Case for a Graph Database</description>
1313
<url>http://localhost/mvn/learn-neo4j</url>
1414

15-
<parent>
16-
<groupId>org.springframework.boot</groupId>
17-
<artifactId>spring-boot-starter-parent</artifactId>
18-
<version>2.0.2.RELEASE</version>
19-
<relativePath/> <!-- lookup parent from repository -->
20-
</parent>
15+
<parent>
16+
<groupId>org.springframework.boot</groupId>
17+
<artifactId>spring-boot-starter-parent</artifactId>
18+
<version>2.0.2.RELEASE</version>
19+
<relativePath/> <!-- lookup parent from repository -->
20+
</parent>
2121

2222
<organization>
2323
<name>Thomas Woehlke</name>
@@ -60,133 +60,133 @@
6060
</site>
6161
</distributionManagement>
6262

63-
<properties>
64-
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
65-
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
66-
<java.version>1.8</java.version>
63+
<properties>
64+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
65+
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
66+
<java.version>1.8</java.version>
6767
<maven.scm.version>1.9.5</maven.scm.version>
6868
<failsafe.skipAfterFailureCount>1</failsafe.skipAfterFailureCount>
6969
<surefire.skipAfterFailureCount>1</surefire.skipAfterFailureCount>
70-
</properties>
70+
</properties>
7171

72-
<dependencies>
72+
<dependencies>
7373

74-
<!-- frontend -->
74+
<!-- frontend -->
7575

76-
<dependency>
77-
<groupId>org.webjars</groupId>
78-
<artifactId>jquery</artifactId>
79-
<version>3.3.1</version>
80-
</dependency>
81-
<dependency>
82-
<groupId>org.webjars</groupId>
83-
<artifactId>bootstrap</artifactId>
84-
<version>4.1.0</version>
85-
</dependency>
86-
<dependency>
87-
<groupId>org.webjars</groupId>
88-
<artifactId>font-awesome</artifactId>
89-
<version>5.0.13</version>
90-
</dependency>
91-
<dependency>
92-
<groupId>org.webjars.npm</groupId>
93-
<artifactId>popper.js</artifactId>
94-
<version>1.14.3</version>
95-
</dependency>
76+
<dependency>
77+
<groupId>org.webjars</groupId>
78+
<artifactId>jquery</artifactId>
79+
<version>3.3.1</version>
80+
</dependency>
81+
<dependency>
82+
<groupId>org.webjars</groupId>
83+
<artifactId>bootstrap</artifactId>
84+
<version>4.1.0</version>
85+
</dependency>
86+
<dependency>
87+
<groupId>org.webjars</groupId>
88+
<artifactId>font-awesome</artifactId>
89+
<version>5.0.13</version>
90+
</dependency>
91+
<dependency>
92+
<groupId>org.webjars.npm</groupId>
93+
<artifactId>popper.js</artifactId>
94+
<version>1.14.3</version>
95+
</dependency>
9696

97-
<!--- spring boot -->
98-
<dependency>
99-
<groupId>org.springframework.boot</groupId>
100-
<artifactId>spring-boot-starter-activemq</artifactId>
101-
</dependency>
102-
<dependency>
103-
<groupId>org.springframework.boot</groupId>
104-
<artifactId>spring-boot-starter-amqp</artifactId>
105-
</dependency>
106-
<dependency>
107-
<groupId>org.springframework.boot</groupId>
108-
<artifactId>spring-boot-starter-batch</artifactId>
109-
</dependency>
110-
<dependency>
111-
<groupId>org.springframework.boot</groupId>
112-
<artifactId>spring-boot-starter-data-neo4j</artifactId>
113-
</dependency>
114-
<dependency>
115-
<groupId>org.springframework.boot</groupId>
116-
<artifactId>spring-boot-starter-data-rest</artifactId>
117-
</dependency>
118-
<dependency>
119-
<groupId>org.springframework.boot</groupId>
120-
<artifactId>spring-boot-starter-integration</artifactId>
121-
</dependency>
122-
<dependency>
123-
<groupId>org.springframework.boot</groupId>
124-
<artifactId>spring-boot-starter-thymeleaf</artifactId>
125-
</dependency>
126-
<dependency>
127-
<groupId>org.springframework.boot</groupId>
128-
<artifactId>spring-boot-starter-web</artifactId>
129-
</dependency>
130-
<dependency>
131-
<groupId>org.springframework.boot</groupId>
132-
<artifactId>spring-boot-starter-data-jpa</artifactId>
133-
</dependency>
134-
<dependency>
135-
<groupId>org.postgresql</groupId>
136-
<artifactId>postgresql</artifactId>
137-
</dependency>
138-
<dependency>
139-
<groupId>org.springframework.data</groupId>
140-
<artifactId>spring-data-rest-hal-browser</artifactId>
141-
</dependency>
142-
<dependency>
143-
<groupId>org.springframework.session</groupId>
144-
<artifactId>spring-session-core</artifactId>
145-
</dependency>
146-
<dependency>
147-
<groupId>org.neo4j</groupId>
148-
<artifactId>neo4j-ogm-api</artifactId>
149-
</dependency>
150-
<dependency>
151-
<groupId>org.neo4j</groupId>
152-
<artifactId>neo4j-ogm-bolt-driver</artifactId>
153-
</dependency>
154-
<dependency>
155-
<groupId>org.neo4j</groupId>
156-
<artifactId>neo4j-ogm-core</artifactId>
157-
</dependency>
158-
<dependency>
159-
<groupId>org.projectlombok</groupId>
160-
<artifactId>lombok</artifactId>
161-
</dependency>
162-
<dependency>
163-
<groupId>org.springframework.boot</groupId>
164-
<artifactId>spring-boot-devtools</artifactId>
165-
<scope>runtime</scope>
166-
</dependency>
167-
<dependency>
168-
<groupId>org.springframework.boot</groupId>
169-
<artifactId>spring-boot-starter-test</artifactId>
170-
<scope>test</scope>
171-
</dependency>
172-
<dependency>
173-
<groupId>org.springframework.batch</groupId>
174-
<artifactId>spring-batch-test</artifactId>
175-
<scope>test</scope>
176-
</dependency>
177-
<dependency>
178-
<groupId>org.springframework.restdocs</groupId>
179-
<artifactId>spring-restdocs-mockmvc</artifactId>
180-
<scope>test</scope>
181-
</dependency>
182-
<dependency>
183-
<groupId>org.thymeleaf</groupId>
184-
<artifactId>thymeleaf-spring5</artifactId>
185-
</dependency>
186-
<dependency>
187-
<groupId>org.thymeleaf.extras</groupId>
188-
<artifactId>thymeleaf-extras-java8time</artifactId>
189-
</dependency>
97+
<!--- spring boot -->
98+
<dependency>
99+
<groupId>org.springframework.boot</groupId>
100+
<artifactId>spring-boot-starter-activemq</artifactId>
101+
</dependency>
102+
<dependency>
103+
<groupId>org.springframework.boot</groupId>
104+
<artifactId>spring-boot-starter-amqp</artifactId>
105+
</dependency>
106+
<dependency>
107+
<groupId>org.springframework.boot</groupId>
108+
<artifactId>spring-boot-starter-batch</artifactId>
109+
</dependency>
110+
<dependency>
111+
<groupId>org.springframework.boot</groupId>
112+
<artifactId>spring-boot-starter-data-neo4j</artifactId>
113+
</dependency>
114+
<dependency>
115+
<groupId>org.springframework.boot</groupId>
116+
<artifactId>spring-boot-starter-data-rest</artifactId>
117+
</dependency>
118+
<dependency>
119+
<groupId>org.springframework.boot</groupId>
120+
<artifactId>spring-boot-starter-integration</artifactId>
121+
</dependency>
122+
<dependency>
123+
<groupId>org.springframework.boot</groupId>
124+
<artifactId>spring-boot-starter-thymeleaf</artifactId>
125+
</dependency>
126+
<dependency>
127+
<groupId>org.springframework.boot</groupId>
128+
<artifactId>spring-boot-starter-web</artifactId>
129+
</dependency>
130+
<dependency>
131+
<groupId>org.springframework.boot</groupId>
132+
<artifactId>spring-boot-starter-data-jpa</artifactId>
133+
</dependency>
134+
<dependency>
135+
<groupId>org.postgresql</groupId>
136+
<artifactId>postgresql</artifactId>
137+
</dependency>
138+
<dependency>
139+
<groupId>org.springframework.data</groupId>
140+
<artifactId>spring-data-rest-hal-browser</artifactId>
141+
</dependency>
142+
<dependency>
143+
<groupId>org.springframework.session</groupId>
144+
<artifactId>spring-session-core</artifactId>
145+
</dependency>
146+
<dependency>
147+
<groupId>org.neo4j</groupId>
148+
<artifactId>neo4j-ogm-api</artifactId>
149+
</dependency>
150+
<dependency>
151+
<groupId>org.neo4j</groupId>
152+
<artifactId>neo4j-ogm-bolt-driver</artifactId>
153+
</dependency>
154+
<dependency>
155+
<groupId>org.neo4j</groupId>
156+
<artifactId>neo4j-ogm-core</artifactId>
157+
</dependency>
158+
<dependency>
159+
<groupId>org.projectlombok</groupId>
160+
<artifactId>lombok</artifactId>
161+
</dependency>
162+
<dependency>
163+
<groupId>org.springframework.boot</groupId>
164+
<artifactId>spring-boot-devtools</artifactId>
165+
<scope>runtime</scope>
166+
</dependency>
167+
<dependency>
168+
<groupId>org.springframework.boot</groupId>
169+
<artifactId>spring-boot-starter-test</artifactId>
170+
<scope>test</scope>
171+
</dependency>
172+
<dependency>
173+
<groupId>org.springframework.batch</groupId>
174+
<artifactId>spring-batch-test</artifactId>
175+
<scope>test</scope>
176+
</dependency>
177+
<dependency>
178+
<groupId>org.springframework.restdocs</groupId>
179+
<artifactId>spring-restdocs-mockmvc</artifactId>
180+
<scope>test</scope>
181+
</dependency>
182+
<dependency>
183+
<groupId>org.thymeleaf</groupId>
184+
<artifactId>thymeleaf-spring5</artifactId>
185+
</dependency>
186+
<dependency>
187+
<groupId>org.thymeleaf.extras</groupId>
188+
<artifactId>thymeleaf-extras-java8time</artifactId>
189+
</dependency>
190190
<dependency>
191191
<groupId>org.springframework.boot</groupId>
192192
<artifactId>spring-boot-starter-logging</artifactId>
@@ -210,22 +210,22 @@
210210
</dependency>
211211
</dependencies>
212212

213-
<build>
214-
<plugins>
215-
<plugin>
216-
<groupId>org.springframework.boot</groupId>
217-
<artifactId>spring-boot-maven-plugin</artifactId>
218-
</plugin>
219-
<plugin>
220-
<groupId>org.apache.maven.plugins</groupId>
221-
<artifactId>maven-dependency-plugin</artifactId>
222-
</plugin>
213+
<build>
214+
<plugins>
215+
<plugin>
216+
<groupId>org.springframework.boot</groupId>
217+
<artifactId>spring-boot-maven-plugin</artifactId>
218+
</plugin>
223219
<plugin>
224-
<groupId>pl.project13.maven</groupId>
225-
<artifactId>git-commit-id-plugin</artifactId>
220+
<groupId>org.apache.maven.plugins</groupId>
221+
<artifactId>maven-dependency-plugin</artifactId>
222+
</plugin>
223+
<plugin>
224+
<groupId>pl.project13.maven</groupId>
225+
<artifactId>git-commit-id-plugin</artifactId>
226226
</plugin>
227-
</plugins>
228-
</build>
227+
</plugins>
228+
</build>
229229

230230
<profiles>
231231
<profile>

0 commit comments

Comments
 (0)