Skip to content

Commit ac7ec6f

Browse files
committed
Updated examples to v2.15.0 of the starter
1 parent 9d2b14f commit ac7ec6f

File tree

23 files changed

+1051
-1003
lines changed

23 files changed

+1051
-1003
lines changed

.editorconfig

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# EditorConfig is awesome: https://EditorConfig.org
2+
3+
# top-most EditorConfig file
4+
root = true
5+
6+
[*]
7+
indent_style = tab
8+
indent_size = 4
9+
end_of_line = lf
10+
insert_final_newline = true
11+
12+
[*.yml]
13+
indent_style = space
14+
indent_size = 2
Lines changed: 100 additions & 99 deletions
Original file line numberDiff line numberDiff line change
@@ -1,105 +1,106 @@
11
<?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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3-
<parent>
4-
<artifactId>quickfixj-spring-boot-starter-examples</artifactId>
5-
<groupId>io.allune</groupId>
6-
<version>2.12.0-SNAPSHOT</version>
7-
</parent>
8-
<modelVersion>4.0.0</modelVersion>
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+
<parent>
5+
<artifactId>quickfixj-spring-boot-starter-examples</artifactId>
6+
<groupId>io.allune</groupId>
7+
<version>2.12.0-SNAPSHOT</version>
8+
</parent>
9+
<modelVersion>4.0.0</modelVersion>
910

10-
<artifactId>docker-server-client-with-database</artifactId>
11+
<artifactId>docker-server-client-with-database</artifactId>
1112

12-
<name>QuickFixJ Spring Boot Starter Examples :: Docker Server Client with Database</name>
13-
<description>QuickFixJ Spring Boot Starter Docker Server and Client with Database</description>
13+
<name>QuickFixJ Spring Boot Starter Examples :: Docker Server Client with Database</name>
14+
<description>QuickFixJ Spring Boot Starter Docker Server and Client with Database</description>
1415

15-
<dependencies>
16-
<dependency>
17-
<groupId>io.allune</groupId>
18-
<artifactId>simple-server-with-database</artifactId>
19-
</dependency>
20-
<dependency>
21-
<groupId>io.allune</groupId>
22-
<artifactId>simple-client-with-database</artifactId>
23-
</dependency>
24-
</dependencies>
16+
<dependencies>
17+
<dependency>
18+
<groupId>io.allune</groupId>
19+
<artifactId>simple-server-with-database</artifactId>
20+
</dependency>
21+
<dependency>
22+
<groupId>io.allune</groupId>
23+
<artifactId>simple-client-with-database</artifactId>
24+
</dependency>
25+
</dependencies>
2526

26-
<build>
27-
<plugins>
28-
<plugin>
29-
<groupId>org.springframework.boot</groupId>
30-
<artifactId>spring-boot-maven-plugin</artifactId>
31-
<executions>
32-
<execution>
33-
<goals>
34-
<goal>repackage</goal>
35-
</goals>
36-
</execution>
37-
</executions>
38-
<configuration>
39-
<skip>true</skip>
40-
</configuration>
41-
</plugin>
42-
<plugin>
43-
<groupId>io.fabric8</groupId>
44-
<artifactId>docker-maven-plugin</artifactId>
45-
<configuration>
46-
<images>
47-
<image>
48-
<alias>simple-server-database</alias>
49-
<name>${docker.image.prefix}/simple-server-database:latest</name>
50-
<build>
51-
<dockerFileDir>${basedir}/src/main/docker/server-database</dockerFileDir>
52-
<skip>${skipDocker}</skip>
53-
<assembly>
54-
<inline>
55-
<dependencySets>
56-
<dependencySet>
57-
<includes>
58-
<include>io.allune:simple-server-with-database</include>
59-
</includes>
60-
<outputDirectory>.</outputDirectory>
61-
<outputFileNameMapping>simple-server-with-database.jar
62-
</outputFileNameMapping>
63-
</dependencySet>
64-
</dependencySets>
65-
</inline>
66-
</assembly>
67-
</build>
68-
</image>
69-
<image>
70-
<alias>simple-client-database</alias>
71-
<name>${docker.image.prefix}/simple-client-database:latest</name>
72-
<build>
73-
<dockerFileDir>${basedir}/src/main/docker/client-database</dockerFileDir>
74-
<skip>${skipDocker}</skip>
75-
<assembly>
76-
<inline>
77-
<dependencySets>
78-
<dependencySet>
79-
<includes>
80-
<include>io.allune:simple-client-with-database</include>
81-
</includes>
82-
<outputDirectory>.</outputDirectory>
83-
<outputFileNameMapping>simple-client-with-database.jar
84-
</outputFileNameMapping>
85-
</dependencySet>
86-
</dependencySets>
87-
</inline>
88-
</assembly>
89-
</build>
90-
</image>
91-
</images>
92-
</configuration>
93-
<executions>
94-
<execution>
95-
<id>build-container</id>
96-
<phase>package</phase>
97-
<goals>
98-
<goal>build</goal>
99-
</goals>
100-
</execution>
101-
</executions>
102-
</plugin>
103-
</plugins>
104-
</build>
27+
<build>
28+
<plugins>
29+
<plugin>
30+
<groupId>org.springframework.boot</groupId>
31+
<artifactId>spring-boot-maven-plugin</artifactId>
32+
<executions>
33+
<execution>
34+
<goals>
35+
<goal>repackage</goal>
36+
</goals>
37+
</execution>
38+
</executions>
39+
<configuration>
40+
<skip>true</skip>
41+
</configuration>
42+
</plugin>
43+
<plugin>
44+
<groupId>io.fabric8</groupId>
45+
<artifactId>docker-maven-plugin</artifactId>
46+
<configuration>
47+
<images>
48+
<image>
49+
<alias>simple-server-database</alias>
50+
<name>${docker.image.prefix}/simple-server-database:latest</name>
51+
<build>
52+
<dockerFileDir>${basedir}/src/main/docker/server-database</dockerFileDir>
53+
<skip>${skipDocker}</skip>
54+
<assembly>
55+
<inline>
56+
<dependencySets>
57+
<dependencySet>
58+
<includes>
59+
<include>io.allune:simple-server-with-database</include>
60+
</includes>
61+
<outputDirectory>.</outputDirectory>
62+
<outputFileNameMapping>simple-server-with-database.jar
63+
</outputFileNameMapping>
64+
</dependencySet>
65+
</dependencySets>
66+
</inline>
67+
</assembly>
68+
</build>
69+
</image>
70+
<image>
71+
<alias>simple-client-database</alias>
72+
<name>${docker.image.prefix}/simple-client-database:latest</name>
73+
<build>
74+
<dockerFileDir>${basedir}/src/main/docker/client-database</dockerFileDir>
75+
<skip>${skipDocker}</skip>
76+
<assembly>
77+
<inline>
78+
<dependencySets>
79+
<dependencySet>
80+
<includes>
81+
<include>io.allune:simple-client-with-database</include>
82+
</includes>
83+
<outputDirectory>.</outputDirectory>
84+
<outputFileNameMapping>simple-client-with-database.jar
85+
</outputFileNameMapping>
86+
</dependencySet>
87+
</dependencySets>
88+
</inline>
89+
</assembly>
90+
</build>
91+
</image>
92+
</images>
93+
</configuration>
94+
<executions>
95+
<execution>
96+
<id>build-container</id>
97+
<phase>package</phase>
98+
<goals>
99+
<goal>build</goal>
100+
</goals>
101+
</execution>
102+
</executions>
103+
</plugin>
104+
</plugins>
105+
</build>
105106
</project>

0 commit comments

Comments
 (0)