|
1 | | -<?xml version="1.0" encoding="UTF-8"?> |
2 | | -<project xmlns="http://maven.apache.org/POM/4.0.0" |
3 | | - xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
4 | | - xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
5 | | - <modelVersion>4.0.0</modelVersion> |
6 | | - |
7 | | - <groupId>ca.bc.gov.open.jag</groupId> |
8 | | - <artifactId>efiling-demo-starter</artifactId> |
9 | | - <version>2.0.3</version> |
10 | | - |
11 | | - <properties> |
12 | | - <java.version>17</java.version> |
13 | | - <org.mapstruct.version>1.4.2.Final</org.mapstruct.version> |
14 | | - <log4j2.version>2.17.1</log4j2.version> |
15 | | - </properties> |
16 | | - |
17 | | - <dependencies> |
18 | | - |
19 | | - <dependency> |
20 | | - <groupId>org.springframework.boot</groupId> |
21 | | - <artifactId>spring-boot-starter</artifactId> |
22 | | - </dependency> |
23 | | - |
24 | | - <dependency> |
25 | | - <groupId>org.springframework.boot</groupId> |
26 | | - <artifactId>spring-boot-starter-test</artifactId> |
27 | | - <scope>test</scope> |
28 | | - <exclusions> |
29 | | - <exclusion> |
30 | | - <groupId>org.junit.vintage</groupId> |
31 | | - <artifactId>junit-vintage-engine</artifactId> |
32 | | - </exclusion> |
33 | | - </exclusions> |
34 | | - </dependency> |
35 | | - |
36 | | - <dependency> |
37 | | - <groupId>org.apache.commons</groupId> |
38 | | - <artifactId>commons-lang3</artifactId> |
39 | | - </dependency> |
40 | | - |
41 | | - <dependency> |
42 | | - <groupId>ca.bc.gov.open</groupId> |
43 | | - <artifactId>spring-bceid-starter</artifactId> |
44 | | - </dependency> |
45 | | - |
46 | | - <!-- Redis --> |
47 | | - <dependency> |
48 | | - <groupId>org.springframework.boot</groupId> |
49 | | - <artifactId>spring-boot-starter-data-redis</artifactId> |
50 | | - </dependency> |
51 | | - <dependency> |
52 | | - <groupId>org.springframework.data</groupId> |
53 | | - <artifactId>spring-data-redis</artifactId> |
54 | | - </dependency> |
55 | | - <dependency> |
56 | | - <groupId>redis.clients</groupId> |
57 | | - <artifactId>jedis</artifactId> |
58 | | - </dependency> |
59 | | - |
60 | | - <dependency> |
61 | | - <groupId>ca.bc.gov.open.jag</groupId> |
62 | | - <artifactId>efiling-commons</artifactId> |
63 | | - <version>2.0.3</version> |
64 | | - </dependency> |
65 | | - |
66 | | - <dependency> |
67 | | - <groupId>ca.bc.gov.open</groupId> |
68 | | - <artifactId>spring-sftp-starter</artifactId> |
69 | | - </dependency> |
70 | | - |
71 | | - </dependencies> |
72 | | - |
73 | | - <dependencyManagement> |
74 | | - <dependencies> |
75 | | - <dependency> |
76 | | - <groupId>org.springframework.boot</groupId> |
77 | | - <artifactId>spring-boot-dependencies</artifactId> |
78 | | - <version>3.1.3</version> |
79 | | - <type>pom</type> |
80 | | - <scope>import</scope> |
81 | | - </dependency> |
82 | | - <dependency> |
83 | | - <groupId>ca.bc.gov.open.jag</groupId> |
84 | | - <artifactId>efiling-bom</artifactId> |
85 | | - <version>2.0.3</version> |
86 | | - <type>pom</type> |
87 | | - <scope>import</scope> |
88 | | - </dependency> |
89 | | - </dependencies> |
90 | | - </dependencyManagement> |
91 | | - |
92 | | - <build> |
93 | | - <plugins> |
94 | | - |
95 | | - <!--mapstruct mapper autogen--> |
96 | | - <plugin> |
97 | | - <groupId>org.apache.maven.plugins</groupId> |
98 | | - <artifactId>maven-compiler-plugin</artifactId> |
99 | | - <configuration> |
100 | | - <source>${java.version}</source> |
101 | | - <target>${java.version}</target> |
102 | | - </configuration> |
103 | | - </plugin> |
104 | | - |
105 | | - </plugins> |
106 | | - |
107 | | - </build> |
108 | | - |
109 | | -</project> |
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | +<project xmlns="http://maven.apache.org/POM/4.0.0" |
| 3 | + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 4 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 5 | + <modelVersion>4.0.0</modelVersion> |
| 6 | + |
| 7 | + <groupId>ca.bc.gov.open.jag</groupId> |
| 8 | + <artifactId>efiling-demo-starter</artifactId> |
| 9 | + <version>2.0.3</version> |
| 10 | + |
| 11 | + <properties> |
| 12 | + <java.version>17</java.version> |
| 13 | + <org.mapstruct.version>1.4.2.Final</org.mapstruct.version> |
| 14 | + <log4j2.version>2.17.1</log4j2.version> |
| 15 | + </properties> |
| 16 | + |
| 17 | + <dependencies> |
| 18 | + |
| 19 | + <dependency> |
| 20 | + <groupId>org.springframework.boot</groupId> |
| 21 | + <artifactId>spring-boot-starter</artifactId> |
| 22 | + </dependency> |
| 23 | + |
| 24 | + <dependency> |
| 25 | + <groupId>org.springframework.boot</groupId> |
| 26 | + <artifactId>spring-boot-starter-test</artifactId> |
| 27 | + <scope>test</scope> |
| 28 | + <exclusions> |
| 29 | + <exclusion> |
| 30 | + <groupId>org.junit.vintage</groupId> |
| 31 | + <artifactId>junit-vintage-engine</artifactId> |
| 32 | + </exclusion> |
| 33 | + </exclusions> |
| 34 | + </dependency> |
| 35 | + |
| 36 | + <dependency> |
| 37 | + <groupId>org.apache.commons</groupId> |
| 38 | + <artifactId>commons-lang3</artifactId> |
| 39 | + </dependency> |
| 40 | + |
| 41 | + <dependency> |
| 42 | + <groupId>ca.bc.gov.open</groupId> |
| 43 | + <artifactId>spring-bceid-starter</artifactId> |
| 44 | + </dependency> |
| 45 | + |
| 46 | + <!-- Redis --> |
| 47 | + <dependency> |
| 48 | + <groupId>org.springframework.boot</groupId> |
| 49 | + <artifactId>spring-boot-starter-data-redis</artifactId> |
| 50 | + </dependency> |
| 51 | + <dependency> |
| 52 | + <groupId>org.springframework.data</groupId> |
| 53 | + <artifactId>spring-data-redis</artifactId> |
| 54 | + </dependency> |
| 55 | + <dependency> |
| 56 | + <groupId>redis.clients</groupId> |
| 57 | + <artifactId>jedis</artifactId> |
| 58 | + </dependency> |
| 59 | + |
| 60 | + <dependency> |
| 61 | + <groupId>ca.bc.gov.open.jag</groupId> |
| 62 | + <artifactId>efiling-commons</artifactId> |
| 63 | + <version>2.0.3</version> |
| 64 | + </dependency> |
| 65 | + |
| 66 | + <dependency> |
| 67 | + <groupId>ca.bc.gov.open</groupId> |
| 68 | + <artifactId>spring-sftp-starter</artifactId> |
| 69 | + </dependency> |
| 70 | + |
| 71 | + </dependencies> |
| 72 | + |
| 73 | + <dependencyManagement> |
| 74 | + <dependencies> |
| 75 | + <dependency> |
| 76 | + <groupId>org.springframework.boot</groupId> |
| 77 | + <artifactId>spring-boot-dependencies</artifactId> |
| 78 | + <version>3.3.4</version> |
| 79 | + <type>pom</type> |
| 80 | + <scope>import</scope> |
| 81 | + </dependency> |
| 82 | + <dependency> |
| 83 | + <groupId>ca.bc.gov.open.jag</groupId> |
| 84 | + <artifactId>efiling-bom</artifactId> |
| 85 | + <version>2.0.3</version> |
| 86 | + <type>pom</type> |
| 87 | + <scope>import</scope> |
| 88 | + </dependency> |
| 89 | + </dependencies> |
| 90 | + </dependencyManagement> |
| 91 | + |
| 92 | + <build> |
| 93 | + <plugins> |
| 94 | + |
| 95 | + <!--mapstruct mapper autogen--> |
| 96 | + <plugin> |
| 97 | + <groupId>org.apache.maven.plugins</groupId> |
| 98 | + <artifactId>maven-compiler-plugin</artifactId> |
| 99 | + <configuration> |
| 100 | + <compilerArgs> |
| 101 | + <arg>-parameters</arg> |
| 102 | + </compilerArgs> |
| 103 | + <parameters>true</parameters> |
| 104 | + <source>${java.version}</source> |
| 105 | + <target>${java.version}</target> |
| 106 | + </configuration> |
| 107 | + </plugin> |
| 108 | + |
| 109 | + </plugins> |
| 110 | + |
| 111 | + </build> |
| 112 | + |
| 113 | +</project> |
0 commit comments