/[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 2606 by torben, Tue Jul 14 08:40:09 2015 UTC revision 2634 by torben, Mon Jul 20 12:00:18 2015 UTC
# Line 5  Line 5 
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>    <scm>
9      <connection>scm:svn:http://svn.t-hoerup.dk/repos/project/dao/DaoAdresseService</connection>      <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>      <developerConnection>scm:svn:http://svn.t-hoerup.dk/repos/project/dao/DaoAdresseService</developerConnection>
11      <tag>HEAD</tag>      <tag>HEAD</tag>
12      <url>http://svn.t-hoerup.dk/viewvc/projects/dao</url>      <url>http://svn.t-hoerup.dk/viewvc/projects/dao</url>
13    </scm>    </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    
19      <plugins>      <plugins>
20        <plugin>        <plugin>
21          <groupId>org.apache.maven.plugins</groupId>          <groupId>org.apache.maven.plugins</groupId>
# Line 30  Line 26 
26            <target>1.7</target>            <target>1.7</target>
27            <showWarnings>true</showWarnings>            <showWarnings>true</showWarnings>
28            <showDeprecation>true</showDeprecation>            <showDeprecation>true</showDeprecation>
29    
30              <!-- be strict regarding warnings -->
31              <compilerArguments>
32                <Werror />
33                <Xlint:all />
34              </compilerArguments>
35    
36          </configuration>          </configuration>
37          <!--Do NOT show depreciation in test compile -->          <!--Do NOT show depreciation in test compile -->
38          <executions>          <executions>
# Line 45  Line 48 
48            </execution>            </execution>
49          </executions>          </executions>
50        </plugin>        </plugin>
51        <plugin>  <!--      <plugin>
52          <groupId>org.codehaus.mojo</groupId>          <groupId>org.codehaus.mojo</groupId>
53          <artifactId>buildnumber-maven-plugin</artifactId>          <artifactId>buildnumber-maven-plugin</artifactId>
54          <version>1.3</version>          <version>1.3</version>
# Line 62  Line 65 
65            <doUpdate>true</doUpdate>            <doUpdate>true</doUpdate>
66          </configuration>          </configuration>
67        </plugin>        </plugin>
68    -->
69    
70                <plugin>
71                    <groupId>com.google.code.maven-svn-revision-number-plugin</groupId>
72                    <artifactId>svn-revision-number-maven-plugin</artifactId>
73                    <version>1.13</version> <!-- please use the latest version -->
74                    <executions>
75                        <execution>
76                            <goals>
77                                <goal>revision</goal>
78                            </goals>
79                        </execution>
80                    </executions>
81                    <configuration>
82                        <entries>
83                            <entry>
84                                <prefix>prefix</prefix>
85                            </entry>
86                        </entries>
87                    </configuration>
88                </plugin>
89        <plugin>        <plugin>
90          <groupId>org.apache.maven.plugins</groupId>          <groupId>org.apache.maven.plugins</groupId>
91          <artifactId>maven-war-plugin</artifactId>          <artifactId>maven-war-plugin</artifactId>
# Line 69  Line 93 
93          <configuration>          <configuration>
94            <archive>            <archive>
95              <manifestEntries>              <manifestEntries>
96                <SCM-Revision>${buildNumber}</SCM-Revision>                <SCM-Revision>${prefix.revision}</SCM-Revision>
97                <Build-Time>${maven.build.timestamp}</Build-Time>                <Build-Time>${maven.build.timestamp}</Build-Time>
98              </manifestEntries>              </manifestEntries>
99            </archive>            </archive>
100          </configuration>          </configuration>
101        </plugin>        </plugin>
102          <plugin>
103            <groupId>org.codehaus.mojo</groupId>
104            <artifactId>findbugs-maven-plugin</artifactId>
105            <version>3.0.0</version>
106          </plugin>
107      </plugins>      </plugins>
108    </build>    </build>
109    
   
110    <dependencies>    <dependencies>
111      <dependency>      <dependency>
112        <groupId>javax.servlet</groupId>        <groupId>javax.servlet</groupId>
# Line 132  Line 160 
160        <artifactId>jcabi-manifests</artifactId>        <artifactId>jcabi-manifests</artifactId>
161        <version>1.1</version>        <version>1.1</version>
162      </dependency>      </dependency>
163    
164    
165      <dependency>      <dependency>
166        <groupId>junit</groupId>        <groupId>junit</groupId>
167        <artifactId>junit</artifactId>        <artifactId>junit</artifactId>
168        <version>4.12</version>        <version>4.12</version>
169        <scope>test</scope>        <scope>test</scope>
170      </dependency>      </dependency>
   </dependencies>  
   
171    
172      </dependencies>
173    <reporting>    <reporting>
174      <plugins>      <plugins>
175          <!-- Normally, we take off the dependency report, saves time. -->
176          <plugin>
177            <groupId>org.apache.maven.plugins</groupId>
178            <artifactId>maven-project-info-reports-plugin</artifactId>
179            <version>2.7</version>
180            <configuration>
181              <dependencyLocationsEnabled>false</dependencyLocationsEnabled>
182            </configuration>
183          </plugin>
184        <plugin>        <plugin>
185          <groupId>org.codehaus.mojo</groupId>          <groupId>org.codehaus.mojo</groupId>
186          <artifactId>findbugs-maven-plugin</artifactId>          <artifactId>findbugs-maven-plugin</artifactId>
187          <version>3.0.1</version>          <version>3.0.1</version>
188        </plugin>        </plugin>
189          <!-- integrate maven-cobertura-plugin to project site  -->
190          <plugin>
191            <groupId>org.codehaus.mojo</groupId>
192            <artifactId>cobertura-maven-plugin</artifactId>
193            <version>2.7</version>
194            <configuration>
195              <formats>
196                <format>html</format>
197                <format>xml</format>
198              </formats>
199            </configuration>
200          </plugin>
201      </plugins>      </plugins>
202    </reporting>    </reporting>
203    <repositories>    <repositories>

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

  ViewVC Help
Powered by ViewVC 1.1.20