/[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 2606 by torben, Tue Jul 14 08:40:09 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      
9      <scm>
10        <connection>scm:svn:http://svn.t-hoerup.dk/repos/project/dao/DaoAdresseService</connection>
11        <developerConnection>scm:svn:http://svn.t-hoerup.dk/repos/project/dao/DaoAdresseService</developerConnection>
12        <tag>HEAD</tag>
13        <url>http://svn.t-hoerup.dk/viewvc/projects/dao</url>
14      </scm>
15    
16    
17    <properties>    <properties>
18      <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>      <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
19    </properties>    </properties>
20    
21    
22    <build>    <build>
23      <plugins>      <plugins>
24        <plugin>        <plugin>
# Line 27  Line 31 
31            <showWarnings>true</showWarnings>            <showWarnings>true</showWarnings>
32            <showDeprecation>true</showDeprecation>            <showDeprecation>true</showDeprecation>
33          </configuration>          </configuration>
34          <!--Do NOT show depreciation in test compile-->          <!--Do NOT show depreciation in test compile -->
35          <executions>          <executions>
36            <execution>            <execution>
37              <id>default-testCompile</id>              <id>default-testCompile</id>
# Line 41  Line 45 
45            </execution>            </execution>
46          </executions>          </executions>
47        </plugin>        </plugin>
48          <plugin>
49            <groupId>org.codehaus.mojo</groupId>
50            <artifactId>buildnumber-maven-plugin</artifactId>
51            <version>1.3</version>
52            <executions>
53              <execution>
54                <phase>validate</phase>
55                <goals>
56                  <goal>create</goal>
57                </goals>
58              </execution>
59            </executions>
60            <configuration>
61              <doCheck>false</doCheck>
62              <doUpdate>true</doUpdate>
63            </configuration>
64          </plugin>
65          <plugin>
66            <groupId>org.apache.maven.plugins</groupId>
67            <artifactId>maven-war-plugin</artifactId>
68            <version>2.6</version>
69            <configuration>
70              <archive>
71                <manifestEntries>
72                  <SCM-Revision>${buildNumber}</SCM-Revision>
73                  <Build-Time>${maven.build.timestamp}</Build-Time>
74                </manifestEntries>
75              </archive>
76            </configuration>
77          </plugin>
78      </plugins>      </plugins>
79    </build>    </build>
80    
# Line 53  Line 84 
84        <groupId>javax.servlet</groupId>        <groupId>javax.servlet</groupId>
85        <artifactId>javax.servlet-api</artifactId>        <artifactId>javax.servlet-api</artifactId>
86        <version>3.0.1</version>        <version>3.0.1</version>
87        <scope>provided</scope>              <scope>provided</scope>
88        </dependency>
89        <dependency>
90          <groupId>javax.servlet.jsp</groupId>
91          <artifactId>jsp-api</artifactId>
92          <version>2.0</version>
93          <scope>provided</scope>
94        </dependency>
95        <dependency>
96          <groupId>jstl</groupId>
97          <artifactId>jstl</artifactId>
98          <version>1.2</version>
99        </dependency>
100        <dependency>
101          <groupId>org.apache.commons</groupId>
102          <artifactId>commons-lang3</artifactId>
103          <version>3.3.2</version>
104        </dependency>
105        <dependency>
106          <groupId>dk.thoerup</groupId>
107          <artifactId>CircuitBreaker</artifactId>
108          <version>1.1.1</version>
109        </dependency>
110        <dependency>
111          <groupId>dk.thoerup</groupId>
112          <artifactId>WebConfig</artifactId>
113          <version>1.0</version>
114        </dependency>
115        <dependency>
116          <groupId>com.google.code.gson</groupId>
117          <artifactId>gson</artifactId>
118          <version>2.3.1</version>
119        </dependency>
120        <dependency>
121          <groupId>com.google.code.geocoder-java</groupId>
122          <artifactId>geocoder-java</artifactId>
123          <version>0.16</version>
124        </dependency>
125        <dependency>
126          <groupId>com.google.guava</groupId>
127          <artifactId>guava</artifactId>
128          <version>18.0</version>
129        </dependency>
130        <dependency>
131          <groupId>com.jcabi</groupId>
132          <artifactId>jcabi-manifests</artifactId>
133          <version>1.1</version>
134        </dependency>
135        <dependency>
136          <groupId>junit</groupId>
137          <artifactId>junit</artifactId>
138          <version>4.12</version>
139          <scope>test</scope>
140      </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>  
     
141    </dependencies>    </dependencies>
142    
143    
144      <reporting>
145        <plugins>
146          <plugin>
147            <groupId>org.codehaus.mojo</groupId>
148            <artifactId>findbugs-maven-plugin</artifactId>
149            <version>3.0.1</version>
150          </plugin>
151        </plugins>
152      </reporting>
153    <repositories>    <repositories>
154     <repository>      <repository>
155          <id>hoerup-releases</id>        <id>hoerup-releases</id>
156          <name>hoerup-releases</name>        <name>hoerup-releases</name>
157          <url>http://app.t-hoerup.dk/artifactory/ext-release-local</url>        <url>http://app.t-hoerup.dk/artifactory/ext-release-local</url>
158      </repository>      </repository>
159    </repositories>    </repositories>
   
160  </project>  </project>

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

  ViewVC Help
Powered by ViewVC 1.1.20