/[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 2457 by torben, Fri Mar 20 13:57:47 2015 UTC revision 2633 by torben, Mon Jul 20 11:04:37 2015 UTC
# Line 1  Line 1 
1  <project  <?xml version="1.0" encoding="UTF-8"?>
2    xmlns="http://maven.apache.org/POM/4.0.0"  <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">
   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    <modelVersion>4.0.0</modelVersion>    <modelVersion>4.0.0</modelVersion>
4    <groupId>dk.daoas</groupId>    <groupId>dk.daoas</groupId>
5    <artifactId>DaoAdresseService</artifactId>    <artifactId>DaoAdresseService</artifactId>
6    <version>1.0</version>    <version>1.0</version>
   
7    <packaging>war</packaging>    <packaging>war</packaging>
8        <scm>
9        <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        <tag>HEAD</tag>
12        <url>http://svn.t-hoerup.dk/viewvc/projects/dao</url>
13      </scm>
14    <properties>    <properties>
15      <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>      <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
16    </properties>    </properties>
   
17    <build>    <build>
18      <plugins>      <plugins>
19        <plugin>        <plugin>
# Line 26  Line 25 
25            <target>1.7</target>            <target>1.7</target>
26            <showWarnings>true</showWarnings>            <showWarnings>true</showWarnings>
27            <showDeprecation>true</showDeprecation>            <showDeprecation>true</showDeprecation>
28    
29              <!-- be strict regarding warnings -->
30              <compilerArguments>
31                <Werror />
32                <Xlint:all />
33              </compilerArguments>
34    
35          </configuration>          </configuration>
36          <!--Do NOT show depreciation in test compile-->          <!--Do NOT show depreciation in test compile -->
37          <executions>          <executions>
38            <execution>            <execution>
39              <id>default-testCompile</id>              <id>default-testCompile</id>
# Line 41  Line 47 
47            </execution>            </execution>
48          </executions>          </executions>
49        </plugin>        </plugin>
50          <plugin>
51            <groupId>org.codehaus.mojo</groupId>
52            <artifactId>buildnumber-maven-plugin</artifactId>
53            <version>1.3</version>
54            <executions>
55              <execution>
56                <phase>validate</phase>
57                <goals>
58                  <goal>create</goal>
59                </goals>
60              </execution>
61            </executions>
62            <configuration>
63              <doCheck>false</doCheck>
64              <doUpdate>true</doUpdate>
65            </configuration>
66          </plugin>
67          <plugin>
68            <groupId>org.apache.maven.plugins</groupId>
69            <artifactId>maven-war-plugin</artifactId>
70            <version>2.6</version>
71            <configuration>
72              <archive>
73                <manifestEntries>
74                  <SCM-Revision>${buildNumber}</SCM-Revision>
75                  <Build-Time>${maven.build.timestamp}</Build-Time>
76                </manifestEntries>
77              </archive>
78            </configuration>
79          </plugin>
80          <plugin>
81            <groupId>org.codehaus.mojo</groupId>
82            <artifactId>findbugs-maven-plugin</artifactId>
83            <version>3.0.0</version>
84          </plugin>
85      </plugins>      </plugins>
86    </build>    </build>
87    
   
88    <dependencies>    <dependencies>
89      <dependency>      <dependency>
90        <groupId>javax.servlet</groupId>        <groupId>javax.servlet</groupId>
91        <artifactId>javax.servlet-api</artifactId>        <artifactId>javax.servlet-api</artifactId>
92        <version>3.0.1</version>        <version>3.0.1</version>
93        <scope>provided</scope>              <scope>provided</scope>
94        </dependency>
95        <dependency>
96          <groupId>javax.servlet.jsp</groupId>
97          <artifactId>jsp-api</artifactId>
98          <version>2.0</version>
99          <scope>provided</scope>
100        </dependency>
101        <dependency>
102          <groupId>jstl</groupId>
103          <artifactId>jstl</artifactId>
104          <version>1.2</version>
105        </dependency>
106        <dependency>
107          <groupId>org.apache.commons</groupId>
108          <artifactId>commons-lang3</artifactId>
109          <version>3.3.2</version>
110        </dependency>
111        <dependency>
112          <groupId>dk.thoerup</groupId>
113          <artifactId>CircuitBreaker</artifactId>
114          <version>1.1.1</version>
115        </dependency>
116        <dependency>
117          <groupId>dk.thoerup</groupId>
118          <artifactId>WebConfig</artifactId>
119          <version>1.0</version>
120        </dependency>
121        <dependency>
122          <groupId>com.google.code.gson</groupId>
123          <artifactId>gson</artifactId>
124          <version>2.3.1</version>
125        </dependency>
126        <dependency>
127          <groupId>com.google.code.geocoder-java</groupId>
128          <artifactId>geocoder-java</artifactId>
129          <version>0.16</version>
130        </dependency>
131        <dependency>
132          <groupId>com.google.guava</groupId>
133          <artifactId>guava</artifactId>
134          <version>18.0</version>
135        </dependency>
136        <dependency>
137          <groupId>com.jcabi</groupId>
138          <artifactId>jcabi-manifests</artifactId>
139          <version>1.1</version>
140        </dependency>
141        <dependency>
142          <groupId>junit</groupId>
143          <artifactId>junit</artifactId>
144          <version>4.12</version>
145          <scope>test</scope>
146      </dependency>      </dependency>
147    
 <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.0</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>junit</groupId>  
         <artifactId>junit</artifactId>  
         <version>4.12</version>  
         <scope>test</scope>  
 </dependency>  
     
148    </dependencies>    </dependencies>
149      <reporting>
150        <plugins>
151          <!-- Normally, we take off the dependency report, saves time. -->
152          <plugin>
153            <groupId>org.apache.maven.plugins</groupId>
154            <artifactId>maven-project-info-reports-plugin</artifactId>
155            <version>2.7</version>
156            <configuration>
157              <dependencyLocationsEnabled>false</dependencyLocationsEnabled>
158            </configuration>
159          </plugin>
160          <plugin>
161            <groupId>org.codehaus.mojo</groupId>
162            <artifactId>findbugs-maven-plugin</artifactId>
163            <version>3.0.1</version>
164          </plugin>
165          <!-- integrate maven-cobertura-plugin to project site  -->
166          <plugin>
167            <groupId>org.codehaus.mojo</groupId>
168            <artifactId>cobertura-maven-plugin</artifactId>
169            <version>2.7</version>
170            <configuration>
171              <formats>
172                <format>html</format>
173                <format>xml</format>
174              </formats>
175            </configuration>
176          </plugin>
177        </plugins>
178      </reporting>
179    <repositories>    <repositories>
180     <repository>      <repository>
181          <id>hoerup-releases</id>        <id>hoerup-releases</id>
182          <name>hoerup-releases</name>        <name>hoerup-releases</name>
183          <url>http://app.t-hoerup.dk/artifactory/ext-release-local</url>        <url>http://app.t-hoerup.dk/artifactory/ext-release-local</url>
184      </repository>      </repository>
185    </repositories>    </repositories>
   
186  </project>  </project>

Legend:
Removed from v.2457  
changed lines
  Added in v.2633

  ViewVC Help
Powered by ViewVC 1.1.20