/[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 2481 by torben, Mon Mar 23 14:33:52 2015 UTC revision 3065 by torben, Thu Jul 21 07:43:26 2016 UTC
# Line 1  Line 1 
1  <?xml version="1.0" encoding="UTF-8"?>  <?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"  <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">
3          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0    <modelVersion>4.0.0</modelVersion>
4                        http://maven.apache.org/xsd/maven-4.0.0.xsd">    <groupId>dk.daoas</groupId>
5      <artifactId>DaoAdresseService</artifactId>
6          <modelVersion>4.0.0</modelVersion>    <version>1.0</version>
7          <groupId>dk.daoas</groupId>    <packaging>war</packaging>
8          <artifactId>DaoAdresseService</artifactId>    <scm>
9          <version>1.0</version>      <connection>scm:svn:http://svn.t-hoerup.dk/repos/project/dao/DaoAdresseService</connection>
10        <developerConnection>scm:svn:http://svn.t-hoerup.dk/repos/project/dao/DaoAdresseService</developerConnection>
11          <packaging>war</packaging>      <tag>HEAD</tag>
12        <url>http://svn.t-hoerup.dk/viewvc/projects/dao</url>
13          <properties>    </scm>
14                  <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>    <properties>
15          </properties>      <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
16      </properties>
17          <build>    <build>
18                  <plugins>  
19                          <plugin>      <plugins>
20                                  <groupId>org.apache.maven.plugins</groupId>        <plugin>
21                                  <artifactId>maven-compiler-plugin</artifactId>          <groupId>org.apache.maven.plugins</groupId>
22                                  <version>3.1</version>          <artifactId>maven-compiler-plugin</artifactId>
23                                  <configuration>          <version>3.1</version>
24                                          <source>1.7</source>          <configuration>
25                                          <target>1.7</target>            <source>1.7</source>
26                                          <showWarnings>true</showWarnings>            <target>1.7</target>
27                                          <showDeprecation>true</showDeprecation>            <showWarnings>true</showWarnings>
28                                  </configuration>            <showDeprecation>true</showDeprecation>
29                                  <!--Do NOT show depreciation in test compile -->  
30                                  <executions>            <!-- be strict regarding warnings -->
31                                          <execution>            <!--
32                                                  <id>default-testCompile</id>            <compilerArguments>
33                                                  <phase>test-compile</phase>              <Werror />
34                                                  <configuration>              <Xlint:all />            
35                                                          <showDeprecation>false</showDeprecation>            </compilerArguments>
36                                                  </configuration>             -->
37                                                  <goals>            
38                                                          <goal>testCompile</goal>             <compilerArgs>
39                                                  </goals>                  <arg>-Werror</arg>
40                                          </execution>                  <arg>-Xlint:-options</arg> <!--  -options for at lette cross compilation -->
41                                  </executions>             </compilerArgs>
42                          </plugin>            
43    
44            </configuration>
45            <!--Do NOT show depreciation in test compile -->
46                  </plugins>          <executions>
47          </build>            <execution>
48                <id>default-testCompile</id>
49                <phase>test-compile</phase>
50          <dependencies>              <configuration>
51                  <dependency>                <showDeprecation>false</showDeprecation>
52                          <groupId>javax.servlet</groupId>              </configuration>
53                          <artifactId>javax.servlet-api</artifactId>              <goals>
54                          <version>3.0.1</version>                <goal>testCompile</goal>
55                          <scope>provided</scope>              </goals>
56                  </dependency>            </execution>
57                  <dependency>          </executions>
58                          <groupId>jstl</groupId>        </plugin>
59                          <artifactId>jstl</artifactId>  <!--      <plugin>
60                          <version>1.2</version>          <groupId>org.codehaus.mojo</groupId>
61                  </dependency>          <artifactId>buildnumber-maven-plugin</artifactId>
62            <version>1.3</version>
63            <executions>
64                  <dependency>            <execution>
65                          <groupId>org.apache.commons</groupId>              <phase>validate</phase>
66                          <artifactId>commons-lang3</artifactId>              <goals>
67                          <version>3.3.2</version>                <goal>create</goal>
68                  </dependency>              </goals>
69              </execution>
70            </executions>
71                  <dependency>          <configuration>
72                          <groupId>dk.thoerup</groupId>            <doCheck>false</doCheck>
73                          <artifactId>CircuitBreaker</artifactId>            <doUpdate>true</doUpdate>
74                          <version>1.0</version>          </configuration>
75                  </dependency>        </plugin>
76    -->
77    
78                  <dependency>              <plugin>
79                          <groupId>dk.thoerup</groupId>                  <groupId>com.google.code.maven-svn-revision-number-plugin</groupId>
80                          <artifactId>WebConfig</artifactId>                  <artifactId>svn-revision-number-maven-plugin</artifactId>
81                          <version>1.0</version>                  <version>1.13</version> <!-- please use the latest version -->
82                  </dependency>                  <executions>
83                        <execution>
84                  <dependency>                          <goals>
85                          <groupId>com.google.code.gson</groupId>                              <goal>revision</goal>
86                          <artifactId>gson</artifactId>                          </goals>
87                          <version>2.3.1</version>                      </execution>
88                  </dependency>                  </executions>
89                    <configuration>
90                        <entries>
91                  <dependency>                          <entry>
92                          <groupId>com.google.code.geocoder-java</groupId>                              <prefix>prefix</prefix>
93                          <artifactId>geocoder-java</artifactId>                          </entry>
94                          <version>0.16</version>                      </entries>
95                  </dependency>                  </configuration>
96                </plugin>
97          <plugin>
98                  <dependency>          <groupId>org.apache.maven.plugins</groupId>
99                          <groupId>junit</groupId>          <artifactId>maven-war-plugin</artifactId>
100                          <artifactId>junit</artifactId>          <version>2.6</version>
101                          <version>4.12</version>          <configuration>
102                          <scope>test</scope>            <archive>
103                  </dependency>              <manifestEntries>
104                  <SCM-Revision>${prefix.revision}</SCM-Revision>
105          </dependencies>                <Build-Time>${maven.build.timestamp}</Build-Time>
106                </manifestEntries>
107              </archive>
108          <repositories>          </configuration>
109                  <repository>        </plugin>
110                          <id>hoerup-releases</id>        <plugin>
111                          <name>hoerup-releases</name>          <groupId>org.codehaus.mojo</groupId>
112                          <url>http://app.t-hoerup.dk/artifactory/ext-release-local</url>          <artifactId>findbugs-maven-plugin</artifactId>
113                  </repository>          <version>3.0.3</version>
114          </repositories>        </plugin>
115        </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>
150    
151      <dependencies>
152        <dependency>
153          <groupId>javax.servlet</groupId>
154          <artifactId>javax.servlet-api</artifactId>
155          <version>3.0.1</version>
156          <scope>provided</scope>
157        </dependency>
158        <dependency>
159          <groupId>javax.servlet.jsp</groupId>
160          <artifactId>jsp-api</artifactId>
161          <version>2.0</version>
162          <scope>provided</scope>
163        </dependency>
164        <dependency>
165          <groupId>jstl</groupId>
166          <artifactId>jstl</artifactId>
167          <version>1.2</version>
168        </dependency>
169        <dependency>
170          <groupId>org.apache.commons</groupId>
171          <artifactId>commons-lang3</artifactId>
172          <version>3.3.2</version>
173        </dependency>
174        <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>
181          <artifactId>CircuitBreaker</artifactId>
182          <version>1.1.1</version>
183        </dependency>
184        <dependency>
185          <groupId>dk.thoerup</groupId>
186          <artifactId>WebConfig</artifactId>
187          <version>1.0</version>
188        </dependency>
189        <dependency>
190          <groupId>com.google.code.gson</groupId>
191          <artifactId>gson</artifactId>
192          <version>2.3.1</version>
193        </dependency>
194        <dependency>
195          <groupId>com.google.code.geocoder-java</groupId>
196          <artifactId>geocoder-java</artifactId>
197          <version>0.16</version>
198        </dependency>
199        <dependency>
200          <groupId>com.google.guava</groupId>
201          <artifactId>guava</artifactId>
202          <version>18.0</version>
203        </dependency>
204        <dependency>
205          <groupId>com.jcabi</groupId>
206          <artifactId>jcabi-manifests</artifactId>
207          <version>1.1</version>
208        </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>
236          <groupId>junit</groupId>
237          <artifactId>junit</artifactId>
238          <version>4.12</version>
239          <scope>test</scope>
240        </dependency>
241    
242      </dependencies>
243      <reporting>
244        <plugins>
245          <!-- Normally, we take off the dependency report, saves time. -->
246          <plugin>
247            <groupId>org.apache.maven.plugins</groupId>
248            <artifactId>maven-project-info-reports-plugin</artifactId>
249            <version>2.7</version>
250            <configuration>
251              <dependencyLocationsEnabled>false</dependencyLocationsEnabled>
252            </configuration>
253          </plugin>
254          <plugin>
255            <groupId>org.codehaus.mojo</groupId>
256            <artifactId>findbugs-maven-plugin</artifactId>
257            <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>
264    
265          <!-- integrate maven-cobertura-plugin to project site  -->
266          <plugin>
267            <groupId>org.codehaus.mojo</groupId>
268            <artifactId>cobertura-maven-plugin</artifactId>
269            <version>2.7</version>
270            <configuration>
271              <formats>
272                <format>html</format>
273                <format>xml</format>
274              </formats>
275            </configuration>
276          </plugin>
277        </plugins>
278      </reporting>
279      <repositories>
280        <repository>
281          <id>hoerup-releases</id>
282          <name>hoerup-releases</name>
283          <url>http://app.t-hoerup.dk/artifactory/ext-release-local</url>
284        </repository>
285      </repositories>
286  </project>  </project>

Legend:
Removed from v.2481  
changed lines
  Added in v.3065

  ViewVC Help
Powered by ViewVC 1.1.20