/[projects]/dao/DaoAdresseService/pom.xml
ViewVC logotype

Annotation of /dao/DaoAdresseService/pom.xml

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2632 - (hide annotations) (download) (as text)
Mon Jul 20 10:35:38 2015 UTC (8 years, 10 months ago) by torben
File MIME type: text/xml
File size: 6086 byte(s)
add cobertura as runtime dependency
1 torben 2481 <?xml version="1.0" encoding="UTF-8"?>
2 torben 2604 <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     <modelVersion>4.0.0</modelVersion>
4     <groupId>dk.daoas</groupId>
5     <artifactId>DaoAdresseService</artifactId>
6     <version>1.0</version>
7     <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>
15     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
16     </properties>
17     <build>
18     <plugins>
19     <plugin>
20     <groupId>org.apache.maven.plugins</groupId>
21     <artifactId>maven-compiler-plugin</artifactId>
22     <version>3.1</version>
23     <configuration>
24     <source>1.7</source>
25     <target>1.7</target>
26     <showWarnings>true</showWarnings>
27     <showDeprecation>true</showDeprecation>
28 torben 2629
29     <!-- be strict regarding warnings -->
30     <compilerArguments>
31     <Werror />
32     <Xlint:all />
33     </compilerArguments>
34    
35 torben 2604 </configuration>
36     <!--Do NOT show depreciation in test compile -->
37     <executions>
38     <execution>
39     <id>default-testCompile</id>
40     <phase>test-compile</phase>
41     <configuration>
42     <showDeprecation>false</showDeprecation>
43     </configuration>
44     <goals>
45     <goal>testCompile</goal>
46     </goals>
47     </execution>
48     </executions>
49     </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 torben 2606 <Build-Time>${maven.build.timestamp}</Build-Time>
76 torben 2604 </manifestEntries>
77     </archive>
78     </configuration>
79     </plugin>
80 torben 2613 <plugin>
81     <groupId>org.codehaus.mojo</groupId>
82     <artifactId>findbugs-maven-plugin</artifactId>
83     <version>3.0.0</version>
84     </plugin>
85 torben 2604 </plugins>
86     </build>
87 torben 2613
88 torben 2604 <dependencies>
89     <dependency>
90     <groupId>javax.servlet</groupId>
91     <artifactId>javax.servlet-api</artifactId>
92     <version>3.0.1</version>
93     <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>
147 torben 2632
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 torben 2604 </dependencies>
156 torben 2531 <reporting>
157     <plugins>
158 torben 2610 <!-- Normally, we take off the dependency report, saves time. -->
159 torben 2531 <plugin>
160 torben 2610 <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 torben 2531 <groupId>org.codehaus.mojo</groupId>
169     <artifactId>findbugs-maven-plugin</artifactId>
170     <version>3.0.1</version>
171     </plugin>
172 torben 2610 <!-- 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 torben 2531 </plugins>
185     </reporting>
186 torben 2604 <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 torben 2457 </project>

  ViewVC Help
Powered by ViewVC 1.1.20