/[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 2632 by torben, Mon Jul 20 10:35:38 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>      <plugins>
19                          <plugin>        <plugin>
20                                  <groupId>org.apache.maven.plugins</groupId>          <groupId>org.apache.maven.plugins</groupId>
21                                  <artifactId>maven-compiler-plugin</artifactId>          <artifactId>maven-compiler-plugin</artifactId>
22                                  <version>3.1</version>          <version>3.1</version>
23                                  <configuration>          <configuration>
24                                          <source>1.7</source>            <source>1.7</source>
25                                          <target>1.7</target>            <target>1.7</target>
26                                          <showWarnings>true</showWarnings>            <showWarnings>true</showWarnings>
27                                          <showDeprecation>true</showDeprecation>            <showDeprecation>true</showDeprecation>
28                                  </configuration>  
29                                  <!--Do NOT show depreciation in test compile -->            <!-- be strict regarding warnings -->
30                                  <executions>            <compilerArguments>
31                                          <execution>              <Werror />
32                                                  <id>default-testCompile</id>              <Xlint:all />
33                                                  <phase>test-compile</phase>            </compilerArguments>
34                                                  <configuration>  
35                                                          <showDeprecation>false</showDeprecation>          </configuration>
36                                                  </configuration>          <!--Do NOT show depreciation in test compile -->
37                                                  <goals>          <executions>
38                                                          <goal>testCompile</goal>            <execution>
39                                                  </goals>              <id>default-testCompile</id>
40                                          </execution>              <phase>test-compile</phase>
41                                  </executions>              <configuration>
42                          </plugin>                <showDeprecation>false</showDeprecation>
43                </configuration>
44                <goals>
45                  <goal>testCompile</goal>
46                  </plugins>              </goals>
47          </build>            </execution>
48            </executions>
49          </plugin>
50          <dependencies>        <plugin>
51                  <dependency>          <groupId>org.codehaus.mojo</groupId>
52                          <groupId>javax.servlet</groupId>          <artifactId>buildnumber-maven-plugin</artifactId>
53                          <artifactId>javax.servlet-api</artifactId>          <version>1.3</version>
54                          <version>3.0.1</version>          <executions>
55                          <scope>provided</scope>            <execution>
56                  </dependency>              <phase>validate</phase>
57                  <dependency>              <goals>
58                          <groupId>jstl</groupId>                <goal>create</goal>
59                          <artifactId>jstl</artifactId>              </goals>
60                          <version>1.2</version>            </execution>
61                  </dependency>          </executions>
62            <configuration>
63              <doCheck>false</doCheck>
64                  <dependency>            <doUpdate>true</doUpdate>
65                          <groupId>org.apache.commons</groupId>          </configuration>
66                          <artifactId>commons-lang3</artifactId>        </plugin>
67                          <version>3.3.2</version>        <plugin>
68                  </dependency>          <groupId>org.apache.maven.plugins</groupId>
69            <artifactId>maven-war-plugin</artifactId>
70            <version>2.6</version>
71                  <dependency>          <configuration>
72                          <groupId>dk.thoerup</groupId>            <archive>
73                          <artifactId>CircuitBreaker</artifactId>              <manifestEntries>
74                          <version>1.0</version>                <SCM-Revision>${buildNumber}</SCM-Revision>
75                  </dependency>                <Build-Time>${maven.build.timestamp}</Build-Time>
76                </manifestEntries>
77              </archive>
78                  <dependency>          </configuration>
79                          <groupId>dk.thoerup</groupId>        </plugin>
80                          <artifactId>WebConfig</artifactId>        <plugin>
81                          <version>1.0</version>          <groupId>org.codehaus.mojo</groupId>
82                  </dependency>          <artifactId>findbugs-maven-plugin</artifactId>
83            <version>3.0.0</version>
84                  <dependency>        </plugin>
85                          <groupId>com.google.code.gson</groupId>      </plugins>
86                          <artifactId>gson</artifactId>    </build>
87                          <version>2.3.1</version>  
88                  </dependency>    <dependencies>
89        <dependency>
90          <groupId>javax.servlet</groupId>
91                  <dependency>        <artifactId>javax.servlet-api</artifactId>
92                          <groupId>com.google.code.geocoder-java</groupId>        <version>3.0.1</version>
93                          <artifactId>geocoder-java</artifactId>        <scope>provided</scope>
94                          <version>0.16</version>      </dependency>
95                  </dependency>      <dependency>
96          <groupId>javax.servlet.jsp</groupId>
97          <artifactId>jsp-api</artifactId>
98                  <dependency>        <version>2.0</version>
99                          <groupId>junit</groupId>        <scope>provided</scope>
100                          <artifactId>junit</artifactId>      </dependency>
101                          <version>4.12</version>      <dependency>
102                          <scope>test</scope>        <groupId>jstl</groupId>
103                  </dependency>        <artifactId>jstl</artifactId>
104          <version>1.2</version>
105          </dependencies>      </dependency>
106        <dependency>
107          <groupId>org.apache.commons</groupId>
108          <repositories>        <artifactId>commons-lang3</artifactId>
109                  <repository>        <version>3.3.2</version>
110                          <id>hoerup-releases</id>      </dependency>
111                          <name>hoerup-releases</name>      <dependency>
112                          <url>http://app.t-hoerup.dk/artifactory/ext-release-local</url>        <groupId>dk.thoerup</groupId>
113                  </repository>        <artifactId>CircuitBreaker</artifactId>
114          </repositories>        <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>
147    
148        <!--  Jenkins/Cobertura breaks deployment if this is missing -->
149        <dependency>
150          <groupId>net.sourceforge.cobertura</groupId>
151          <artifactId>cobertura</artifactId>
152          <version>2.1.1</version>
153        </dependency>
154    
155      </dependencies>
156      <reporting>
157        <plugins>
158          <!-- Normally, we take off the dependency report, saves time. -->
159          <plugin>
160            <groupId>org.apache.maven.plugins</groupId>
161            <artifactId>maven-project-info-reports-plugin</artifactId>
162            <version>2.7</version>
163            <configuration>
164              <dependencyLocationsEnabled>false</dependencyLocationsEnabled>
165            </configuration>
166          </plugin>
167          <plugin>
168            <groupId>org.codehaus.mojo</groupId>
169            <artifactId>findbugs-maven-plugin</artifactId>
170            <version>3.0.1</version>
171          </plugin>
172          <!-- integrate maven-cobertura-plugin to project site  -->
173          <plugin>
174            <groupId>org.codehaus.mojo</groupId>
175            <artifactId>cobertura-maven-plugin</artifactId>
176            <version>2.7</version>
177            <configuration>
178              <formats>
179                <format>html</format>
180                <format>xml</format>
181              </formats>
182            </configuration>
183          </plugin>
184        </plugins>
185      </reporting>
186      <repositories>
187        <repository>
188          <id>hoerup-releases</id>
189          <name>hoerup-releases</name>
190          <url>http://app.t-hoerup.dk/artifactory/ext-release-local</url>
191        </repository>
192      </repositories>
193  </project>  </project>

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

  ViewVC Help
Powered by ViewVC 1.1.20