/[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 2613 by torben, Wed Jul 15 10:41:57 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>          </configuration>
29                                  <!--Do NOT show depreciation in test compile -->          <!--Do NOT show depreciation in test compile -->
30                                  <executions>          <executions>
31                                          <execution>            <execution>
32                                                  <id>default-testCompile</id>              <id>default-testCompile</id>
33                                                  <phase>test-compile</phase>              <phase>test-compile</phase>
34                                                  <configuration>              <configuration>
35                                                          <showDeprecation>false</showDeprecation>                <showDeprecation>false</showDeprecation>
36                                                  </configuration>              </configuration>
37                                                  <goals>              <goals>
38                                                          <goal>testCompile</goal>                <goal>testCompile</goal>
39                                                  </goals>              </goals>
40                                          </execution>            </execution>
41                                  </executions>          </executions>
42                          </plugin>        </plugin>
43          <plugin>
44            <groupId>org.codehaus.mojo</groupId>
45            <artifactId>buildnumber-maven-plugin</artifactId>
46                  </plugins>          <version>1.3</version>
47          </build>          <executions>
48              <execution>
49                <phase>validate</phase>
50          <dependencies>              <goals>
51                  <dependency>                <goal>create</goal>
52                          <groupId>javax.servlet</groupId>              </goals>
53                          <artifactId>javax.servlet-api</artifactId>            </execution>
54                          <version>3.0.1</version>          </executions>
55                          <scope>provided</scope>          <configuration>
56                  </dependency>            <doCheck>false</doCheck>
57                  <dependency>            <doUpdate>true</doUpdate>
58                          <groupId>jstl</groupId>          </configuration>
59                          <artifactId>jstl</artifactId>        </plugin>
60                          <version>1.2</version>        <plugin>
61                  </dependency>          <groupId>org.apache.maven.plugins</groupId>
62            <artifactId>maven-war-plugin</artifactId>
63            <version>2.6</version>
64                  <dependency>          <configuration>
65                          <groupId>org.apache.commons</groupId>            <archive>
66                          <artifactId>commons-lang3</artifactId>              <manifestEntries>
67                          <version>3.3.2</version>                <SCM-Revision>${buildNumber}</SCM-Revision>
68                  </dependency>                <Build-Time>${maven.build.timestamp}</Build-Time>
69                </manifestEntries>
70              </archive>
71                  <dependency>          </configuration>
72                          <groupId>dk.thoerup</groupId>        </plugin>
73                          <artifactId>CircuitBreaker</artifactId>        <plugin>
74                          <version>1.0</version>          <groupId>org.codehaus.mojo</groupId>
75                  </dependency>          <artifactId>findbugs-maven-plugin</artifactId>
76            <version>3.0.0</version>
77          </plugin>
78                  <dependency>      </plugins>
79                          <groupId>dk.thoerup</groupId>    </build>
80                          <artifactId>WebConfig</artifactId>  
81                          <version>1.0</version>    <dependencies>
82                  </dependency>      <dependency>
83          <groupId>javax.servlet</groupId>
84                  <dependency>        <artifactId>javax.servlet-api</artifactId>
85                          <groupId>com.google.code.gson</groupId>        <version>3.0.1</version>
86                          <artifactId>gson</artifactId>        <scope>provided</scope>
87                          <version>2.3.1</version>      </dependency>
88                  </dependency>      <dependency>
89          <groupId>javax.servlet.jsp</groupId>
90          <artifactId>jsp-api</artifactId>
91                  <dependency>        <version>2.0</version>
92                          <groupId>com.google.code.geocoder-java</groupId>        <scope>provided</scope>
93                          <artifactId>geocoder-java</artifactId>      </dependency>
94                          <version>0.16</version>      <dependency>
95                  </dependency>        <groupId>jstl</groupId>
96          <artifactId>jstl</artifactId>
97          <version>1.2</version>
98                  <dependency>      </dependency>
99                          <groupId>junit</groupId>      <dependency>
100                          <artifactId>junit</artifactId>        <groupId>org.apache.commons</groupId>
101                          <version>4.12</version>        <artifactId>commons-lang3</artifactId>
102                          <scope>test</scope>        <version>3.3.2</version>
103                  </dependency>      </dependency>
104        <dependency>
105          </dependencies>        <groupId>dk.thoerup</groupId>
106          <artifactId>CircuitBreaker</artifactId>
107          <version>1.1.1</version>
108          <repositories>      </dependency>
109                  <repository>      <dependency>
110                          <id>hoerup-releases</id>        <groupId>dk.thoerup</groupId>
111                          <name>hoerup-releases</name>        <artifactId>WebConfig</artifactId>
112                          <url>http://app.t-hoerup.dk/artifactory/ext-release-local</url>        <version>1.0</version>
113                  </repository>      </dependency>
114          </repositories>      <dependency>
115          <groupId>com.google.code.gson</groupId>
116          <artifactId>gson</artifactId>
117          <version>2.3.1</version>
118        </dependency>
119        <dependency>
120          <groupId>com.google.code.geocoder-java</groupId>
121          <artifactId>geocoder-java</artifactId>
122          <version>0.16</version>
123        </dependency>
124        <dependency>
125          <groupId>com.google.guava</groupId>
126          <artifactId>guava</artifactId>
127          <version>18.0</version>
128        </dependency>
129        <dependency>
130          <groupId>com.jcabi</groupId>
131          <artifactId>jcabi-manifests</artifactId>
132          <version>1.1</version>
133        </dependency>
134        <dependency>
135          <groupId>junit</groupId>
136          <artifactId>junit</artifactId>
137          <version>4.12</version>
138          <scope>test</scope>
139        </dependency>
140      </dependencies>
141      <reporting>
142        <plugins>
143          <!-- Normally, we take off the dependency report, saves time. -->
144          <plugin>
145            <groupId>org.apache.maven.plugins</groupId>
146            <artifactId>maven-project-info-reports-plugin</artifactId>
147            <version>2.7</version>
148            <configuration>
149              <dependencyLocationsEnabled>false</dependencyLocationsEnabled>
150            </configuration>
151          </plugin>
152          <plugin>
153            <groupId>org.codehaus.mojo</groupId>
154            <artifactId>findbugs-maven-plugin</artifactId>
155            <version>3.0.1</version>
156          </plugin>
157          <!-- integrate maven-cobertura-plugin to project site  -->
158          <plugin>
159            <groupId>org.codehaus.mojo</groupId>
160            <artifactId>cobertura-maven-plugin</artifactId>
161            <version>2.7</version>
162            <configuration>
163              <formats>
164                <format>html</format>
165                <format>xml</format>
166              </formats>
167            </configuration>
168          </plugin>
169        </plugins>
170      </reporting>
171      <repositories>
172        <repository>
173          <id>hoerup-releases</id>
174          <name>hoerup-releases</name>
175          <url>http://app.t-hoerup.dk/artifactory/ext-release-local</url>
176        </repository>
177      </repositories>
178  </project>  </project>

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

  ViewVC Help
Powered by ViewVC 1.1.20