|
1 | | -<?xml version="1.0"?> |
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
2 | 2 | <!-- |
3 | 3 |
|
4 | 4 | The MIT License |
|
23 | 23 | THE SOFTWARE. |
24 | 24 |
|
25 | 25 | --> |
26 | | -<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" |
27 | | - xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> |
28 | | - <modelVersion>4.0.0</modelVersion> |
29 | | - <parent> |
30 | | - <groupId>com.iluwatar</groupId> |
31 | | - <artifactId>java-design-patterns</artifactId> |
32 | | - <version>1.25.0-SNAPSHOT</version> |
33 | | - </parent> |
34 | | - <artifactId>repository</artifactId> |
35 | | - <dependencies> |
36 | | - <dependency> |
37 | | - <groupId>org.springframework.data</groupId> |
38 | | - <artifactId>spring-data-jpa</artifactId> |
39 | | - </dependency> |
40 | | - <dependency> |
41 | | - <groupId>org.hibernate</groupId> |
42 | | - <artifactId>hibernate-core</artifactId> |
43 | | - </dependency> |
44 | | - <dependency> |
45 | | - <groupId>commons-dbcp</groupId> |
46 | | - <artifactId>commons-dbcp</artifactId> |
47 | | - </dependency> |
48 | | - <dependency> |
49 | | - <groupId>com.h2database</groupId> |
50 | | - <artifactId>h2</artifactId> |
51 | | - </dependency> |
52 | | - <dependency> |
53 | | - <groupId>org.junit.jupiter</groupId> |
54 | | - <artifactId>junit-jupiter-engine</artifactId> |
55 | | - <scope>test</scope> |
56 | | - </dependency> |
57 | | - <dependency> |
58 | | - <groupId>com.google.guava</groupId> |
59 | | - <artifactId>guava</artifactId> |
60 | | - </dependency> |
61 | | - <dependency> |
62 | | - <groupId>javax.xml.bind</groupId> |
63 | | - <artifactId>jaxb-api</artifactId> |
64 | | - </dependency> |
65 | | - <dependency> |
66 | | - <groupId>javax.annotation</groupId> |
67 | | - <artifactId>javax.annotation-api</artifactId> |
68 | | - </dependency> |
69 | | - <dependency> |
70 | | - <groupId>org.springframework.boot</groupId> |
71 | | - <artifactId>spring-boot-starter-test</artifactId> |
72 | | - </dependency> |
73 | | - </dependencies> |
74 | | - <build> |
75 | | - <plugins> |
76 | | - <plugin> |
77 | | - <groupId>org.apache.maven.plugins</groupId> |
78 | | - <artifactId>maven-assembly-plugin</artifactId> |
79 | | - <executions> |
80 | | - <execution> |
81 | | - <configuration> |
82 | | - <archive> |
83 | | - <manifest> |
84 | | - <mainClass>com.iluwatar.repository.App</mainClass> |
85 | | - </manifest> |
86 | | - </archive> |
87 | | - </configuration> |
88 | | - </execution> |
89 | | - </executions> |
90 | | - </plugin> |
91 | | - </plugins> |
92 | | - </build> |
| 26 | +<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"> |
| 27 | + <modelVersion>4.0.0</modelVersion> |
| 28 | + <parent> |
| 29 | + <groupId>com.iluwatar</groupId> |
| 30 | + <artifactId>java-design-patterns</artifactId> |
| 31 | + <version>1.25.0-SNAPSHOT</version> |
| 32 | + </parent> |
| 33 | + <artifactId>repository</artifactId> |
| 34 | + <dependencies> |
| 35 | + <dependency> |
| 36 | + <groupId>org.springframework.data</groupId> |
| 37 | + <artifactId>spring-data-jpa</artifactId> |
| 38 | + </dependency> |
| 39 | + <dependency> |
| 40 | + <groupId>org.hibernate</groupId> |
| 41 | + <artifactId>hibernate-core</artifactId> |
| 42 | + </dependency> |
| 43 | + <dependency> |
| 44 | + <groupId>commons-dbcp</groupId> |
| 45 | + <artifactId>commons-dbcp</artifactId> |
| 46 | + </dependency> |
| 47 | + <dependency> |
| 48 | + <groupId>com.h2database</groupId> |
| 49 | + <artifactId>h2</artifactId> |
| 50 | + </dependency> |
| 51 | + <dependency> |
| 52 | + <groupId>org.junit.jupiter</groupId> |
| 53 | + <artifactId>junit-jupiter-engine</artifactId> |
| 54 | + <scope>test</scope> |
| 55 | + </dependency> |
| 56 | + <dependency> |
| 57 | + <groupId>com.google.guava</groupId> |
| 58 | + <artifactId>guava</artifactId> |
| 59 | + </dependency> |
| 60 | + <dependency> |
| 61 | + <groupId>javax.xml.bind</groupId> |
| 62 | + <artifactId>jaxb-api</artifactId> |
| 63 | + </dependency> |
| 64 | + <dependency> |
| 65 | + <groupId>javax.annotation</groupId> |
| 66 | + <artifactId>javax.annotation-api</artifactId> |
| 67 | + </dependency> |
| 68 | + <dependency> |
| 69 | + <groupId>org.springframework.boot</groupId> |
| 70 | + <artifactId>spring-boot-starter-test</artifactId> |
| 71 | + </dependency> |
| 72 | + </dependencies> |
| 73 | + <build> |
| 74 | + <plugins> |
| 75 | + <plugin> |
| 76 | + <groupId>org.apache.maven.plugins</groupId> |
| 77 | + <artifactId>maven-assembly-plugin</artifactId> |
| 78 | + <executions> |
| 79 | + <execution> |
| 80 | + <configuration> |
| 81 | + <archive> |
| 82 | + <manifest> |
| 83 | + <mainClass>com.iluwatar.repository.App</mainClass> |
| 84 | + </manifest> |
| 85 | + </archive> |
| 86 | + </configuration> |
| 87 | + </execution> |
| 88 | + </executions> |
| 89 | + </plugin> |
| 90 | + </plugins> |
| 91 | + </build> |
93 | 92 | </project> |
0 commit comments