/[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 2768 by torben, Wed Nov 4 22:10:59 2015 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>            <compilerArguments>
32                                                  <id>default-testCompile</id>              <Werror />
33                                                  <phase>test-compile</phase>              <!-- <Xlint:all />-->
34                                                  <configuration>            </compilerArguments>
35                                                          <showDeprecation>false</showDeprecation>  
36                                                  </configuration>          </configuration>
37                                                  <goals>          <!--Do NOT show depreciation in test compile -->
38                                                          <goal>testCompile</goal>          <executions>
39                                                  </goals>            <execution>
40                                          </execution>              <id>default-testCompile</id>
41                                  </executions>              <phase>test-compile</phase>
42                          </plugin>              <configuration>
43                  <showDeprecation>false</showDeprecation>
44                </configuration>
45                <goals>
46                  </plugins>                <goal>testCompile</goal>
47          </build>              </goals>
48              </execution>
49            </executions>
50          <dependencies>        </plugin>
51                  <dependency>  <!--      <plugin>
52                          <groupId>javax.servlet</groupId>          <groupId>org.codehaus.mojo</groupId>
53                          <artifactId>javax.servlet-api</artifactId>          <artifactId>buildnumber-maven-plugin</artifactId>
54                          <version>3.0.1</version>          <version>1.3</version>
55                          <scope>provided</scope>          <executions>
56                  </dependency>            <execution>
57                  <dependency>              <phase>validate</phase>
58                          <groupId>jstl</groupId>              <goals>
59                          <artifactId>jstl</artifactId>                <goal>create</goal>
60                          <version>1.2</version>              </goals>
61                  </dependency>            </execution>
62            </executions>
63            <configuration>
64                  <dependency>            <doCheck>false</doCheck>
65                          <groupId>org.apache.commons</groupId>            <doUpdate>true</doUpdate>
66                          <artifactId>commons-lang3</artifactId>          </configuration>
67                          <version>3.3.2</version>        </plugin>
68                  </dependency>  -->
69    
70                <plugin>
71                  <dependency>                  <groupId>com.google.code.maven-svn-revision-number-plugin</groupId>
72                          <groupId>dk.thoerup</groupId>                  <artifactId>svn-revision-number-maven-plugin</artifactId>
73                          <artifactId>CircuitBreaker</artifactId>                  <version>1.13</version> <!-- please use the latest version -->
74                          <version>1.0</version>                  <executions>
75                  </dependency>                      <execution>
76                            <goals>
77                                <goal>revision</goal>
78                  <dependency>                          </goals>
79                          <groupId>dk.thoerup</groupId>                      </execution>
80                          <artifactId>WebConfig</artifactId>                  </executions>
81                          <version>1.0</version>                  <configuration>
82                  </dependency>                      <entries>
83                            <entry>
84                  <dependency>                              <prefix>prefix</prefix>
85                          <groupId>com.google.code.gson</groupId>                          </entry>
86                          <artifactId>gson</artifactId>                      </entries>
87                          <version>2.3.1</version>                  </configuration>
88                  </dependency>              </plugin>
89          <plugin>
90            <groupId>org.apache.maven.plugins</groupId>
91                  <dependency>          <artifactId>maven-war-plugin</artifactId>
92                          <groupId>com.google.code.geocoder-java</groupId>          <version>2.6</version>
93                          <artifactId>geocoder-java</artifactId>          <configuration>
94                          <version>0.16</version>            <archive>
95                  </dependency>              <manifestEntries>
96                  <SCM-Revision>${prefix.revision}</SCM-Revision>
97                  <Build-Time>${maven.build.timestamp}</Build-Time>
98                  <dependency>              </manifestEntries>
99                          <groupId>junit</groupId>            </archive>
100                          <artifactId>junit</artifactId>          </configuration>
101                          <version>4.12</version>        </plugin>
102                          <scope>test</scope>        <plugin>
103                  </dependency>          <groupId>org.codehaus.mojo</groupId>
104            <artifactId>findbugs-maven-plugin</artifactId>
105          </dependencies>          <version>3.0.0</version>
106          </plugin>
107        </plugins>
108          <repositories>      <pluginManagement>
109                  <repository>          <plugins>
110                          <id>hoerup-releases</id>                  <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
111                          <name>hoerup-releases</name>                  <plugin>
112                          <url>http://app.t-hoerup.dk/artifactory/ext-release-local</url>                          <groupId>org.eclipse.m2e</groupId>
113                  </repository>                          <artifactId>lifecycle-mapping</artifactId>
114          </repositories>                          <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>
142    
143      <dependencies>
144        <dependency>
145          <groupId>javax.servlet</groupId>
146          <artifactId>javax.servlet-api</artifactId>
147          <version>3.0.1</version>
148          <scope>provided</scope>
149        </dependency>
150        <dependency>
151          <groupId>javax.servlet.jsp</groupId>
152          <artifactId>jsp-api</artifactId>
153          <version>2.0</version>
154          <scope>provided</scope>
155        </dependency>
156        <dependency>
157          <groupId>jstl</groupId>
158          <artifactId>jstl</artifactId>
159          <version>1.2</version>
160        </dependency>
161        <dependency>
162          <groupId>org.apache.commons</groupId>
163          <artifactId>commons-lang3</artifactId>
164          <version>3.3.2</version>
165        </dependency>
166        <dependency>
167          <groupId>dk.thoerup</groupId>
168          <artifactId>CircuitBreaker</artifactId>
169          <version>1.1.1</version>
170        </dependency>
171        <dependency>
172          <groupId>dk.thoerup</groupId>
173          <artifactId>WebConfig</artifactId>
174          <version>1.0</version>
175        </dependency>
176        <dependency>
177          <groupId>com.google.code.gson</groupId>
178          <artifactId>gson</artifactId>
179          <version>2.3.1</version>
180        </dependency>
181        <dependency>
182          <groupId>com.google.code.geocoder-java</groupId>
183          <artifactId>geocoder-java</artifactId>
184          <version>0.16</version>
185        </dependency>
186        <dependency>
187          <groupId>com.google.guava</groupId>
188          <artifactId>guava</artifactId>
189          <version>18.0</version>
190        </dependency>
191        <dependency>
192          <groupId>com.jcabi</groupId>
193          <artifactId>jcabi-manifests</artifactId>
194          <version>1.1</version>
195        </dependency>
196        
197        <dependency>
198              <groupId>com.sun.mail</groupId>
199              <artifactId>javax.mail</artifactId>
200              <version>1.4.5</version>
201        </dependency>
202        
203        
204        <!--  webjars -->
205        <dependency>
206          <groupId>org.webjars</groupId>
207          <artifactId>jquery</artifactId>
208          <version>2.1.4</version>
209            </dependency>
210            <dependency>
211          <groupId>org.webjars</groupId>
212          <artifactId>bootstrap</artifactId>
213          <version>3.3.5</version>
214        </dependency>
215        <dependency>
216          <groupId>org.webjars</groupId>
217          <artifactId>chartjs</artifactId>
218          <version>1.0.2</version>
219        </dependency>
220        
221        <!--  test dependencies -->
222        <dependency>
223          <groupId>junit</groupId>
224          <artifactId>junit</artifactId>
225          <version>4.12</version>
226          <scope>test</scope>
227        </dependency>
228    
229      </dependencies>
230      <reporting>
231        <plugins>
232          <!-- Normally, we take off the dependency report, saves time. -->
233          <plugin>
234            <groupId>org.apache.maven.plugins</groupId>
235            <artifactId>maven-project-info-reports-plugin</artifactId>
236            <version>2.7</version>
237            <configuration>
238              <dependencyLocationsEnabled>false</dependencyLocationsEnabled>
239            </configuration>
240          </plugin>
241          <plugin>
242            <groupId>org.codehaus.mojo</groupId>
243            <artifactId>findbugs-maven-plugin</artifactId>
244            <version>3.0.1</version>
245          </plugin>
246          <!-- integrate maven-cobertura-plugin to project site  -->
247          <plugin>
248            <groupId>org.codehaus.mojo</groupId>
249            <artifactId>cobertura-maven-plugin</artifactId>
250            <version>2.7</version>
251            <configuration>
252              <formats>
253                <format>html</format>
254                <format>xml</format>
255              </formats>
256            </configuration>
257          </plugin>
258        </plugins>
259      </reporting>
260      <repositories>
261        <repository>
262          <id>hoerup-releases</id>
263          <name>hoerup-releases</name>
264          <url>http://app.t-hoerup.dk/artifactory/ext-release-local</url>
265        </repository>
266      </repositories>
267  </project>  </project>

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

  ViewVC Help
Powered by ViewVC 1.1.20