|
1 |
| -<?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" |
3 |
| - xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> |
4 |
| - <modelVersion>4.0.0</modelVersion> |
5 |
| - |
6 |
| - <groupId>ca.bc.gov.open</groupId> |
7 |
| - <artifactId>bambora-payment-starter</artifactId> |
8 |
| - <version>1.0.1</version> |
9 |
| - |
10 |
| - <properties> |
11 |
| - <java.version>17</java.version> |
12 |
| - <spring-boot.version>3.1.3</spring-boot.version> |
13 |
| - <log4j2.version>2.17.1</log4j2.version> |
14 |
| - </properties> |
15 |
| - |
16 |
| - <distributionManagement> |
17 |
| - <repository> |
18 |
| - <id>github</id> |
19 |
| - <name>GitHub Packages</name> |
20 |
| - <url>https://maven.pkg.github.com/bcgov/spring-boot-starters</url> |
21 |
| - </repository> |
22 |
| - </distributionManagement> |
23 |
| - |
24 |
| - <dependencies> |
25 |
| - <dependency> |
26 |
| - <groupId>org.springframework.boot</groupId> |
27 |
| - <artifactId>spring-boot-starter-web-services</artifactId> |
28 |
| - <exclusions> |
29 |
| - <exclusion> |
30 |
| - <groupId>org.springframework.boot</groupId> |
31 |
| - <artifactId>spring-boot-starter-tomcat</artifactId> |
32 |
| - </exclusion> |
33 |
| - </exclusions> |
34 |
| - </dependency> |
35 |
| - |
36 |
| - <dependency> |
37 |
| - <groupId>org.springframework.boot</groupId> |
38 |
| - <artifactId>spring-boot-starter-test</artifactId> |
39 |
| - <scope>test</scope> |
40 |
| - <exclusions> |
41 |
| - <exclusion> |
42 |
| - <groupId>org.junit.vintage</groupId> |
43 |
| - <artifactId>junit-vintage-engine</artifactId> |
44 |
| - </exclusion> |
45 |
| - </exclusions> |
46 |
| - </dependency> |
47 |
| - |
48 |
| - <dependency> |
49 |
| - <groupId>org.apache.commons</groupId> |
50 |
| - <artifactId>commons-lang3</artifactId> |
51 |
| - </dependency> |
52 |
| - |
53 |
| - <dependency> |
54 |
| - <groupId>commons-codec</groupId> |
55 |
| - <artifactId>commons-codec</artifactId> |
56 |
| - </dependency> |
57 |
| - |
58 |
| - </dependencies> |
59 |
| - |
60 |
| - <dependencyManagement> |
61 |
| - <dependencies> |
62 |
| - <dependency> |
63 |
| - <groupId>org.springframework.boot</groupId> |
64 |
| - <artifactId>spring-boot-dependencies</artifactId> |
65 |
| - <version>${spring-boot.version}</version> |
66 |
| - <type>pom</type> |
67 |
| - <scope>import</scope> |
68 |
| - </dependency> |
69 |
| - <dependency> |
70 |
| - <groupId>ca.bc.gov.open</groupId> |
71 |
| - <artifactId>spring-starters-bom</artifactId> |
72 |
| - <version>1.0.1</version> |
73 |
| - <type>pom</type> |
74 |
| - <scope>import</scope> |
75 |
| - </dependency> |
76 |
| - </dependencies> |
77 |
| - </dependencyManagement> |
78 |
| - |
79 |
| - <build> |
80 |
| - <plugins> |
81 |
| - <plugin> |
82 |
| - <groupId>org.apache.maven.plugins</groupId> |
83 |
| - <artifactId>maven-compiler-plugin</artifactId> |
84 |
| - <version>3.5.1</version> |
85 |
| - <configuration> |
86 |
| - <source>${java.version}</source> |
87 |
| - <target>${java.version}</target> |
88 |
| - </configuration> |
89 |
| - </plugin> |
90 |
| - </plugins> |
91 |
| - </build> |
92 |
| - |
93 |
| -</project> |
| 1 | +<?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" |
| 3 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 4 | + <modelVersion>4.0.0</modelVersion> |
| 5 | + |
| 6 | + <groupId>ca.bc.gov.open</groupId> |
| 7 | + <artifactId>bambora-payment-starter</artifactId> |
| 8 | + <version>1.0.2</version> |
| 9 | + |
| 10 | + <properties> |
| 11 | + <java.version>17</java.version> |
| 12 | + <spring-boot.version>3.3.4</spring-boot.version> |
| 13 | + <log4j2.version>2.17.1</log4j2.version> |
| 14 | + </properties> |
| 15 | + |
| 16 | + <distributionManagement> |
| 17 | + <repository> |
| 18 | + <id>github</id> |
| 19 | + <name>GitHub Packages</name> |
| 20 | + <url>https://maven.pkg.github.com/bcgov/spring-boot-starters</url> |
| 21 | + </repository> |
| 22 | + </distributionManagement> |
| 23 | + |
| 24 | + <dependencies> |
| 25 | + <dependency> |
| 26 | + <groupId>org.springframework.boot</groupId> |
| 27 | + <artifactId>spring-boot-starter-web-services</artifactId> |
| 28 | + <exclusions> |
| 29 | + <exclusion> |
| 30 | + <groupId>org.springframework.boot</groupId> |
| 31 | + <artifactId>spring-boot-starter-tomcat</artifactId> |
| 32 | + </exclusion> |
| 33 | + </exclusions> |
| 34 | + </dependency> |
| 35 | + |
| 36 | + <dependency> |
| 37 | + <groupId>org.springframework.boot</groupId> |
| 38 | + <artifactId>spring-boot-starter-test</artifactId> |
| 39 | + <scope>test</scope> |
| 40 | + <exclusions> |
| 41 | + <exclusion> |
| 42 | + <groupId>org.junit.vintage</groupId> |
| 43 | + <artifactId>junit-vintage-engine</artifactId> |
| 44 | + </exclusion> |
| 45 | + </exclusions> |
| 46 | + </dependency> |
| 47 | + |
| 48 | + <dependency> |
| 49 | + <groupId>org.apache.commons</groupId> |
| 50 | + <artifactId>commons-lang3</artifactId> |
| 51 | + </dependency> |
| 52 | + |
| 53 | + <dependency> |
| 54 | + <groupId>commons-codec</groupId> |
| 55 | + <artifactId>commons-codec</artifactId> |
| 56 | + </dependency> |
| 57 | + <dependency> |
| 58 | + <groupId>org.junit.jupiter</groupId> |
| 59 | + <artifactId>junit-jupiter-api</artifactId> |
| 60 | + <scope>test</scope> |
| 61 | + </dependency> |
| 62 | + |
| 63 | + </dependencies> |
| 64 | + |
| 65 | + <dependencyManagement> |
| 66 | + <dependencies> |
| 67 | + <dependency> |
| 68 | + <groupId>org.springframework.boot</groupId> |
| 69 | + <artifactId>spring-boot-dependencies</artifactId> |
| 70 | + <version>${spring-boot.version}</version> |
| 71 | + <type>pom</type> |
| 72 | + <scope>import</scope> |
| 73 | + </dependency> |
| 74 | + <dependency> |
| 75 | + <groupId>ca.bc.gov.open</groupId> |
| 76 | + <artifactId>spring-starters-bom</artifactId> |
| 77 | + <version>1.0.2</version> |
| 78 | + <type>pom</type> |
| 79 | + <scope>import</scope> |
| 80 | + </dependency> |
| 81 | + </dependencies> |
| 82 | + </dependencyManagement> |
| 83 | + |
| 84 | + <build> |
| 85 | + <plugins> |
| 86 | + <plugin> |
| 87 | + <groupId>org.apache.maven.plugins</groupId> |
| 88 | + <artifactId>maven-compiler-plugin</artifactId> |
| 89 | + <version>3.5.1</version> |
| 90 | + <configuration> |
| 91 | + <source>${java.version}</source> |
| 92 | + <target>${java.version}</target> |
| 93 | + </configuration> |
| 94 | + </plugin> |
| 95 | + </plugins> |
| 96 | + </build> |
| 97 | + |
| 98 | +</project> |
0 commit comments