|
1 | 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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 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"> |
3 | 4 | <modelVersion>4.0.0</modelVersion> |
4 | 5 |
|
5 | 6 | <groupId>com.iluwatar</groupId> |
|
16 | 17 | <compiler.version>3.0</compiler.version> |
17 | 18 | <coveralls.version>3.1.0</coveralls.version> |
18 | 19 | <jacoco.version>0.7.2.201409121644</jacoco.version> |
| 20 | + <commons-dbcp.version>1.4</commons-dbcp.version> |
19 | 21 | </properties> |
20 | 22 | <modules> |
21 | 23 | <module>abstract-factory</module> |
|
68 | 70 | <module>dependency-injection</module> |
69 | 71 | <module>naked-objects</module> |
70 | 72 | <module>front-controller</module> |
71 | | - <module>repository</module> |
72 | | - </modules> |
| 73 | + <module>repository</module> |
| 74 | + </modules> |
73 | 75 |
|
74 | 76 | <dependencyManagement> |
75 | 77 | <dependencies> |
76 | | - <dependency> |
| 78 | + <dependency> |
77 | 79 | <groupId>org.hibernate</groupId> |
78 | 80 | <artifactId>hibernate-core</artifactId> |
79 | 81 | <version>${hibernate.version}</version> |
|
93 | 95 | <artifactId>h2</artifactId> |
94 | 96 | <version>${h2.version}</version> |
95 | 97 | </dependency> |
| 98 | + <dependency> |
| 99 | + <groupId>commons-dbcp</groupId> |
| 100 | + <artifactId>commons-dbcp</artifactId> |
| 101 | + <version>${commons-dbcp.version}</version> |
| 102 | + </dependency> |
96 | 103 | <dependency> |
97 | 104 | <groupId>junit</groupId> |
98 | 105 | <artifactId>junit</artifactId> |
|
130 | 137 | </goals> |
131 | 138 | </pluginExecutionFilter> |
132 | 139 | <action> |
133 | | - <ignore/> |
| 140 | + <ignore /> |
134 | 141 | </action> |
135 | 142 | </pluginExecution> |
136 | 143 | </pluginExecutions> |
|
163 | 170 | <groupId>org.jacoco</groupId> |
164 | 171 | <artifactId>jacoco-maven-plugin</artifactId> |
165 | 172 | <version>${jacoco.version}</version> |
166 | | - <!-- The following exclude configuration was added because error occurred when executing "mvn clean test jacoco:report coveralls:report" --> |
167 | | - <!-- [ERROR] Failed to execute goal org.eluder.coveralls:coveralls-maven-plugin:3.1.0:report (default-cli) on project java-design-patterns: I/O operation failed: No source found for domainapp/dom/modules/simple/QSimpleObject.java -> [Help 1] --> |
| 173 | + <!-- The following exclude configuration was added because error occurred |
| 174 | + when executing "mvn clean test jacoco:report coveralls:report" --> |
| 175 | + <!-- [ERROR] Failed to execute goal org.eluder.coveralls:coveralls-maven-plugin:3.1.0:report |
| 176 | + (default-cli) on project java-design-patterns: I/O operation failed: No source |
| 177 | + found for domainapp/dom/modules/simple/QSimpleObject.java -> [Help 1] --> |
168 | 178 | <configuration> |
169 | 179 | <excludes> |
170 | 180 | <exclude>domainapp/dom/modules/simple/QSimpleObject.class</exclude> |
|
0 commit comments