/[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 2571 by torben, Tue Jun 9 09:14:28 2015 UTC revision 2634 by torben, Mon Jul 20 12:00:18 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>
                 <plugins>  
                         <plugin>  
                                 <groupId>org.apache.maven.plugins</groupId>  
                                 <artifactId>maven-compiler-plugin</artifactId>  
                                 <version>3.1</version>  
                                 <configuration>  
                                         <source>1.7</source>  
                                         <target>1.7</target>  
                                         <showWarnings>true</showWarnings>  
                                         <showDeprecation>true</showDeprecation>  
                                 </configuration>  
                                 <!--Do NOT show depreciation in test compile -->  
                                 <executions>  
                                         <execution>  
                                                 <id>default-testCompile</id>  
                                                 <phase>test-compile</phase>  
                                                 <configuration>  
                                                         <showDeprecation>false</showDeprecation>  
                                                 </configuration>  
                                                 <goals>  
                                                         <goal>testCompile</goal>  
                                                 </goals>  
                                         </execution>  
                                 </executions>  
                         </plugin>  
   
   
   
                 </plugins>  
         </build>  
   
   
         <dependencies>  
                 <dependency>  
                         <groupId>javax.servlet</groupId>  
                         <artifactId>javax.servlet-api</artifactId>  
                         <version>3.0.1</version>  
                         <scope>provided</scope>  
                 </dependency>  
                 <dependency>  
                         <groupId>javax.servlet.jsp</groupId>  
                         <artifactId>jsp-api</artifactId>  
                         <version>2.0</version>  
                         <scope>provided</scope>  
                 </dependency>  
                   
                 <dependency>  
                         <groupId>jstl</groupId>  
                         <artifactId>jstl</artifactId>  
                         <version>1.2</version>  
                 </dependency>  
   
   
                 <dependency>  
                         <groupId>org.apache.commons</groupId>  
                         <artifactId>commons-lang3</artifactId>  
                         <version>3.3.2</version>  
                 </dependency>  
   
   
                 <dependency>  
                         <groupId>dk.thoerup</groupId>  
                         <artifactId>CircuitBreaker</artifactId>  
                         <version>1.1</version>  
                 </dependency>  
   
   
                 <dependency>  
                         <groupId>dk.thoerup</groupId>  
                         <artifactId>WebConfig</artifactId>  
                         <version>1.0</version>  
                 </dependency>  
   
                 <dependency>  
                         <groupId>com.google.code.gson</groupId>  
                         <artifactId>gson</artifactId>  
                         <version>2.3.1</version>  
                 </dependency>  
   
   
                 <dependency>  
                         <groupId>com.google.code.geocoder-java</groupId>  
                         <artifactId>geocoder-java</artifactId>  
                         <version>0.16</version>  
                 </dependency>  
   
         <dependency>  
                   <groupId>com.google.guava</groupId>  
           <artifactId>guava</artifactId>  
                   <version>18.0</version>      
         </dependency>  
   
                 <dependency>  
                         <groupId>junit</groupId>  
                         <artifactId>junit</artifactId>  
                         <version>4.12</version>  
                         <scope>test</scope>  
                 </dependency>  
18    
19          </dependencies>      <plugins>
20          <plugin>
21            <groupId>org.apache.maven.plugins</groupId>
22            <artifactId>maven-compiler-plugin</artifactId>
23            <version>3.1</version>
24            <configuration>
25              <source>1.7</source>
26              <target>1.7</target>
27              <showWarnings>true</showWarnings>
28              <showDeprecation>true</showDeprecation>
29    
30              <!-- be strict regarding warnings -->
31              <compilerArguments>
32                <Werror />
33                <Xlint:all />
34              </compilerArguments>
35    
36            </configuration>
37            <!--Do NOT show depreciation in test compile -->
38            <executions>
39              <execution>
40                <id>default-testCompile</id>
41                <phase>test-compile</phase>
42                <configuration>
43                  <showDeprecation>false</showDeprecation>
44                </configuration>
45                <goals>
46                  <goal>testCompile</goal>
47                </goals>
48              </execution>
49            </executions>
50          </plugin>
51    <!--      <plugin>
52            <groupId>org.codehaus.mojo</groupId>
53            <artifactId>buildnumber-maven-plugin</artifactId>
54            <version>1.3</version>
55            <executions>
56              <execution>
57                <phase>validate</phase>
58                <goals>
59                  <goal>create</goal>
60                </goals>
61              </execution>
62            </executions>
63            <configuration>
64              <doCheck>false</doCheck>
65              <doUpdate>true</doUpdate>
66            </configuration>
67          </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>
90            <groupId>org.apache.maven.plugins</groupId>
91            <artifactId>maven-war-plugin</artifactId>
92            <version>2.6</version>
93            <configuration>
94              <archive>
95                <manifestEntries>
96                  <SCM-Revision>${prefix.revision}</SCM-Revision>
97                  <Build-Time>${maven.build.timestamp}</Build-Time>
98                </manifestEntries>
99              </archive>
100            </configuration>
101          </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>
108      </build>
109    
110      <dependencies>
111        <dependency>
112          <groupId>javax.servlet</groupId>
113          <artifactId>javax.servlet-api</artifactId>
114          <version>3.0.1</version>
115          <scope>provided</scope>
116        </dependency>
117        <dependency>
118          <groupId>javax.servlet.jsp</groupId>
119          <artifactId>jsp-api</artifactId>
120          <version>2.0</version>
121          <scope>provided</scope>
122        </dependency>
123        <dependency>
124          <groupId>jstl</groupId>
125          <artifactId>jstl</artifactId>
126          <version>1.2</version>
127        </dependency>
128        <dependency>
129          <groupId>org.apache.commons</groupId>
130          <artifactId>commons-lang3</artifactId>
131          <version>3.3.2</version>
132        </dependency>
133        <dependency>
134          <groupId>dk.thoerup</groupId>
135          <artifactId>CircuitBreaker</artifactId>
136          <version>1.1.1</version>
137        </dependency>
138        <dependency>
139          <groupId>dk.thoerup</groupId>
140          <artifactId>WebConfig</artifactId>
141          <version>1.0</version>
142        </dependency>
143        <dependency>
144          <groupId>com.google.code.gson</groupId>
145          <artifactId>gson</artifactId>
146          <version>2.3.1</version>
147        </dependency>
148        <dependency>
149          <groupId>com.google.code.geocoder-java</groupId>
150          <artifactId>geocoder-java</artifactId>
151          <version>0.16</version>
152        </dependency>
153        <dependency>
154          <groupId>com.google.guava</groupId>
155          <artifactId>guava</artifactId>
156          <version>18.0</version>
157        </dependency>
158        <dependency>
159          <groupId>com.jcabi</groupId>
160          <artifactId>jcabi-manifests</artifactId>
161          <version>1.1</version>
162        </dependency>
163    
164    
165        <dependency>
166          <groupId>junit</groupId>
167          <artifactId>junit</artifactId>
168          <version>4.12</version>
169          <scope>test</scope>
170        </dependency>
171    
172      </dependencies>
173    <reporting>    <reporting>
174      <plugins>      <plugins>
175          <!-- Normally, we take off the dependency report, saves time. -->
176          <plugin>
177            <groupId>org.apache.maven.plugins</groupId>
178            <artifactId>maven-project-info-reports-plugin</artifactId>
179            <version>2.7</version>
180            <configuration>
181              <dependencyLocationsEnabled>false</dependencyLocationsEnabled>
182            </configuration>
183          </plugin>
184        <plugin>        <plugin>
185          <groupId>org.codehaus.mojo</groupId>          <groupId>org.codehaus.mojo</groupId>
186          <artifactId>findbugs-maven-plugin</artifactId>          <artifactId>findbugs-maven-plugin</artifactId>
187          <version>3.0.1</version>          <version>3.0.1</version>
188        </plugin>        </plugin>
189          <!-- integrate maven-cobertura-plugin to project site  -->
190          <plugin>
191            <groupId>org.codehaus.mojo</groupId>
192            <artifactId>cobertura-maven-plugin</artifactId>
193            <version>2.7</version>
194            <configuration>
195              <formats>
196                <format>html</format>
197                <format>xml</format>
198              </formats>
199            </configuration>
200          </plugin>
201      </plugins>      </plugins>
202    </reporting>    </reporting>
203      <repositories>
204        <repository>
205          <repositories>        <id>hoerup-releases</id>
206                  <repository>        <name>hoerup-releases</name>
207                          <id>hoerup-releases</id>        <url>http://app.t-hoerup.dk/artifactory/ext-release-local</url>
208                          <name>hoerup-releases</name>      </repository>
209                          <url>http://app.t-hoerup.dk/artifactory/ext-release-local</url>    </repositories>
                 </repository>  
         </repositories>  
   
210  </project>  </project>

Legend:
Removed from v.2571  
changed lines
  Added in v.2634

  ViewVC Help
Powered by ViewVC 1.1.20