/[projects]/dao/DaoAdresseService/pom.xml
ViewVC logotype

Diff of /dao/DaoAdresseService/pom.xml

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 2610 by torben, Wed Jul 15 08:52:00 2015 UTC revision 2942 by torben, Sat Feb 13 07:05:11 2016 UTC
# Line 15  Line 15 
15      <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>      <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
16    </properties>    </properties>
17    <build>    <build>
18    
19      <plugins>      <plugins>
20        <plugin>        <plugin>
21          <groupId>org.apache.maven.plugins</groupId>          <groupId>org.apache.maven.plugins</groupId>
# Line 25  Line 26 
26            <target>1.7</target>            <target>1.7</target>
27            <showWarnings>true</showWarnings>            <showWarnings>true</showWarnings>
28            <showDeprecation>true</showDeprecation>            <showDeprecation>true</showDeprecation>
29    
30              <!-- be strict regarding warnings -->
31              <compilerArguments>
32                <Werror />
33                <!-- <Xlint:all />-->
34              </compilerArguments>
35    
36          </configuration>          </configuration>
37          <!--Do NOT show depreciation in test compile -->          <!--Do NOT show depreciation in test compile -->
38          <executions>          <executions>
# Line 40  Line 48 
48            </execution>            </execution>
49          </executions>          </executions>
50        </plugin>        </plugin>
51        <plugin>  <!--      <plugin>
52          <groupId>org.codehaus.mojo</groupId>          <groupId>org.codehaus.mojo</groupId>
53          <artifactId>buildnumber-maven-plugin</artifactId>          <artifactId>buildnumber-maven-plugin</artifactId>
54          <version>1.3</version>          <version>1.3</version>
# Line 57  Line 65 
65            <doUpdate>true</doUpdate>            <doUpdate>true</doUpdate>
66          </configuration>          </configuration>
67        </plugin>        </plugin>
68    -->
69    
70                <plugin>
71                    <groupId>com.google.code.maven-svn-revision-number-plugin</groupId>
72                    <artifactId>svn-revision-number-maven-plugin</artifactId>
73                    <version>1.13</version> <!-- please use the latest version -->
74                    <executions>
75                        <execution>
76                            <goals>
77                                <goal>revision</goal>
78                            </goals>
79                        </execution>
80                    </executions>
81                    <configuration>
82                        <entries>
83                            <entry>
84                                <prefix>prefix</prefix>
85                            </entry>
86                        </entries>
87                    </configuration>
88                </plugin>
89        <plugin>        <plugin>
90          <groupId>org.apache.maven.plugins</groupId>          <groupId>org.apache.maven.plugins</groupId>
91          <artifactId>maven-war-plugin</artifactId>          <artifactId>maven-war-plugin</artifactId>
# Line 64  Line 93 
93          <configuration>          <configuration>
94            <archive>            <archive>
95              <manifestEntries>              <manifestEntries>
96                <SCM-Revision>${buildNumber}</SCM-Revision>                <SCM-Revision>${prefix.revision}</SCM-Revision>
97                <Build-Time>${maven.build.timestamp}</Build-Time>                <Build-Time>${maven.build.timestamp}</Build-Time>
98              </manifestEntries>              </manifestEntries>
99            </archive>            </archive>
100          </configuration>          </configuration>
101        </plugin>        </plugin>
102          <plugin>
103            <groupId>org.codehaus.mojo</groupId>
104            <artifactId>findbugs-maven-plugin</artifactId>
105            <version>3.0.0</version>
106          </plugin>
107      </plugins>      </plugins>
108        <pluginManagement>
109            <plugins>
110                    <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
111                    <plugin>
112                            <groupId>org.eclipse.m2e</groupId>
113                            <artifactId>lifecycle-mapping</artifactId>
114                            <version>1.0.0</version>
115                            <configuration>
116                                    <lifecycleMappingMetadata>
117                                            <pluginExecutions>
118                                                    <pluginExecution>
119                                                            <pluginExecutionFilter>
120                                                                    <groupId>
121                                                                            com.google.code.maven-svn-revision-number-plugin
122                                                                    </groupId>
123                                                                    <artifactId>
124                                                                            svn-revision-number-maven-plugin
125                                                                    </artifactId>
126                                                                    <versionRange>[1.13,)</versionRange>
127                                                                    <goals>
128                                                                            <goal>revision</goal>
129                                                                    </goals>
130                                                            </pluginExecutionFilter>
131                                                            <action>
132                                                                    <ignore></ignore>
133                                                            </action>
134                                                    </pluginExecution>
135                                            </pluginExecutions>
136                                    </lifecycleMappingMetadata>
137                            </configuration>
138                    </plugin>
139            </plugins>
140        </pluginManagement>
141    </build>    </build>
142    
143    <dependencies>    <dependencies>
144      <dependency>      <dependency>
145        <groupId>javax.servlet</groupId>        <groupId>javax.servlet</groupId>
# Line 96  Line 164 
164        <version>3.3.2</version>        <version>3.3.2</version>
165      </dependency>      </dependency>
166      <dependency>      <dependency>
167              <groupId>commons-codec</groupId>
168              <artifactId>commons-codec</artifactId>
169              <version>1.10</version>
170        </dependency>    
171        <dependency>
172        <groupId>dk.thoerup</groupId>        <groupId>dk.thoerup</groupId>
173        <artifactId>CircuitBreaker</artifactId>        <artifactId>CircuitBreaker</artifactId>
174        <version>1.1.1</version>        <version>1.1.1</version>
# Line 125  Line 198 
198        <artifactId>jcabi-manifests</artifactId>        <artifactId>jcabi-manifests</artifactId>
199        <version>1.1</version>        <version>1.1</version>
200      </dependency>      </dependency>
201        
202        <dependency>
203              <groupId>com.sun.mail</groupId>
204              <artifactId>javax.mail</artifactId>
205              <version>1.4.5</version>
206        </dependency>
207        
208        
209        <!--  webjars -->
210        <dependency>
211          <groupId>org.webjars</groupId>
212          <artifactId>jquery</artifactId>
213          <version>2.1.4</version>
214            </dependency>
215            <dependency>
216          <groupId>org.webjars</groupId>
217          <artifactId>bootstrap</artifactId>
218          <version>3.3.5</version>
219        </dependency>
220        <dependency>
221          <groupId>org.webjars</groupId>
222          <artifactId>chartjs</artifactId>
223          <version>1.0.2</version>
224        </dependency>
225        
226        <!--  test dependencies -->
227      <dependency>      <dependency>
228        <groupId>junit</groupId>        <groupId>junit</groupId>
229        <artifactId>junit</artifactId>        <artifactId>junit</artifactId>
230        <version>4.12</version>        <version>4.12</version>
231        <scope>test</scope>        <scope>test</scope>
232      </dependency>      </dependency>
233    
234    </dependencies>    </dependencies>
235    <reporting>    <reporting>
236      <plugins>      <plugins>
# Line 148  Line 248 
248          <artifactId>findbugs-maven-plugin</artifactId>          <artifactId>findbugs-maven-plugin</artifactId>
249          <version>3.0.1</version>          <version>3.0.1</version>
250        </plugin>        </plugin>
251          <plugin>
252            <groupId>org.apache.maven.plugins</groupId>
253            <artifactId>maven-pmd-plugin</artifactId>
254            <version>3.6</version>
255          </plugin>
256    
257        <!-- integrate maven-cobertura-plugin to project site  -->        <!-- integrate maven-cobertura-plugin to project site  -->
258        <plugin>        <plugin>
259          <groupId>org.codehaus.mojo</groupId>          <groupId>org.codehaus.mojo</groupId>

Legend:
Removed from v.2610  
changed lines
  Added in v.2942

  ViewVC Help
Powered by ViewVC 1.1.20