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

Contents of /dao/DaoAdresseService/pom.xml

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2610 - (show annotations) (download) (as text)
Wed Jul 15 08:52:00 2015 UTC (8 years, 10 months ago) by torben
File MIME type: text/xml
File size: 5532 byte(s)
add cobertura to reports
1 <?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" 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 </configuration>
29 <!--Do NOT show depreciation in test compile -->
30 <executions>
31 <execution>
32 <id>default-testCompile</id>
33 <phase>test-compile</phase>
34 <configuration>
35 <showDeprecation>false</showDeprecation>
36 </configuration>
37 <goals>
38 <goal>testCompile</goal>
39 </goals>
40 </execution>
41 </executions>
42 </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>
74 </build>
75 <dependencies>
76 <dependency>
77 <groupId>javax.servlet</groupId>
78 <artifactId>javax.servlet-api</artifactId>
79 <version>3.0.1</version>
80 <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>
134 </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>
166 <repository>
167 <id>hoerup-releases</id>
168 <name>hoerup-releases</name>
169 <url>http://app.t-hoerup.dk/artifactory/ext-release-local</url>
170 </repository>
171 </repositories>
172 </project>

  ViewVC Help
Powered by ViewVC 1.1.20