|
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> |
|
64 | 65 | <module>thread-pool</module> |
65 | 66 | <module>private-class-data</module> |
66 | 67 | <module>object-pool</module> |
67 | | - <module>dependency-injection</module> |
68 | | - <module>naked-objects</module> |
69 | | - </modules> |
| 68 | + <module>dependency-injection</module> |
| 69 | + <module>naked-objects</module> |
| 70 | + <module>front-controller</module> |
| 71 | + </modules> |
70 | 72 |
|
71 | 73 | <dependencyManagement> |
72 | 74 | <dependencies> |
|
88 | 90 | </dependency> |
89 | 91 | </dependencies> |
90 | 92 | </dependencyManagement> |
91 | | - |
| 93 | + |
92 | 94 |
|
93 | 95 | <build> |
94 | 96 | <pluginManagement> |
95 | 97 | <plugins> |
96 | | - <!-- |
97 | | - This plugin's configuration is used to store Eclipse m2e settings only. |
98 | | - It has no influence on the Maven build itself. |
99 | | - TODO: Remove when the m2e plugin can correctly bind to Maven lifecycle |
100 | | - --> |
101 | | - <plugin> |
102 | | - <groupId>org.eclipse.m2e</groupId> |
103 | | - <artifactId>lifecycle-mapping</artifactId> |
104 | | - <version>1.0.0</version> |
105 | | - <configuration> |
106 | | - <lifecycleMappingMetadata> |
107 | | - <pluginExecutions> |
108 | | - <pluginExecution> |
109 | | - <pluginExecutionFilter> |
110 | | - <groupId>org.jacoco</groupId> |
111 | | - <artifactId> |
112 | | - jacoco-maven-plugin |
113 | | - </artifactId> |
114 | | - <versionRange> |
115 | | - [0.6.2,) |
116 | | - </versionRange> |
117 | | - <goals> |
118 | | - <goal>prepare-agent</goal> |
119 | | - </goals> |
120 | | - </pluginExecutionFilter> |
121 | | - <action> |
122 | | - <ignore/> |
123 | | - </action> |
124 | | - </pluginExecution> |
125 | | - </pluginExecutions> |
126 | | - </lifecycleMappingMetadata> |
127 | | - </configuration> |
128 | | - </plugin> |
| 98 | + <!-- This plugin's configuration is used to store Eclipse m2e settings |
| 99 | + only. It has no influence on the Maven build itself. TODO: Remove when the |
| 100 | + m2e plugin can correctly bind to Maven lifecycle --> |
| 101 | + <plugin> |
| 102 | + <groupId>org.eclipse.m2e</groupId> |
| 103 | + <artifactId>lifecycle-mapping</artifactId> |
| 104 | + <version>1.0.0</version> |
| 105 | + <configuration> |
| 106 | + <lifecycleMappingMetadata> |
| 107 | + <pluginExecutions> |
| 108 | + <pluginExecution> |
| 109 | + <pluginExecutionFilter> |
| 110 | + <groupId>org.jacoco</groupId> |
| 111 | + <artifactId> |
| 112 | + jacoco-maven-plugin |
| 113 | + </artifactId> |
| 114 | + <versionRange> |
| 115 | + [0.6.2,) |
| 116 | + </versionRange> |
| 117 | + <goals> |
| 118 | + <goal>prepare-agent</goal> |
| 119 | + </goals> |
| 120 | + </pluginExecutionFilter> |
| 121 | + <action> |
| 122 | + <ignore /> |
| 123 | + </action> |
| 124 | + </pluginExecution> |
| 125 | + </pluginExecutions> |
| 126 | + </lifecycleMappingMetadata> |
| 127 | + </configuration> |
| 128 | + </plugin> |
129 | 129 | </plugins> |
130 | 130 | </pluginManagement> |
131 | 131 |
|
|
141 | 141 | </configuration> |
142 | 142 | </plugin> |
143 | 143 | <plugin> |
144 | | - <groupId>org.eluder.coveralls</groupId> |
145 | | - <artifactId>coveralls-maven-plugin</artifactId> |
146 | | - <version>${coveralls.version}</version> |
147 | | - <configuration> |
148 | | - <repoToken>jb6wYzxkVvjolD6qOWpzWdcWBzYk2fAmF</repoToken> |
149 | | - </configuration> |
150 | | - </plugin> |
| 144 | + <groupId>org.eluder.coveralls</groupId> |
| 145 | + <artifactId>coveralls-maven-plugin</artifactId> |
| 146 | + <version>${coveralls.version}</version> |
| 147 | + <configuration> |
| 148 | + <repoToken>jb6wYzxkVvjolD6qOWpzWdcWBzYk2fAmF</repoToken> |
| 149 | + </configuration> |
| 150 | + </plugin> |
151 | 151 | <plugin> |
152 | | - <groupId>org.jacoco</groupId> |
153 | | - <artifactId>jacoco-maven-plugin</artifactId> |
154 | | - <version>${jacoco.version}</version> |
155 | | - <executions> |
156 | | - <execution> |
157 | | - <id>prepare-agent</id> |
158 | | - <goals> |
159 | | - <goal>prepare-agent</goal> |
160 | | - </goals> |
161 | | - </execution> |
162 | | - </executions> |
163 | | - </plugin> |
| 152 | + <groupId>org.jacoco</groupId> |
| 153 | + <artifactId>jacoco-maven-plugin</artifactId> |
| 154 | + <version>${jacoco.version}</version> |
| 155 | + <executions> |
| 156 | + <execution> |
| 157 | + <id>prepare-agent</id> |
| 158 | + <goals> |
| 159 | + <goal>prepare-agent</goal> |
| 160 | + </goals> |
| 161 | + </execution> |
| 162 | + </executions> |
| 163 | + </plugin> |
164 | 164 | </plugins> |
165 | 165 | </build> |
166 | 166 |
|
|
0 commit comments