/[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 2632 by torben, Mon Jul 20 10:35:38 2015 UTC revision 3064 by torben, Thu Jul 21 07:41:45 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 27  Line 28 
28            <showDeprecation>true</showDeprecation>            <showDeprecation>true</showDeprecation>
29    
30            <!-- be strict regarding warnings -->            <!-- be strict regarding warnings -->
31              <!--
32            <compilerArguments>            <compilerArguments>
33              <Werror />              <Werror />
34              <Xlint:all />              <Xlint:all />            
35            </compilerArguments>            </compilerArguments>
36               -->
37              
38               <compilerArgs>
39                    <arg>-Werror</arg>
40                    <arg>-Xlint</arg>
41               </compilerArgs>
42              
43    
44          </configuration>          </configuration>
45          <!--Do NOT show depreciation in test compile -->          <!--Do NOT show depreciation in test compile -->
# Line 47  Line 56 
56            </execution>            </execution>
57          </executions>          </executions>
58        </plugin>        </plugin>
59        <plugin>  <!--      <plugin>
60          <groupId>org.codehaus.mojo</groupId>          <groupId>org.codehaus.mojo</groupId>
61          <artifactId>buildnumber-maven-plugin</artifactId>          <artifactId>buildnumber-maven-plugin</artifactId>
62          <version>1.3</version>          <version>1.3</version>
# Line 64  Line 73 
73            <doUpdate>true</doUpdate>            <doUpdate>true</doUpdate>
74          </configuration>          </configuration>
75        </plugin>        </plugin>
76    -->
77    
78                <plugin>
79                    <groupId>com.google.code.maven-svn-revision-number-plugin</groupId>
80                    <artifactId>svn-revision-number-maven-plugin</artifactId>
81                    <version>1.13</version> <!-- please use the latest version -->
82                    <executions>
83                        <execution>
84                            <goals>
85                                <goal>revision</goal>
86                            </goals>
87                        </execution>
88                    </executions>
89                    <configuration>
90                        <entries>
91                            <entry>
92                                <prefix>prefix</prefix>
93                            </entry>
94                        </entries>
95                    </configuration>
96                </plugin>
97        <plugin>        <plugin>
98          <groupId>org.apache.maven.plugins</groupId>          <groupId>org.apache.maven.plugins</groupId>
99          <artifactId>maven-war-plugin</artifactId>          <artifactId>maven-war-plugin</artifactId>
# Line 71  Line 101 
101          <configuration>          <configuration>
102            <archive>            <archive>
103              <manifestEntries>              <manifestEntries>
104                <SCM-Revision>${buildNumber}</SCM-Revision>                <SCM-Revision>${prefix.revision}</SCM-Revision>
105                <Build-Time>${maven.build.timestamp}</Build-Time>                <Build-Time>${maven.build.timestamp}</Build-Time>
106              </manifestEntries>              </manifestEntries>
107            </archive>            </archive>
# Line 80  Line 110 
110        <plugin>        <plugin>
111          <groupId>org.codehaus.mojo</groupId>          <groupId>org.codehaus.mojo</groupId>
112          <artifactId>findbugs-maven-plugin</artifactId>          <artifactId>findbugs-maven-plugin</artifactId>
113          <version>3.0.0</version>          <version>3.0.3</version>
114        </plugin>        </plugin>
115      </plugins>      </plugins>
116        <pluginManagement>
117            <plugins>
118                    <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
119                    <plugin>
120                            <groupId>org.eclipse.m2e</groupId>
121                            <artifactId>lifecycle-mapping</artifactId>
122                            <version>1.0.0</version>
123                            <configuration>
124                                    <lifecycleMappingMetadata>
125                                            <pluginExecutions>
126                                                    <pluginExecution>
127                                                            <pluginExecutionFilter>
128                                                                    <groupId>
129                                                                            com.google.code.maven-svn-revision-number-plugin
130                                                                    </groupId>
131                                                                    <artifactId>
132                                                                            svn-revision-number-maven-plugin
133                                                                    </artifactId>
134                                                                    <versionRange>[1.13,)</versionRange>
135                                                                    <goals>
136                                                                            <goal>revision</goal>
137                                                                    </goals>
138                                                            </pluginExecutionFilter>
139                                                            <action>
140                                                                    <ignore></ignore>
141                                                            </action>
142                                                    </pluginExecution>
143                                            </pluginExecutions>
144                                    </lifecycleMappingMetadata>
145                            </configuration>
146                    </plugin>
147            </plugins>
148        </pluginManagement>
149    </build>    </build>
150    
151    <dependencies>    <dependencies>
# Line 109  Line 172 
172        <version>3.3.2</version>        <version>3.3.2</version>
173      </dependency>      </dependency>
174      <dependency>      <dependency>
175              <groupId>commons-codec</groupId>
176              <artifactId>commons-codec</artifactId>
177              <version>1.10</version>
178        </dependency>    
179        <dependency>
180        <groupId>dk.thoerup</groupId>        <groupId>dk.thoerup</groupId>
181        <artifactId>CircuitBreaker</artifactId>        <artifactId>CircuitBreaker</artifactId>
182        <version>1.1.1</version>        <version>1.1.1</version>
# Line 138  Line 206 
206        <artifactId>jcabi-manifests</artifactId>        <artifactId>jcabi-manifests</artifactId>
207        <version>1.1</version>        <version>1.1</version>
208      </dependency>      </dependency>
209        
210        <dependency>
211              <groupId>com.sun.mail</groupId>
212              <artifactId>javax.mail</artifactId>
213              <version>1.4.5</version>
214        </dependency>
215        
216        
217        <!--  webjars -->
218        <dependency>
219          <groupId>org.webjars</groupId>
220          <artifactId>jquery</artifactId>
221          <version>2.1.4</version>
222            </dependency>
223            <dependency>
224          <groupId>org.webjars</groupId>
225          <artifactId>bootstrap</artifactId>
226          <version>3.3.5</version>
227        </dependency>
228        <dependency>
229          <groupId>org.webjars</groupId>
230          <artifactId>chartjs</artifactId>
231          <version>1.0.2</version>
232        </dependency>
233        
234        <!--  test dependencies -->
235      <dependency>      <dependency>
236        <groupId>junit</groupId>        <groupId>junit</groupId>
237        <artifactId>junit</artifactId>        <artifactId>junit</artifactId>
# Line 145  Line 239 
239        <scope>test</scope>        <scope>test</scope>
240      </dependency>      </dependency>
241    
     <!--  Jenkins/Cobertura breaks deployment if this is missing -->  
     <dependency>  
       <groupId>net.sourceforge.cobertura</groupId>  
       <artifactId>cobertura</artifactId>  
       <version>2.1.1</version>  
     </dependency>  
   
242    </dependencies>    </dependencies>
243    <reporting>    <reporting>
244      <plugins>      <plugins>
# Line 167  Line 254 
254        <plugin>        <plugin>
255          <groupId>org.codehaus.mojo</groupId>          <groupId>org.codehaus.mojo</groupId>
256          <artifactId>findbugs-maven-plugin</artifactId>          <artifactId>findbugs-maven-plugin</artifactId>
257          <version>3.0.1</version>          <version>3.0.3</version>
258          </plugin>
259          <plugin>
260            <groupId>org.apache.maven.plugins</groupId>
261            <artifactId>maven-pmd-plugin</artifactId>
262            <version>3.6</version>
263        </plugin>        </plugin>
264    
265        <!-- integrate maven-cobertura-plugin to project site  -->        <!-- integrate maven-cobertura-plugin to project site  -->
266        <plugin>        <plugin>
267          <groupId>org.codehaus.mojo</groupId>          <groupId>org.codehaus.mojo</groupId>

Legend:
Removed from v.2632  
changed lines
  Added in v.3064

  ViewVC Help
Powered by ViewVC 1.1.20