/[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 2610 by torben, Wed Jul 15 08:52:00 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 27  Line 26 
26            <showWarnings>true</showWarnings>            <showWarnings>true</showWarnings>
27            <showDeprecation>true</showDeprecation>            <showDeprecation>true</showDeprecation>
28          </configuration>          </configuration>
29          <!--Do NOT show depreciation in test compile-->          <!--Do NOT show depreciation in test compile -->
30          <executions>          <executions>
31            <execution>            <execution>
32              <id>default-testCompile</id>              <id>default-testCompile</id>
# Line 41  Line 40 
40            </execution>            </execution>
41          </executions>          </executions>
42        </plugin>        </plugin>
43          <plugin>
44            <groupId>org.codehaus.mojo</groupId>
45            <artifactId>buildnumber-maven-plugin</artifactId>
46            <version>1.3</version>
47            <executions>
48              <execution>
49                <phase>validate</phase>
50                <goals>
51                  <goal>create</goal>
52                </goals>
53              </execution>
54            </executions>
55            <configuration>
56              <doCheck>false</doCheck>
57              <doUpdate>true</doUpdate>
58            </configuration>
59          </plugin>
60          <plugin>
61            <groupId>org.apache.maven.plugins</groupId>
62            <artifactId>maven-war-plugin</artifactId>
63            <version>2.6</version>
64            <configuration>
65              <archive>
66                <manifestEntries>
67                  <SCM-Revision>${buildNumber}</SCM-Revision>
68                  <Build-Time>${maven.build.timestamp}</Build-Time>
69                </manifestEntries>
70              </archive>
71            </configuration>
72          </plugin>
73      </plugins>      </plugins>
74    </build>    </build>
   
   
75    <dependencies>    <dependencies>
76      <dependency>      <dependency>
77        <groupId>javax.servlet</groupId>        <groupId>javax.servlet</groupId>
78        <artifactId>javax.servlet-api</artifactId>        <artifactId>javax.servlet-api</artifactId>
79        <version>3.0.1</version>        <version>3.0.1</version>
80        <scope>provided</scope>              <scope>provided</scope>
81        </dependency>
82        <dependency>
83          <groupId>javax.servlet.jsp</groupId>
84          <artifactId>jsp-api</artifactId>
85          <version>2.0</version>
86          <scope>provided</scope>
87        </dependency>
88        <dependency>
89          <groupId>jstl</groupId>
90          <artifactId>jstl</artifactId>
91          <version>1.2</version>
92        </dependency>
93        <dependency>
94          <groupId>org.apache.commons</groupId>
95          <artifactId>commons-lang3</artifactId>
96          <version>3.3.2</version>
97        </dependency>
98        <dependency>
99          <groupId>dk.thoerup</groupId>
100          <artifactId>CircuitBreaker</artifactId>
101          <version>1.1.1</version>
102        </dependency>
103        <dependency>
104          <groupId>dk.thoerup</groupId>
105          <artifactId>WebConfig</artifactId>
106          <version>1.0</version>
107        </dependency>
108        <dependency>
109          <groupId>com.google.code.gson</groupId>
110          <artifactId>gson</artifactId>
111          <version>2.3.1</version>
112        </dependency>
113        <dependency>
114          <groupId>com.google.code.geocoder-java</groupId>
115          <artifactId>geocoder-java</artifactId>
116          <version>0.16</version>
117        </dependency>
118        <dependency>
119          <groupId>com.google.guava</groupId>
120          <artifactId>guava</artifactId>
121          <version>18.0</version>
122        </dependency>
123        <dependency>
124          <groupId>com.jcabi</groupId>
125          <artifactId>jcabi-manifests</artifactId>
126          <version>1.1</version>
127        </dependency>
128        <dependency>
129          <groupId>junit</groupId>
130          <artifactId>junit</artifactId>
131          <version>4.12</version>
132          <scope>test</scope>
133      </dependency>      </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.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>  
     
134    </dependencies>    </dependencies>
135      <reporting>
136        <plugins>
137          <!-- Normally, we take off the dependency report, saves time. -->
138          <plugin>
139            <groupId>org.apache.maven.plugins</groupId>
140            <artifactId>maven-project-info-reports-plugin</artifactId>
141            <version>2.7</version>
142            <configuration>
143              <dependencyLocationsEnabled>false</dependencyLocationsEnabled>
144            </configuration>
145          </plugin>
146          <plugin>
147            <groupId>org.codehaus.mojo</groupId>
148            <artifactId>findbugs-maven-plugin</artifactId>
149            <version>3.0.1</version>
150          </plugin>
151          <!-- integrate maven-cobertura-plugin to project site  -->
152          <plugin>
153            <groupId>org.codehaus.mojo</groupId>
154            <artifactId>cobertura-maven-plugin</artifactId>
155            <version>2.7</version>
156            <configuration>
157              <formats>
158                <format>html</format>
159                <format>xml</format>
160              </formats>
161            </configuration>
162          </plugin>
163        </plugins>
164      </reporting>
165    <repositories>    <repositories>
166     <repository>      <repository>
167          <id>hoerup-releases</id>        <id>hoerup-releases</id>
168          <name>hoerup-releases</name>        <name>hoerup-releases</name>
169          <url>http://app.t-hoerup.dk/artifactory/ext-release-local</url>        <url>http://app.t-hoerup.dk/artifactory/ext-release-local</url>
170      </repository>      </repository>
171    </repositories>    </repositories>
   
172  </project>  </project>

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

  ViewVC Help
Powered by ViewVC 1.1.20